/* ============================================================
   GRACE VITAL — Website-Stylesheet
   Helle, ruhige Farbwelt (Richtung A) im einladenden,
   weichen Layout (Richtung B). Baut auf tokens.css auf.
   ============================================================ */

:root {
  --radius-card: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 1px 3px rgba(40,51,49,.05), 0 6px 18px rgba(40,51,49,.05);
  --shadow-md: 0 20px 60px rgba(40,51,49,.12);
  --header-h: 92px;
}

/* ---------------------------------------------------------- */
/* HEADER                                                      */
/* ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,241,236,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(40,51,49,.05); }
.nav-bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { width: 80px; height: 80px; object-fit: contain; flex: none; background: #fff; border-radius: 50%; padding: 3px; box-shadow: 0 2px 10px rgba(40,51,49,.10); border: 1px solid var(--line-soft); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: .04em; color: var(--ink); }
.brand-text small { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); margin-top: 6px; font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links > a:not(.btn) { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); transition: color .18s; position: relative; }
.nav-links > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.nav-links > a:not(.btn):hover { color: var(--accent-deep); }
.nav-links > a:not(.btn):hover::after,
.nav-links > a.active::after { transform: scaleX(1); }
.nav-links > a.active { color: var(--ink); }
.nav-links .btn { padding: 12px 24px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ---------------------------------------------------------- */
/* GENERIC SECTION HEADINGS                                    */
/* ---------------------------------------------------------- */
.section { padding: 108px 0; }
.section.tight { padding: 84px 0; }
.sec-head { max-width: 680px; margin: 0 auto 60px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-head .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.sec-head h2 { font-size: clamp(36px, 4.4vw, 54px); }
.sec-head p { color: var(--ink-soft); margin-top: 18px; font-size: 18.5px; }

.panel-sand { background: var(--bg-2); }
.panel-tint { background: var(--primary-tint); }

/* ---------------------------------------------------------- */
/* HERO (light, image-led, soft)                              */
/* ---------------------------------------------------------- */
.hero { position: relative; padding: 88px 0 96px; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -120px; right: -160px; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, var(--accent-soft), transparent 70%); opacity: .5; pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 64px; align-items: center; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.hero h1 { font-size: clamp(48px, 6vw, 76px); font-weight: 600; }
.hero h1 em { font-style: italic; color: var(--primary); }
.hero .lead { font-size: clamp(18px, 1.5vw, 20px); color: var(--ink-soft); margin-top: 26px; max-width: 40ch; }
.hero .cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-mini { display: flex; gap: 30px; margin-top: 44px; }
.hero-mini .m b { font-family: var(--serif); font-size: 22px; display: block; color: var(--ink); line-height: 1.1; }
.hero-mini .m span { font-size: 13px; color: var(--muted); }
.hero-mini .m + .m { padding-left: 30px; border-left: 1px solid var(--line); }

.hero-figure { position: relative; }
.hero-figure .ph { aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.hero-figure .hero-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 60% 50%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: block; }
.hero-figure .badge {
  position: absolute; left: -30px; bottom: 48px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 18px 22px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
}
.hero-figure .badge .ring { width: 46px; height: 46px; border-radius: 50%; flex: none; border: 1.5px solid var(--accent); display: flex; align-items: center; justify-content: center; }
.hero-figure .badge .ring .diamond { width: 9px; height: 9px; }
.hero-figure .badge b { font-family: var(--serif); font-size: 19px; display: block; line-height: 1.1; }
.hero-figure .badge span { font-size: 12.5px; color: var(--muted); }

/* ---------------------------------------------------------- */
/* WELCOME / USP BAR                                           */
/* ---------------------------------------------------------- */
.usp-bar { background: var(--accent-soft); }
.usp-bar .wrap { display: flex; flex-wrap: wrap; gap: 16px 44px; padding: 26px 40px; align-items: center; justify-content: center; }
.usp-bar .u { display: inline-flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 600; color: var(--accent-deep); }

/* ---------------------------------------------------------- */
/* TREATMENT CARDS (soft, rounded, chips)                     */
/* ---------------------------------------------------------- */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.t-card { background: var(--surface); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; display: flex; flex-direction: column; }
.t-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.t-card .ph { aspect-ratio: 16/9; }
.t-card .t-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: 50% 50%; display: block; }
.t-card .body { padding: 38px 40px 40px; display: flex; flex-direction: column; flex: 1; }
.kicker { align-self: flex-start; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--accent-deep); background: var(--accent-soft); padding: 7px 15px; border-radius: 999px; }
.t-card h3 { font-size: clamp(28px, 2.6vw, 34px); margin: 18px 0 14px; }
.t-card .body > p { color: var(--ink-soft); font-size: 15.5px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0 28px; }
.chips span { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); background: var(--bg); border: 1px solid var(--line); padding: 8px 15px; border-radius: 999px; }
.more { margin-top: auto; font-weight: 700; font-size: 15px; color: var(--primary); display: inline-flex; gap: 8px; align-items: center; transition: gap .2s, color .2s; }
.more:hover { color: var(--accent-deep); gap: 12px; }

