/* ==========================================================================
   MediGlow — Cosmetic Surgery Concierge
   Design system + site styles
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  /* Brand */
  --ink:        #0B1F1A;
  --jade-900:   #0E2E27;
  --jade-800:   #123A31;
  --jade-700:   #16443A;
  --jade-500:   #2A6B5B;
  --jade-200:   #BFD5CE;

  --gold:       #C6A15B;
  --gold-soft:  #E7D2A0;
  --gold-deep:  #A5813F;

  --cream:      #FAF7F1;
  --sand:       #F2ECE2;
  --sand-deep:  #E7DECF;
  --white:      #FFFFFF;

  --text:       #14201C;
  --muted:      #5F6D68;
  --muted-soft: #8A9793;
  --line:       rgba(14, 46, 39, 0.12);
  --line-soft:  rgba(14, 46, 39, 0.07);

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space + shape */
  --container: 1200px;
  --container-narrow: 860px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(11, 31, 26, .05), 0 4px 14px rgba(11, 31, 26, .05);
  --shadow-md: 0 2px 6px rgba(11, 31, 26, .06), 0 18px 44px rgba(11, 31, 26, .10);
  --shadow-lg: 0 30px 80px rgba(11, 31, 26, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 400; line-height: 1.14; letter-spacing: -.01em; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
::selection { background: var(--gold); color: var(--jade-900); }

/* --- Type scale --------------------------------------------------------- */
.display-1 { font-family: var(--font-display); font-size: clamp(2.9rem, 6.4vw, 5.2rem); line-height: 1.03; letter-spacing: -.015em; }
.display-2 { font-family: var(--font-display); font-size: clamp(2.3rem, 4.4vw, 3.6rem); line-height: 1.08; }
.display-3 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.14; }
.display-4 { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.72rem); line-height: 1.2; }

