/* ==========================================================================
   Kauri Health Clinic — Design System
   Palette & type reproduced 1:1 from the original site tokens.
   ========================================================================== */

:root {
  /* Core brand palette (HSL to match original tokens) */
  --cream:        hsl(37 18% 92%);      /* page background            */
  --cream-2:      hsl(40 20% 95%);      /* lighter card surface       */
  --forest:       hsl(174 56% 16%);     /* primary deep teal-green    */
  --forest-hover: hsl(174 56% 12%);
  --forest-deep:  hsl(174 56% 10%);
  --mint:         hsl(153 51% 92%);     /* pale text on forest        */
  --mint-dim:     hsl(153 30% 80%);
  --sage:         hsl(138 25% 75%);     /* soft sage                  */
  --olive:        hsl(74 22% 48%);      /* eyebrow / emphasis accent  */
  --olive-soft:   hsl(74 24% 66%);      /* emphasis on dark           */
  --ink:          hsl(0 0% 10%);        /* headings on light          */
  --body:         hsl(200 6% 25%);      /* body copy                  */
  --muted:        hsl(46 3% 36%);       /* captions                   */
  --border:       hsl(48 8% 81%);
  --border-soft:  hsl(48 10% 86%);
  --card:         hsl(40 14% 89%);      /* service card fill          */

  --radius:   10px;
  --radius-lg: 18px;
  --maxw:    1180px;
  --gutter:  clamp(20px, 5vw, 64px);

  --serif: Georgia, "Times New Roman", "Songti SC", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --shadow-sm: 0 1px 2px rgba(18, 40, 37, .06);
  --shadow-md: 0 10px 30px -12px rgba(18, 40, 37, .18);
  --shadow-lg: 0 30px 60px -20px rgba(18, 40, 37, .28);

  --t: .28s cubic-bezier(.2,.6,.2,1);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1,h2,h3,h4 { color: var(--ink); font-family: var(--serif); font-weight: 400; line-height: 1.14; letter-spacing: -.01em; margin: 0; }
p { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; }

::selection { background: var(--olive-soft); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(48px, 6vw, 92px); }
.section--tight { padding-block: clamp(36px, 4.5vw, 60px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 48ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 1rem;
  display: inline-block;
}
.eyebrow--onforest { color: var(--sage); }

h1, .h1 { font-size: clamp(2.35rem, 6vw, 4.1rem); }
h2, .h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3, .h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.emph { font-style: italic; color: var(--olive); }
.emph--light { font-style: italic; color: var(--olive-soft); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--body); }
.section-intro { color: var(--muted); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: var(--mint);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: .95em 1.9em; border-radius: 999px; border: 1.5px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: transform var(--t), background var(--t), color var(--t), box-shadow var(--t);
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--forest-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--lg { padding: 1.1em 2.3em; font-size: 1rem; }
.btn--ghost { background: transparent; color: var(--forest); border-color: var(--border); box-shadow: none; }
.btn--ghost:hover { background: rgba(18,64,59,.05); border-color: var(--forest); color: var(--forest); }
.btn--onforest { background: var(--mint); color: var(--forest); }
.btn--onforest:hover { background: #fff; }
.btn--onforest-ghost { background: transparent; color: var(--mint); border-color: rgba(219,243,230,.4); box-shadow: none; }
.btn--onforest-ghost:hover { background: rgba(255,255,255,.08); border-color: var(--mint); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row--center { justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--forest);
  color: var(--mint);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--mint); }
.brand img { width: 40px; height: 40px; }
.brand-text { font-family: var(--sans); line-height: 1.05; }
.brand-text b { display: block; font-weight: 700; letter-spacing: .12em; font-size: .95rem; }
.brand-text span { display: block; font-size: .58rem; letter-spacing: .22em; color: var(--mint-dim); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: .95rem; font-weight: 500; color: var(--mint); opacity: .85; transition: opacity var(--t); position: relative; }
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--sage); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.nav-actions { display: flex; align-items: center; gap: .9rem; }

/* has-dropdown */
.nav-item { position: relative; }
.nav-toggle-caret { font-size: .7em; opacity: .7; }
.dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--cream); color: var(--ink); border: 1px solid var(--border-soft);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: .5rem; min-width: 280px;
  opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t); z-index: 70;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: .6rem .8rem; border-radius: 7px; font-size: .92rem; color: var(--body); opacity: 1; }