/* feature list (checks) */
.feat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.feat-list li { display: flex; align-items: flex-start; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line-soft); font-size: 15.5px; color: var(--ink); }
.feat-list li:first-child { border-top: none; }
.feat-list .diamond { flex: none; margin-top: 8px; }

/* ---------------------------------------------------------- */
/* SPLIT (image + text)                                       */
/* ---------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.narrow-img { grid-template-columns: .85fr 1.15fr; }
.split .ph { aspect-ratio: 4/5; border-radius: var(--radius-card); box-shadow: var(--shadow-sm); }
.split .portrait-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%; border-radius: var(--radius-card); box-shadow: var(--shadow-sm); display: block; }
.split .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.split h2 { font-size: clamp(34px, 3.6vw, 46px); margin-bottom: 22px; }
.split p { color: var(--ink-soft); font-size: 17.5px; margin-bottom: 16px; }
.split .sig { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--primary); margin-top: 26px; }
.split .cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------------------------------------------------------- */
/* CTA CARD                                                    */
/* ---------------------------------------------------------- */
.cta-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 78px 60px; box-shadow: var(--shadow-md); text-align: center; }
.cta-card h2 { font-size: clamp(38px, 4.4vw, 54px); }
.cta-card p { color: var(--ink-soft); margin: 20px auto 36px; max-width: 48ch; font-size: 18px; }
.cta-card .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------- */
/* PAGE HERO (subpages)                                        */
/* ---------------------------------------------------------- */
.page-hero { padding: 76px 0 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; top: -160px; right: -140px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, var(--accent-soft), transparent 70%); opacity: .45; }
.page-hero .inner { position: relative; max-width: 760px; }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(44px, 5.6vw, 68px); font-weight: 600; }
.page-hero h1 em { font-style: italic; color: var(--primary); }
.page-hero p { color: var(--ink-soft); font-size: 19px; margin-top: 22px; max-width: 56ch; }
.crumb { font-size: 13px; color: var(--muted); margin-bottom: 26px; letter-spacing: .02em; }
.crumb a:hover { color: var(--accent-deep); }

/* ---------------------------------------------------------- */
/* PRICE TABLE                                                 */
/* ---------------------------------------------------------- */
.price-group { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 12px 40px; box-shadow: var(--shadow-sm); }
.price-group + .price-group { margin-top: 30px; }
.price-group .grp-head { display: flex; align-items: center; gap: 16px; padding: 30px 0 22px; border-bottom: 1px solid var(--line); }
.price-group .grp-head .kicker { margin: 0; }
.price-group .grp-head h3 { font-size: 30px; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; padding: 20px 0; border-top: 1px solid var(--line-soft); }
.price-row:first-of-type { border-top: none; }
.price-row .pr-name { font-size: 16.5px; font-weight: 600; color: var(--ink); }
.price-row .pr-desc { font-size: 14px; color: var(--muted); margin-top: 3px; max-width: 52ch; font-weight: 400; }
.price-row .pr-price { font-family: var(--serif); font-size: 23px; color: var(--primary); white-space: nowrap; font-weight: 600; }
.pr-pkgs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.pr-pkgs span { font-size: 13px; font-weight: 600; color: var(--ink-soft); background: var(--bg); border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px; white-space: nowrap; }
.pr-pkgs span b { font-family: var(--serif); font-size: 15px; color: var(--primary); font-weight: 600; }
.price-note { font-size: 14px; color: var(--muted); margin-top: 26px; text-align: center; }

