/* ============================================================
   Chantal von Allmen – Editorial Wellness
   Display:  Cormorant Garamond  (warm, classical, italic accents)
   Body:     Mulish              (humanist sans, soft, readable)
   ============================================================ */

/* ── Tokens ── */
:root {
  --ink:           #1a2722;
  --primary:       #2f5d50;
  --primary-deep:  #234840;
  --accent:        #c9a96e;
  --accent-deep:   #a8834a;
  --paper:         #fdfaf6;
  --bg:            #f7f3ee;
  --card:          #efe9e1;
  --border:        #d6cfc5;
  --border-soft:   rgba(31, 46, 42, 0.10);
  --fg:            #1f2e2a;
  --fg-muted:      #4a5e58;
  --fg-subtle:     #7a8f88;
  --primary-fg:    #f0ede8;

  --font-display:  'Cormorant Garamond', 'Georgia', serif;
  --font-body:     'Mulish', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max-w:         1200px;
  --max-w-narrow:  760px;
  --radius:        4px;
  --radius-lg:     14px;

  --shadow-soft:   0 12px 40px rgba(31, 46, 42, 0.06);
  --shadow-md:     0 24px 60px rgba(31, 46, 42, 0.10);

  --easing:        cubic-bezier(0.2, 0.7, 0.2, 1);
  --header-h:      88px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--easing); }
button { font-family: inherit; }

/* ── Skip link ── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: var(--primary-fg);
  padding: .65rem 1rem;
  z-index: 200;
  font-size: .9rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ── Layout ── */
.container        { max-width: var(--max-w);        margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.25rem); }
.container--narrow{ max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.25rem); }

/* ── Typography primitives ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.005em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: .8rem;
  transform: translateY(-2px);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
}
.section-title em,
.section-title i { font-style: italic; color: var(--primary); }
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 52ch;
  margin: 1rem auto 0;
}

/* ── Buttons ── */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: var(--primary-fg);
  --btn-bd: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .95rem 1.85rem;
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  cursor: pointer;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .35s var(--easing), background .25s var(--easing), color .25s var(--easing), border-color .25s var(--easing), box-shadow .35s var(--easing);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(31, 46, 42, 0.14); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn--primary { --btn-bg: var(--accent); --btn-fg: var(--ink); --btn-bd: var(--accent); }
.btn--primary:hover { --btn-bg: var(--accent-deep); --btn-fg: var(--paper); --btn-bd: var(--accent-deep); }

.btn--default { --btn-bg: var(--primary); --btn-fg: var(--primary-fg); --btn-bd: var(--primary); }
.btn--default:hover { --btn-bg: var(--primary-deep); --btn-bd: var(--primary-deep); }