.dropdown a:hover { background: rgba(18,64,59,.07); color: var(--forest); }

.icon-btn { background: transparent; border: 0; color: var(--mint); display: inline-flex; align-items: center; gap: .4rem; font-size: .9rem; cursor: pointer; opacity: .85; }
.icon-btn:hover { opacity: 1; }

.hamburger { display: none; background: transparent; border: 0; color: var(--mint); cursor: pointer; padding: .3rem; }
.hamburger svg { width: 26px; height: 26px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; inset: 76px 0 0 0; background: var(--forest-deep); color: var(--mint);
  transform: translateX(100%); transition: transform var(--t); z-index: 55; overflow-y: auto;
  padding: 1.5rem var(--gutter) 3rem; display: flex; flex-direction: column; gap: .3rem;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer a { padding: .9rem 0; font-size: 1.15rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-drawer .m-sub { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--sage); padding-top: 1.4rem; border: 0; }
.mobile-drawer .m-svc { padding-left: 1rem; font-size: 1rem; opacity: .9; }
.mobile-drawer .btn { margin-top: 1.6rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative; background:
    radial-gradient(120% 100% at 50% -10%, hsl(174 45% 22%), var(--forest) 55%, var(--forest-deep));
  color: var(--mint); overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(60% 50% at 50% 40%, rgba(180,201,157,.10), transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero--home { text-align: center; padding-block: clamp(70px, 12vw, 150px); }
.hero-logo { width: 118px; height: 118px; margin: 0 auto 2rem; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: var(--sage); }
.hero-sub { color: var(--mint-dim); font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 56ch; margin-inline: auto; margin-top: 1.5rem; }
.hero .btn-row { margin-top: 2.4rem; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; justify-content: center; margin-top: 3rem; color: var(--mint-dim); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-badges span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-badges span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* Inner hero (subpages) */
.hero--page { padding-block: clamp(70px, 10vw, 128px); text-align: center; }
.hero--page h1 { color: #fff; max-width: 20ch; margin-inline: auto; }
.hero--page .hero-sub { margin-top: 1.4rem; }

/* ---------- Services grid (home) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.svc-card {
  position: relative; display: flex; flex-direction: column; gap: .5rem;
  background: var(--card); border-radius: var(--radius); padding: 2rem 1.9rem 1.7rem;
  border-left: 3px solid var(--olive-soft); overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--cream-2); }
.svc-card .tag { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--olive); }
.svc-card h3 { font-size: 1.35rem; margin-top: .2rem; }
.svc-card p { font-family: var(--serif); color: var(--body); font-size: 1rem; margin: .3rem 0 1rem; }
.svc-card .more { margin-top: auto; font-family: var(--serif); font-style: italic; color: var(--olive); font-size: 1rem; transition: gap var(--t); display: inline-flex; gap: .3rem; }
.svc-card:hover .more { gap: .6rem; }

/* ---------- Icon cards (who we help / who this is for) ---------- */
.icon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.icon-card {
  background: var(--cream-2); border: 1px solid var(--border-soft); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; transition: transform var(--t), box-shadow var(--t);
}
.icon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.icon-card .ic { font-size: 1.8rem; line-height: 1; margin-bottom: .9rem; display: block; }
.icon-card h3 { font-size: 1.02rem; font-family: var(--sans); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--forest); margin-bottom: .5rem; }
.icon-card p { font-family: var(--serif); font-size: 1rem; color: var(--body); margin: 0; }

/* ---------- Split feature (clinic / facilities) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-media { position: relative; }
.media-caption { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: .9rem; }
.check-list { list-style: none; display: grid; gap: .7rem; margin: 1.4rem 0 0; }
.check-list li { position: relative; padding-left: 1.9rem; font-family: var(--serif); color: var(--body); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .5em; width: 12px; height: 12px; border-radius: 50%;
  background: var(--olive-soft); box-shadow: 0 0 0 4px rgba(138,154,91,.18);
}

.tri-media { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tri-media figure { margin: 0; }
.tri-media img { border-radius: var(--radius); box-shadow: var(--shadow-sm); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.tri-media figcaption { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .7rem; }

/* ---------- Process / numbered steps ---------- */
.process { display: grid; gap: 1rem; }
.process-row {
  display: grid; grid-template-columns: 72px 1fr; gap: 1.5rem; align-items: start;
  padding: 1.7rem; background: var(--cream-2); border: 1px solid var(--border-soft); border-radius: var(--radius);
}
.process-num { font-family: var(--serif); font-size: 2.1rem; color: var(--olive-soft); line-height: 1; }
.process-row h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.process-row p { font-family: var(--serif); margin: 0; color: var(--body); }

/* Journey (compact numbered on forest or cream) */
.journey { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; counter-reset: j; }
.journey-item { position: relative; padding-top: 3.4rem; }
.journey-item .jn { position: absolute; top: 0; left: 0; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--forest); color: var(--mint); font-family: var(--serif); font-size: 1.2rem; }
.journey-item h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.journey-item p { font-family: var(--serif); font-size: .98rem; margin: 0; color: var(--body); }

/* ---------- Detailed step cards (service pages) ---------- */
.steps { display: grid; gap: 1.2rem; }
.step-card {
  background: var(--cream-2); border: 1px solid var(--border-soft); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); display: grid; grid-template-columns: 1fr; gap: 1.2rem;
}
@media (min-width: 820px) { .step-card { grid-template-columns: 1fr 1fr; } }
.step-head .step-kicker { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--olive); }
.step-head h3 { font-size: 1.5rem; margin: .5rem 0 .3rem; }
.step-head .step-sub { font-family: var(--serif); font-style: italic; color: var(--muted); }
.step-head p { font-family: var(--serif); margin-top: 1rem; color: var(--body); }
.step-included { background: var(--cream); border-radius: var(--radius); padding: 1.3rem 1.4rem; }
.step-included .il { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--forest); margin-bottom: .8rem; }
.step-included ul { list-style: none; display: grid; gap: .55rem; }
.step-included li { position: relative; padding-left: 1.4rem; font-size: .95rem; font-family: var(--serif); color: var(--body); }
.step-included li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--olive-soft); }
.step-included li.step-foot { padding-left: 0; margin-top: .5rem; font-style: italic; color: var(--muted); font-size: .9rem; }
.step-included li.step-foot::before { display: none; }

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm); }
table.compare { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--cream-2); font-size: .96rem; }
table.compare th, table.compare td { text-align: left; padding: 1.05rem 1.3rem; border-bottom: 1px solid var(--border-soft); vertical-align: top; }
table.compare thead th { font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
table.compare thead th:last-child { color: var(--forest); }
table.compare tbody th { font-family: var(--sans); font-weight: 600; color: var(--ink); font-size: .9rem; width: 22%; }
table.compare td { font-family: var(--serif); color: var(--body); }
table.compare td:last-child { color: var(--forest); background: rgba(18,64,59,.04); }
table.compare tbody tr:last-child th, table.compare tbody tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .8rem; max-width: 820px; margin-inline: auto; }
.faq-item { background: var(--cream-2); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.4rem; font-family: var(--serif); font-size: 1.12rem; color: var(--ink);
}
.faq-q .sign { flex: none; width: 26px; height: 26px; position: relative; transition: transform var(--t); color: var(--olive); }
.faq-q .sign::before, .faq-q .sign::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; inset: 0; margin: auto; }
.faq-q .sign::before { width: 15px; height: 2px; }
.faq-q .sign::after { width: 2px; height: 15px; transition: transform var(--t); }
.faq-item[open] .faq-q .sign::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 1.4rem; max-height: 0; overflow: hidden; transition: max-height var(--t), padding var(--t); }
.faq-item[open] .faq-a { padding: 0 1.4rem 1.4rem; max-height: 600px; }
.faq-a p { font-family: var(--serif); color: var(--body); margin: 0; }