/* ---------------------------------------------------------- */
/* CONTACT FORM + INFO                                         */
/* ---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: start; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 44px 46px; box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 30px; margin-bottom: 8px; }
.form-card .form-sub { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 30px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 700; letter-spacing: .03em; color: var(--ink-soft); margin-bottom: 8px; }
.field .req { color: var(--accent-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 16px; transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--primary); background: var(--surface);
  box-shadow: 0 0 0 3px rgba(60,90,95,.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b5503f; box-shadow: 0 0 0 3px rgba(181,80,63,.12); }
.field .err { display: none; color: #b5503f; font-size: 13px; margin-top: 7px; font-weight: 600; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.check { display: flex; align-items: flex-start; gap: 11px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.check input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--primary); }
.check a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { display: none; background: #fbeae6; border: 1px solid #e0b3a8; color: #9c4430; font-size: 14px; line-height: 1.6; border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ring { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { font-size: 28px; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); }

.info-card { background: var(--primary-deep); color: #e7eeec; border-radius: var(--radius-card); padding: 40px 38px; }
.info-card h3 { color: #fff; font-size: 25px; margin-bottom: 24px; }
.info-item { display: flex; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12); }
.info-item:first-of-type { border-top: none; }
.info-item .ic { width: 38px; height: 38px; border-radius: 50%; flex: none; border: 1px solid rgba(177,138,92,.6); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.info-item .ic svg { width: 17px; height: 17px; }
.info-item .lbl { font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: #93a8a3; font-weight: 700; margin-bottom: 4px; }
.info-item .val { font-size: 15.5px; color: #fff; }
.info-item .val a:hover { color: var(--accent); }
.copy-btn { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: transparent; border: 1px solid rgba(177,138,92,.5); border-radius: 999px; padding: 3px 11px; margin-left: 6px; cursor: pointer; transition: background .18s, color .18s, border-color .18s; vertical-align: middle; }
.copy-btn:hover { background: var(--accent); color: var(--primary-deep); border-color: var(--accent); }
.copy-btn.copied { background: var(--accent); color: var(--primary-deep); border-color: var(--accent); }

/* booking placeholder */
.booking { border: 1px solid var(--accent-soft); border-radius: var(--radius-card); background: linear-gradient(180deg, #fff, var(--bg)); padding: 48px; text-align: center; box-shadow: var(--shadow-sm); }
.booking .ring { width: 60px; height: 60px; border-radius: 50%; border: 1.5px solid var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; color: var(--accent-deep); }
.booking h3 { font-size: 28px; margin-bottom: 12px; }
.booking p { color: var(--ink-soft); max-width: 48ch; margin: 0 auto 26px; }
.booking .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.booking .stub { font-family: ui-monospace, monospace; font-size: 11.5px; letter-spacing: .05em; color: var(--muted); margin-top: 22px; text-transform: uppercase; }

/* map placeholder */
.map { position: relative; border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 16/7; background-color: #e4e8e3;
  background-image:
    linear-gradient(rgba(60,90,95,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,90,95,.06) 1px, transparent 1px),
    linear-gradient(115deg, #e9ece6, #dfe4dd);
  background-size: 40px 40px, 40px 40px, 100% 100%;
  display: flex; align-items: center; justify-content: center; }
.map .road { position: absolute; background: rgba(255,255,255,.7); }
.map .r1 { left: 0; right: 0; top: 46%; height: 14px; transform: rotate(-3deg); }
.map .r2 { top: 0; bottom: 0; left: 38%; width: 12px; transform: rotate(4deg); }
.map .r3 { left: 0; right: 0; top: 72%; height: 8px; transform: rotate(2deg); background: rgba(255,255,255,.5); }
.map .pin { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.map .pin .dot { width: 22px; height: 22px; border-radius: 50% 50% 50% 0; background: var(--accent); transform: rotate(-45deg); box-shadow: 0 6px 16px rgba(151,116,74,.4); }
.map .pin .lbl { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: 13.5px; font-weight: 700; color: var(--ink); box-shadow: var(--shadow-sm); }

/* ---------------------------------------------------------- */
/* FAQ / accordion-ish (static)                                */
/* ---------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 36px 34px; }
.step .n { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--accent); }
.step h4 { font-family: var(--serif); font-size: 23px; margin: 8px 0 12px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------------------------------------------------------- */
/* FOOTER                                                      */
/* ---------------------------------------------------------- */
.site-foot { background: var(--primary-deep); color: #cfdbd8; padding: 78px 0 40px; margin-top: 0; }
.site-foot a { color: #cfdbd8; }
.foot-grid { display: grid; grid-template-columns: 2.2fr 1fr 1.3fr; gap: 48px; }
.foot-brand b { font-family: var(--serif); font-size: 30px; color: #fff; letter-spacing: .05em; display: block; }
.foot-brand small { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.foot-brand p { font-size: 14.5px; color: #94a8a3; margin-top: 16px; max-width: 32ch; }
.foot-social { display: flex; gap: 12px; margin-top: 22px; }
.foot-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(177,138,92,.5); display: flex; align-items: center; justify-content: center; color: var(--accent); transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.foot-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.foot-social svg { width: 19px; height: 19px; }
.site-foot h5 { font-family: var(--sans); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin: 0 0 18px; font-weight: 700; }
.site-foot ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; font-size: 14.5px; }
.site-foot ul a:hover { color: #fff; }
.foot-contact div { margin-bottom: 14px; font-size: 14.5px; color: #e7eeec; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 56px; padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12.5px; color: #8aa09b; }
.foot-bottom a:hover { color: #fff; }

/* ---------------------------------------------------------- */
/* RESPONSIVE                                                  */
/* ---------------------------------------------------------- */
@media (max-width: 980px) {
  .brand-mark { width: 56px; height: 56px; }
  .nav-links { position: fixed; inset: var(--header-h) 0 auto 0; background: var(--bg); flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 28px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .25s, opacity .25s; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links > a:not(.btn) { padding: 15px 4px; border-bottom: 1px solid var(--line-soft); }
  .nav-links > a:not(.btn)::after { display: none; }
  .nav-links .btn { margin-top: 16px; justify-content: center; }
  .nav-toggle { display: block; }
  .hero-grid, .split, .split.narrow-img, .contact-grid, .cards-2 { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { order: -1; }
  .hero-figure .badge { left: 16px; }
  .steps { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 22px; }
  .field-row { grid-template-columns: 1fr; }
  .cta-card, .form-card { padding: 40px 26px; }
  .price-group { padding: 8px 24px; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-mini { flex-wrap: wrap; gap: 18px; }
  .hero-mini .m + .m { padding-left: 0; border-left: none; }
}