.btn--outline {
  --btn-bg: rgba(247, 243, 238, 0.08);
  --btn-fg: var(--primary-fg);
  --btn-bd: rgba(240, 237, 232, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--outline:hover { --btn-bg: rgba(240, 237, 232, 0.18); --btn-bd: var(--primary-fg); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: transparent; padding: .6rem .25rem; text-transform: none; letter-spacing: .02em; }
.btn--ghost:hover { --btn-bg: transparent; box-shadow: none; transform: none; color: var(--primary); }

.btn--lg   { padding: 1.05rem 2.1rem; font-size: .95rem; }
.btn--full { width: 100%; }

/* ── Site header (frosted glass, always) ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: .85rem clamp(1.25rem, 3.5vw, 2.25rem);
  background: rgba(247, 243, 238, 0.62);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid rgba(31, 46, 42, 0.06);
  transition: background .35s var(--easing), padding .35s var(--easing), box-shadow .35s var(--easing);
}
.site-header.is-scrolled {
  padding: .5rem clamp(1.25rem, 3.5vw, 2.25rem);
  background: rgba(247, 243, 238, 0.88);
  box-shadow: 0 6px 24px rgba(31, 46, 42, 0.06);
}
.site-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.5rem;
}
.site-header__logo img {
  height: 52px;
  width: auto;
  transition: height .35s var(--easing);
}
.site-header.is-scrolled .site-header__logo img { height: 42px; }

/* ── Site nav ── */
.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
}
.site-nav a {
  position: relative;
  padding: .35rem 0;
  color: var(--ink);
  text-transform: none;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right .3s var(--easing);
}
.site-nav a:hover::after { right: 0; }
a.site-nav__cta {
  background: var(--ink);
  color: var(--paper);
  padding: .5rem 1rem !important;
  border-radius: 999px;
  transition: background .25s var(--easing), color .25s var(--easing);
}
a.site-nav__cta::after { display: none; }
a.site-nav__cta:hover { background: var(--primary); color: var(--paper); }

/* ── Lang switcher ── */
.lang-switcher {
  display: flex;
  gap: .25rem;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
}
.lang-switcher a {
  padding: .35rem .55rem;
  border-radius: 4px;
  color: var(--fg-muted);
  transition: color .2s, background .2s;
}
.lang-switcher a.active,
.lang-switcher a:hover {
  color: var(--accent-deep);
}
.lang-switcher a.active { color: var(--accent-deep); }

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--ink);
  transition: transform .3s var(--easing), opacity .3s var(--easing);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 1.5rem 6rem;
  color: var(--primary-fg);
  text-align: center;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26, 39, 34, 0.32) 0%,
      rgba(26, 39, 34, 0.18) 35%,
      rgba(26, 39, 34, 0.55) 100%),
    url('hero-background.png') center / cover no-repeat;
  z-index: -1;
  transform: scale(1.04);
}
.hero__inner { max-width: 880px; }
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.85);
  margin-bottom: 1.8rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--primary-fg);
  margin-bottom: 2.5rem;
  text-wrap: balance;
}
.hero__title em,
.hero__title i { font-style: italic; color: var(--accent); font-weight: 300; }
.hero__buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 46px;
  border: 1px solid rgba(240, 237, 232, 0.55);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: opacity .3s, transform .3s;
}
.hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: rgba(240, 237, 232, 0.85);
  border-radius: 2px;
  animation: scrollHint 1.6s var(--easing) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0);    opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ── Section base ── */
.section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  position: relative;
}
.section--services { background: var(--card); }
.section--testimonials {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201, 169, 110, 0.10), transparent 60%),
    var(--bg);
}
.section--contact { background: var(--card); }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 880px) {
  .about-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(3rem, 6vw, 5rem);
  }
}
.about-portrait {
  position: relative;
  isolation: isolate;
}
.about-portrait img {
  border-radius: 2px;
  box-shadow: var(--shadow-md);
}
.about-portrait::before {
  content: '';
  position: absolute;
  inset: -1.4rem -1.4rem auto auto;
  width: 60%;
  height: 60%;
  border: 1px solid var(--accent);
  border-radius: 2px;
  z-index: -1;
}
.about-text > p { margin-bottom: 1.15rem; color: var(--fg); }
.about-text .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-text .eyebrow { margin-top: .25rem; }
.signature {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--primary);
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform .4s var(--easing), box-shadow .4s var(--easing), border-color .4s var(--easing);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--easing);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: .95rem;
  color: var(--accent-deep);
  opacity: .55;
  letter-spacing: .05em;
}
.service-card__icon {
  width: 2.2rem; height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-card__icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card__title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.service-card__desc {
  font-size: .98rem;
  line-height: 1.7;
  color: var(--fg-muted);
  flex: 1;
}
.service-card__link {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .25s, gap .25s;
  display: inline-flex;
  gap: .35rem;
}
.service-card__link:hover { color: var(--accent-deep); gap: .55rem; }

/* ── Prices ── */
.section--prices { padding-bottom: clamp(4rem, 8vw, 7rem); }
.price-list {
  margin: 0 auto 2.5rem;
}
.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.price-row:first-child { border-top: 1px solid var(--border-soft); }
.price-row__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
}
.price-row__leader {
  border-bottom: 1px dotted var(--border);
  height: .8em;
  align-self: flex-end;
}
.price-row__value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-deep);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 860px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial {
  position: relative;
  padding: 2.5rem 1.85rem 1.85rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
}
.testimonial__mark {
  position: absolute;
  top: -.4rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: .25;
  pointer-events: none;
}
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.3rem;
  flex: 1;
}
.testimonial__author {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  position: relative;
  padding-top: 1rem;
}
.testimonial__author::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 1.8rem;
  height: 1px;
  background: var(--accent);
}