/* ---------- Prose blocks ---------- */
.prose p { font-family: var(--serif); font-size: 1.12rem; color: var(--body); }
.prose p.lead { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

/* Flow arrow row (peptide) */
.flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .8rem; margin: 1.6rem 0; }
.flow .node { background: var(--cream-2); border: 1px solid var(--border-soft); border-radius: 999px; padding: .6rem 1.3rem; font-family: var(--sans); font-size: .85rem; font-weight: 600; color: var(--forest); }
.flow .arrow { color: var(--olive-soft); font-size: 1.2rem; }

/* ---------- Sections on forest ---------- */
.on-forest { background: var(--forest); color: var(--mint); }
.on-forest h1, .on-forest h2, .on-forest h3 { color: #fff; }
.on-forest .section-intro { color: var(--mint-dim); }
.on-forest .eyebrow { color: var(--sage); }
.on-forest .journey-item .jn { background: var(--mint); color: var(--forest); }
.on-forest .journey-item p { color: var(--mint-dim); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest); color: var(--mint); text-align: center; border-radius: var(--radius-lg); padding: clamp(2.6rem, 6vw, 4.5rem); }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--mint-dim); max-width: 52ch; margin-inline: auto; margin-top: 1rem; }
.cta-band .btn-row { margin-top: 2rem; justify-content: center; }