.eyebrow {
  font-size: .69rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow.is-centered { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }

.lede { font-size: clamp(1.04rem, 1.5vw, 1.19rem); line-height: 1.65; color: var(--muted); }
.on-dark .lede, .lede.on-dark { color: rgba(250, 247, 241, .74); }
.small { font-size: .875rem; }
.muted { color: var(--muted); }
.gold { color: var(--gold-deep); }
.serif { font-family: var(--font-display); }

/* --- Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 26px; }
.container-narrow { max-width: var(--container-narrow); }
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section-sm { padding: clamp(48px, 6vw, 76px) 0; }
.section-head { max-width: 660px; margin-bottom: clamp(34px, 4.5vw, 58px); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.stack-sm > * + * { margin-top: .8rem; }
.stack > * + * { margin-top: 1.4rem; }

.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}
.split.is-wide-left { grid-template-columns: 1.15fr .85fr; }
.split.is-wide-right { grid-template-columns: .85fr 1.15fr; }

.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--sand); }
.bg-white { background: var(--white); }
.bg-jade  { background: var(--jade-900); color: var(--cream); }
.bg-jade h1, .bg-jade h2, .bg-jade h3 { color: var(--cream); }
.bg-jade .muted { color: rgba(250, 247, 241, .68); }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .92rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--jade-900); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--cream); transform: translateY(-1px); }
.btn-jade { background: var(--jade-900); color: var(--cream); border-color: var(--jade-900); }
.btn-jade:hover { background: var(--jade-700); border-color: var(--jade-700); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--jade-900); border-color: rgba(14, 46, 39, .28); }
.btn-ghost:hover { border-color: var(--jade-900); background: var(--jade-900); color: var(--cream); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(250, 247, 241, .34); }
.btn-ghost-light:hover { background: var(--cream); color: var(--jade-900); border-color: var(--cream); }
.btn-sm { padding: .68rem 1.25rem; font-size: .7rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .77rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--jade-700);
  border-bottom: 1px solid rgba(14, 46, 39, .22);
  padding-bottom: .3rem;
  transition: all .3s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--gold-deep); border-color: var(--gold); }
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow.on-dark { color: var(--gold-soft); border-color: rgba(198, 161, 91, .4); }
.link-arrow.on-dark:hover { color: var(--white); border-color: var(--gold); }

/* --- Header ------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, .86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .35s var(--ease), background .35s var(--ease);
}
.header.is-stuck { box-shadow: 0 1px 24px rgba(11, 31, 26, .09); background: rgba(250, 247, 241, .96); }
.header-bar {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: .72rem; flex: none; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .012em; color: var(--jade-900); }
.brand-name span { color: var(--gold-deep); }
.brand-tag { font-size: .53rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted-soft); margin-top: .3rem; }

.nav { display: flex; align-items: center; gap: 1.65rem; }
.nav a {
  font-size: .81rem; font-weight: 500; letter-spacing: .04em; color: var(--text);
  position: relative; padding: .3rem 0; white-space: nowrap;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--gold-deep); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--jade-900); }

.header-actions { display: flex; align-items: center; gap: 1rem; flex: none; }
.header-phone { font-size: .81rem; font-weight: 500; color: var(--muted); white-space: nowrap; }
.header-phone:hover { color: var(--gold-deep); }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: transparent; border-radius: 2px; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 1.4px; background: var(--jade-900); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.4px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line-soft);
  background: var(--cream);
  padding: 12px 0 26px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: .78rem 0; font-size: 1.05rem;
  font-family: var(--font-display); border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .btn { width: 100%; margin-top: 1.2rem; }

/* --- Announcement bar --------------------------------------------------- */
.topbar {
  background: var(--jade-900);
  color: rgba(250, 247, 241, .78);
  font-size: .74rem;
  letter-spacing: .07em;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 40px; padding-block: 8px; }
.topbar strong { color: var(--gold-soft); font-weight: 600; }
.topbar-regions { display: flex; gap: 1.15rem; flex-wrap: wrap; }
.topbar-regions span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar-regions span::before { content: "•"; color: var(--gold); }
.topbar-regions span:first-child::before { display: none; }

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--jade-900);
  color: var(--cream);
  overflow: hidden;
  padding: clamp(76px, 11vw, 148px) 0 clamp(64px, 8vw, 110px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 78% at 78% 18%, rgba(198, 161, 91, .30), transparent 62%),
    radial-gradient(48% 62% at 12% 88%, rgba(42, 107, 91, .55), transparent 60%),
    linear-gradient(160deg, #0E2E27 0%, #0B1F1A 60%, #123A31 100%);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(250,247,241,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,247,241,.028) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000 20%, transparent 78%);
}
.hero > * { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero h1 { color: var(--cream); }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero .lede { color: rgba(250, 247, 241, .76); max-width: 33ch; margin-top: 1.5rem; }
.hero .btn-row { margin-top: 2.2rem; }

.hero-trust {
  margin-top: clamp(46px, 6vw, 78px);
  padding-top: 30px;
  border-top: 1px solid rgba(250, 247, 241, .13);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.hero-trust li .n { font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--gold-soft); display: block; line-height: 1.1; }
.hero-trust li .l { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(250, 247, 241, .55); }

/* Hero card (quote / enquiry teaser) */
.hero-card {
  background: rgba(250, 247, 241, .055);
  border: 1px solid rgba(250, 247, 241, .14);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  backdrop-filter: blur(6px);
}
.hero-card h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--cream); }
.hero-card ul { margin-top: 1.3rem; display: grid; gap: .78rem; }
.hero-card li { display: flex; gap: .7rem; font-size: .93rem; color: rgba(250, 247, 241, .8); line-height: 1.5; }
.hero-card li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; margin-top: .55rem; }
.hero-card .btn { width: 100%; margin-top: 1.7rem; }
.hero-card .fineprint { font-size: .74rem; color: rgba(250, 247, 241, .48); text-align: center; margin-top: .9rem; }