/* ── FAQ ── */
.faq-list { list-style: none; }
.faq-item {
  border-bottom: 1px solid var(--border-soft);
}
.faq-item:first-child { border-top: 1px solid var(--border-soft); }
.faq-summary {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  padding: 1.4rem .25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  transition: color .25s var(--easing);
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover { color: var(--primary); }
.faq-summary__icon {
  flex-shrink: 0;
  position: relative;
  width: 14px;
  height: 14px;
}
.faq-summary__icon::before,
.faq-summary__icon::after {
  content: '';
  position: absolute;
  background: var(--accent-deep);
  transition: transform .3s var(--easing);
}
.faq-summary__icon::before { left: 0; right: 0; top: calc(50% - .5px); height: 1px; }
.faq-summary__icon::after  { top: 0; bottom: 0; left: calc(50% - .5px); width: 1px; }
details[open] .faq-summary__icon::after { transform: scaleY(0); }
.faq-answer {
  padding: 0 .25rem 1.4rem;
}
.faq-answer p {
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 65ch;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (min-width: 920px) {
  .contact-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}

.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}
.contact-form { display: flex; flex-direction: column; gap: 1.35rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}
@media (min-width: 540px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.form-control {
  width: 100%;
  padding: .85rem .15rem;
  border: 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .25s var(--easing);
}
.form-control:focus {
  outline: none;
  border-bottom-color: var(--primary);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem 1rem;
}
textarea.form-control:focus { border-color: var(--primary); }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-group--captcha label {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  flex-wrap: wrap;
}
.captcha-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent-deep);
  letter-spacing: .04em;
  text-transform: none;
}
.form-control--narrow {
  max-width: 8rem;
}
.form-hint {
  font-size: .78rem;
  color: var(--fg-subtle);
  margin-top: .25rem;
}

.form-privacy {
  margin-top: 1.1rem;
  font-size: .82rem;
  line-height: 1.6;
  color: var(--fg-subtle);
  text-align: center;
}
.form-privacy a {
  color: var(--primary);
  border-bottom: 1px solid currentColor;
}
.form-privacy a:hover { color: var(--accent-deep); }

/* ── Contact sidebar ── */
.contact-side { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
}
.contact-card--accent {
  background: linear-gradient(160deg, rgba(47, 93, 80, 0.94), rgba(35, 72, 64, 0.96));
  color: var(--primary-fg);
  border-color: transparent;
}
.contact-card--accent .contact-card__title { color: var(--primary-fg); }
.contact-card--accent p { color: rgba(240, 237, 232, 0.86); }
.contact-card--accent .contact-card__meta { color: rgba(240, 237, 232, 0.65); }

.contact-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .85rem;
}
.contact-card__meta {
  font-size: .85rem;
  color: var(--fg-subtle);
  margin-top: .65rem;
}
.contact-card__sublabel {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: .35rem;
}
.contact-card__parking {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .7rem 0;
  border-bottom: 1px dashed var(--border-soft);
}
.contact-info-item:last-of-type { border-bottom: 0; }
.contact-info-item svg {
  width: 1.15rem; height: 1.15rem;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent-deep);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: .2rem;
}
.contact-info-item p,
.contact-info-item span { font-size: .95rem; color: var(--fg); }
.contact-info-item a { color: var(--fg); border-bottom: 1px solid transparent; transition: border-color .25s, color .25s; }
.contact-info-item a:hover { color: var(--primary); border-bottom-color: currentColor; }