/* ---------- Location ---------- */
.location { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.loc-facts { display: grid; gap: 1.6rem; align-content: center; }
.loc-facts h3 { font-size: 1.6rem; margin-bottom: .3rem; }
.loc-block .lk { font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: .35rem; }
.loc-block p { font-family: var(--serif); margin: 0; color: var(--body); }
.loc-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; border: 0; width: 100%; }

/* ---------- Booking form ---------- */
.book-grid { display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem); }
@media (min-width: 900px) { .book-grid { grid-template-columns: 1.1fr .9fr; } }
.form-card { background: var(--cream-2); border: 1px solid var(--border-soft); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--ink); margin-bottom: .45rem; }
.field .req { color: var(--olive); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
  padding: .8rem .95rem; transition: border var(--t), box-shadow var(--t);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(18,64,59,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 1rem; }
.book-aside { display: grid; gap: 1.4rem; align-content: start; }
.aside-card { background: var(--forest); color: var(--mint); border-radius: var(--radius-lg); padding: 1.9rem; }
.aside-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 1rem; }
.aside-card .ac-row { display: flex; gap: .8rem; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: .95rem; color: var(--mint-dim); }
.aside-card .ac-row:last-child { border-bottom: 0; }
.aside-card .ac-row b { color: #fff; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-deep); color: var(--mint-dim); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.4rem; }
.footer-brand .brand { color: var(--mint); margin-bottom: 1rem; }
.footer-brand p { font-size: .95rem; max-width: 30ch; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a, .footer-col li { font-size: .93rem; color: var(--mint-dim); transition: color var(--t); }
.footer-col a:hover { color: #fff; }
.footer-social { display: flex; gap: .8rem; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); color: var(--mint); transition: background var(--t); }
.footer-social a:hover { background: var(--sage); color: var(--forest-deep); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; }
.footer-bottom a { color: var(--mint-dim); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { font-size: .82rem; color: var(--mint-dim); margin-bottom: 1.4rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.breadcrumb li::after { content: "/"; margin-left: .5rem; opacity: .5; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--sage); }

/* ---------- Related services (internal linking) ---------- */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .8rem; max-width: 960px; margin-inline: auto; }
.related-link {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--cream-2); border: 1px solid var(--border-soft); border-left: 3px solid var(--olive-soft);
  border-radius: var(--radius); padding: 1.05rem 1.3rem; font-family: var(--serif); color: var(--ink);
  transition: transform var(--t), box-shadow var(--t), background var(--t);
}
.related-link:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); background: var(--cream); color: var(--forest); }
.related-link span:last-child { color: var(--olive); }

/* ---------- Disclaimer ---------- */
.disclaimer { font-size: .85rem; color: var(--muted); border-top: 1px solid var(--border-soft); padding-top: 1.6rem; max-width: 80ch; }

/* ---------- Skip link & a11y ---------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--mint); color: var(--forest); padding: .7rem 1.2rem; z-index: 100; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--olive); outline-offset: 2px; }

/* ---------- Floating LINE button ---------- */
.line-fab { position: fixed; right: 20px; bottom: 20px; z-index: 50; display: inline-flex; align-items: center; gap: .55rem; background: #06C755; color: #fff; padding: .8rem 1.2rem; border-radius: 999px; font-family: var(--sans); font-weight: 700; font-size: .9rem; box-shadow: var(--shadow-md); transition: transform var(--t); }
.line-fab:hover { transform: translateY(-3px); }
.line-fab svg { width: 20px; height: 20px; }

/* ---------- Reveal on scroll ----------
   Only hides when JS is active (html.js). Without JS, or if the observer
   never fires, content is fully visible — it can never be permanently hidden. */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.6,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .location { grid-template-columns: 1fr; }
  .loc-map { min-height: 300px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-actions .btn, .nav-actions .lang { display: none; }
  .hamburger { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .tri-media { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 52px 1fr; gap: 1rem; padding: 1.3rem; }
  .hero-badges { gap: 1rem 1.6rem; }
}