/* --- Page hero (inner pages) -------------------------------------------- */
.page-hero {
  position: relative;
  background: var(--jade-900);
  color: var(--cream);
  padding: clamp(60px, 8vw, 104px) 0 clamp(54px, 7vw, 88px);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(52% 76% at 84% 14%, rgba(198, 161, 91, .24), transparent 62%),
    linear-gradient(155deg, #0E2E27 0%, #0B1F1A 100%);
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero h1 { color: var(--cream); max-width: 18ch; }
.page-hero .lede { color: rgba(250, 247, 241, .74); max-width: 58ch; margin-top: 1.2rem; }
.crumbs { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250, 247, 241, .5); margin-bottom: 1.4rem; }
.crumbs a:hover { color: var(--gold-soft); }
.crumbs span { margin: 0 .5rem; color: rgba(250, 247, 241, .3); }

/* --- Cards -------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(198, 161, 91, .38); }
.card-body { padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.card h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--jade-900); }
.card p { color: var(--muted); font-size: .945rem; }
.card-foot { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.card-price { font-family: var(--font-display); font-size: 1.12rem; color: var(--jade-700); }
.card-price small { display: block; font-family: var(--font-sans); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-soft); }

/* Media placeholder — swap for real photography (see README) */
.ph {
  position: relative;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(70% 90% at 24% 16%, rgba(231, 210, 160, .55), transparent 60%),
    radial-gradient(80% 80% at 82% 84%, rgba(42, 107, 91, .38), transparent 62%),
    linear-gradient(140deg, #E7DECF 0%, #F2ECE2 48%, #D9E2DD 100%);
  overflow: hidden;
}
.ph::after {
  content: attr(data-label);
  position: absolute; left: 18px; bottom: 15px;
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(14, 46, 39, .42);
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../img/logo-mark.svg") no-repeat center / 42%;
  opacity: .16;
}
.ph.is-tall { aspect-ratio: 3 / 4; }
.ph.is-wide { aspect-ratio: 16 / 9; }
.ph.is-square { aspect-ratio: 1 / 1; }
.ph.is-dark {
  background:
    radial-gradient(70% 90% at 24% 16%, rgba(198, 161, 91, .34), transparent 60%),
    linear-gradient(140deg, #123A31 0%, #0B1F1A 100%);
}
.ph.is-dark::after { color: rgba(250, 247, 241, .45); }
.ph.is-dark::before { opacity: .22; }
.ph img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }

/* --- Feature list ------------------------------------------------------- */
.features { display: grid; gap: clamp(22px, 2.6vw, 34px); }
.feature { display: flex; gap: 1.15rem; align-items: flex-start; }
.feature-ico {
  width: 46px; height: 46px; flex: none;
  border: 1px solid rgba(198, 161, 91, .45);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--gold-deep);
}
.on-dark .feature-ico, .bg-jade .feature-ico { border-color: rgba(198, 161, 91, .5); color: var(--gold-soft); }
.feature-ico svg { width: 20px; height: 20px; }
.feature h3 { font-family: var(--font-display); font-size: 1.28rem; margin-bottom: .3rem; }
.feature p { font-size: .93rem; color: var(--muted); }
.bg-jade .feature p { color: rgba(250, 247, 241, .68); }
.bg-jade .feature h3 { color: var(--cream); }

/* --- Steps -------------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 3vw, 34px) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--gold);
  line-height: .9;
}
.step h3 { font-family: var(--font-display); font-size: clamp(1.35rem, 2vw, 1.7rem); margin-bottom: .5rem; }
.step p { color: var(--muted); max-width: 62ch; }
.bg-jade .step { border-color: rgba(250, 247, 241, .13); }
.bg-jade .step p { color: rgba(250, 247, 241, .68); }

/* --- Package / pricing tiers -------------------------------------------- */
.tier {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tier.is-featured {
  background: var(--jade-900);
  color: var(--cream);
  border-color: var(--jade-900);
  box-shadow: var(--shadow-lg);
}
.tier.is-featured h3, .tier.is-featured .tier-price { color: var(--cream); }
.tier.is-featured li { color: rgba(250, 247, 241, .8); }
.tier.is-featured .tier-note { color: rgba(250, 247, 241, .5); border-color: rgba(250, 247, 241, .16); }
.tier-badge {
  align-self: flex-start;
  font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  background: var(--gold); color: var(--jade-900);
  padding: .3rem .68rem; border-radius: 2px; margin-bottom: 1rem;
}
.tier h3 { font-family: var(--font-display); font-size: 1.85rem; color: var(--jade-900); }
.tier-sub { font-size: .89rem; color: var(--muted); margin-top: .3rem; }
.tier.is-featured .tier-sub { color: rgba(250, 247, 241, .62); }
.tier-price { font-family: var(--font-display); font-size: 2.15rem; color: var(--jade-900); margin: 1.3rem 0 .2rem; }
.tier-price small { font-family: var(--font-sans); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-soft); display: block; margin-bottom: .35rem; }
.tier ul { margin: 1.5rem 0; display: grid; gap: .68rem; }
.tier li { display: flex; gap: .65rem; font-size: .92rem; color: var(--muted); line-height: 1.5; }
.tier li svg { width: 15px; height: 15px; flex: none; margin-top: .32rem; color: var(--gold); }
.tier .btn { width: 100%; margin-top: auto; }
.tier-note { font-size: .74rem; color: var(--muted-soft); margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); }