.parking-img {
  margin-top: .85rem;
  max-width: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}

/* ── Alerts ── */
.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .95rem;
  border: 1px solid transparent;
}
.alert--success {
  background: rgba(47, 93, 80, 0.10);
  color: var(--primary-deep);
  border-color: rgba(47, 93, 80, 0.25);
}
.alert--error {
  background: rgba(160, 50, 50, 0.08);
  color: #7f2424;
  border-color: rgba(160, 50, 50, 0.22);
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(240, 237, 232, 0.78);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 2fr 1fr; gap: 3rem; }
}
.footer-logo { height: 60px; width: auto; margin-bottom: 1rem; opacity: .9; }
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--paper);
  margin-bottom: .4rem;
}
.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(240, 237, 232, 0.65);
  font-size: 1rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.footer-col a { display: block; padding: .25rem 0; color: rgba(240, 237, 232, 0.72); transition: color .2s; }
.footer-col a:hover { color: var(--paper); }
.footer-col .contact-icon-row {
  display: flex; align-items: center; gap: .65rem;
  padding: .35rem 0;
  border-bottom: 0;
}
.footer-col .contact-icon-row svg {
  width: .95rem; height: .95rem;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.footer-col .contact-icon-row a,
.footer-col .contact-icon-row span {
  font-size: .9rem;
  color: rgba(240, 237, 232, 0.78);
  padding: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(240, 237, 232, 0.10);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .82rem;
  color: rgba(240, 237, 232, 0.50);
}

/* ── Legal pages ── */
.legal-content {
  padding: calc(var(--header-h) + 4rem) 0 clamp(4rem, 8vw, 7rem);
}
.legal-content .back-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
  transition: color .25s, gap .25s;
}
.legal-content .back-link:hover { color: var(--primary); gap: .8rem; }
.legal-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  margin: .35rem 0 2.5rem;
}
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: .9rem;
  color: var(--ink);
}
.legal-section p,
.legal-section li {
  color: var(--fg-muted);
  line-height: 1.75;
  font-size: 1rem;
}
.legal-section ul { padding-left: 1.4rem; margin-top: .5rem; }
.legal-section li { margin-bottom: .35rem; }
.legal-section a { color: var(--primary); border-bottom: 1px solid currentColor; }

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 90;
  width: 46px;
  height: 46px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background .25s, transform .25s;
}
.scroll-top svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.scroll-top:hover { background: var(--primary); transform: translateY(-2px); }
.scroll-top.visible { display: inline-flex; }

/* ── Reveal on scroll (gated on .js so no-JS users see everything) ── */
[data-anim] {
  transition: opacity .9s var(--easing), transform .9s var(--easing);
  transition-delay: var(--anim-delay, 0ms);
}
.js [data-anim]:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

/* ── Utility ── */
.text-center { text-align: center; }

/* ── Responsive: collapse nav into burger ── */
@media (max-width: 880px) {
  .site-header__inner {
    grid-template-columns: auto 1fr auto;
  }
  .site-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(247, 243, 238, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 1rem 0 1.5rem;
    box-shadow: 0 12px 24px rgba(31, 46, 42, 0.08);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--easing), transform .3s var(--easing);
  }
  .site-header.nav-open .site-nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: .85rem clamp(1.25rem, 4vw, 2.25rem);
    color: var(--ink) !important;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-soft);
  }
  .site-nav a::after { display: none; }
  a.site-nav__cta {
    margin: .85rem clamp(1.25rem, 4vw, 2.25rem) 0;
    border-radius: 999px !important;
    text-align: center;
    background: var(--ink) !important;
    color: var(--paper) !important;
    border: 0 !important;
  }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 540px) {
  .hero__buttons .btn { flex: 1; min-width: 0; }
  .site-header__logo img { height: 48px; }
  .site-header.is-scrolled .site-header__logo img { height: 38px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-anim] { opacity: 1 !important; transform: none !important; }
}