/* --- Inclusions table --------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 620px; }
th, td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .92rem; }
th { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; background: var(--sand); }
tbody tr:last-child td { border-bottom: 0; }
td strong { font-weight: 600; color: var(--jade-900); }
.tick { color: var(--jade-500); font-weight: 600; }
.cross { color: var(--muted-soft); }

/* --- Accordion / FAQ ---------------------------------------------------- */
.accordion { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; text-align: left;
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.7vw, 1.32rem); line-height: 1.35;
  transition: color .3s var(--ease);
}
.acc-trigger:hover { color: var(--gold-deep); }
.acc-icon { flex: none; width: 22px; height: 22px; position: relative; margin-top: .35rem; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--gold-deep);
  transform: translate(-50%, -50%); transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.acc-icon::before { width: 13px; height: 1.4px; }
.acc-icon::after { width: 1.4px; height: 13px; }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.acc-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.acc-panel > div { overflow: hidden; }
.acc-panel.is-open { grid-template-rows: 1fr; }
.acc-panel p { padding-bottom: 1.4rem; color: var(--muted); max-width: 76ch; font-size: .96rem; }
.acc-panel p:first-child { padding-top: .1rem; }

/* --- Quote / testimonial ------------------------------------------------ */
.quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--jade-900);
}
.bg-jade .quote { color: var(--cream); }
.quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--gold); display: block; margin-bottom: .6rem; }
.quote-by { margin-top: 1.5rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.bg-jade .quote-by { color: rgba(250, 247, 241, .55); }

/* --- Stat strip --------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.stat { background: var(--cream); padding: clamp(24px, 3vw, 36px) clamp(18px, 2vw, 28px); text-align: center; }
.stat .n { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.9rem); color: var(--jade-900); line-height: 1; display: block; }
.stat .l { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .6rem; display: block; }

/* --- Logo / trust row --------------------------------------------------- */
.trust-row { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 54px); align-items: center; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: .6rem; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.trust-item svg { width: 17px; height: 17px; color: var(--gold-deep); }

/* --- CTA band ----------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--jade-900); color: var(--cream);
  padding: clamp(56px, 7vw, 92px) 0;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(48% 100% at 84% 50%, rgba(198, 161, 91, .26), transparent 66%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--cream); }

/* --- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; align-items: end; }
.field { display: grid; gap: .42rem; }
.field label { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; font-size: .95rem;
  padding: .82rem .95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, .16);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235F6D68' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 11px; padding-right: 2.4rem; }
.check { display: flex; gap: .7rem; align-items: flex-start; font-size: .84rem; color: var(--muted); line-height: 1.5; }
.check input { width: 17px; height: 17px; margin-top: .18rem; flex: none; accent-color: var(--jade-700); }
.check a { color: var(--jade-700); text-decoration: underline; text-underline-offset: 2px; }
.form-note { font-size: .78rem; color: var(--muted-soft); }
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: var(--shadow-sm);
}

/* --- Contact detail list ------------------------------------------------ */
.detail-list { display: grid; gap: 1.6rem; }
.detail-list dt { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: .3rem; }
.detail-list dd { margin: 0; font-size: 1rem; color: var(--text); }
.detail-list dd a:hover { color: var(--gold-deep); }

/* --- Notice / disclaimer ------------------------------------------------ */
.notice {
  border-left: 2px solid var(--gold);
  background: var(--sand);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .89rem;
  color: var(--muted);
}
.notice strong { color: var(--jade-900); }

/* --- Pills -------------------------------------------------------------- */
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  font-size: .74rem; letter-spacing: .06em;
  padding: .38rem .8rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--muted);
  background: var(--white);
}
.bg-jade .pill { border-color: rgba(250, 247, 241, .18); background: rgba(250, 247, 241, .05); color: rgba(250, 247, 241, .78); }

/* --- Prose (legal pages) ------------------------------------------------ */
.prose h2 { font-family: var(--font-display); font-size: 1.75rem; margin: 2.4rem 0 .8rem; }
.prose h3 { font-family: var(--font-display); font-size: 1.3rem; margin: 1.8rem 0 .5rem; }
.prose p, .prose li { color: var(--muted); }
.prose ul { list-style: disc; padding-left: 1.2rem; margin: 0 0 1.1rem; display: grid; gap: .4rem; }
.prose li::marker { color: var(--gold); }
.prose a { color: var(--jade-700); text-decoration: underline; text-underline-offset: 2px; }

/* --- Footer ------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(250, 247, 241, .68); padding: clamp(56px, 7vw, 86px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(28px, 4vw, 56px); }
.footer h4 { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.15rem; font-weight: 600; }
.footer a { transition: color .3s var(--ease); }
.footer a:hover { color: var(--gold-soft); }
.footer-links { display: grid; gap: .62rem; font-size: .9rem; }
.footer .brand-name { color: var(--cream); }
.footer .brand-tag { color: rgba(250, 247, 241, .42); }
.footer-about { font-size: .9rem; line-height: 1.62; margin-top: 1.3rem; max-width: 38ch; color: rgba(250, 247, 241, .6); }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid rgba(250, 247, 241, .1);
  padding: 24px 0 30px;
  display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; justify-content: space-between;
  font-size: .8rem; color: rgba(250, 247, 241, .45);
}
.footer-legal { display: flex; gap: 1.3rem; flex-wrap: wrap; }
.footer-disclaimer {
  font-size: .77rem; line-height: 1.6; color: rgba(250, 247, 241, .4);
  border-top: 1px solid rgba(250, 247, 241, .1);
  padding-top: 22px; margin-top: 34px; max-width: 92ch;
}
.social { display: flex; gap: .7rem; }
.social a {
  width: 36px; height: 36px; border: 1px solid rgba(250, 247, 241, .18);
  border-radius: 50%; display: grid; place-items: center; transition: all .3s var(--ease);
}
.social a:hover { border-color: var(--gold); background: var(--gold); color: var(--jade-900); }
.social svg { width: 15px; height: 15px; }

/* --- Floating WhatsApp -------------------------------------------------- */
.float-cta {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--jade-900); color: var(--cream);
  padding: .8rem 1.15rem; border-radius: 100px;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.float-cta:hover { transform: translateY(-2px); background: var(--jade-700); }
.float-cta svg { width: 17px; height: 17px; color: var(--gold-soft); }

/* --- Reveal animation --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav { gap: 1.25rem; }
  .nav a { font-size: .77rem; }
  .header-phone { display: none; }
}
@media (max-width: 960px) {
  :root { --header-h: 72px; }
  .nav, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .split, .split.is-wide-left, .split.is-wide-right { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { padding-inline: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .topbar-inner { justify-content: center; }
  .topbar-regions { display: none; }
  .step { grid-template-columns: 1fr; gap: .4rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .float-cta span { display: none; }
  .float-cta { padding: .9rem; }
}
