/* ==========================================================================
   {{BUSINESS_NAME}} — Aesthetics Clinic Template · FRESH edition
   Bright, clean "clinical-luxe" — emerald on ivory
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --paper:       #F6F4EE;   /* warm off-white base */
  --white:       #FFFFFF;
  --cream:       #FBFAF5;   /* raised surface */
  --ink:         #1A231E;   /* deep charcoal-green */
  --forest:      #2F5B4C;   /* primary accent */
  --forest-deep: #22463A;
  --forest-tint: #E7EEE7;   /* light sage section */
  --sage:        #D8E2D8;   /* hairlines */
  --sage-2:      #C3D2C4;
  --body:        #4E574F;
  --muted:       #7E877E;
  --gold:        #B79363;   /* rare warm accent */

  --serif: "Fraunces", Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --container: 1300px;
  --wide: 1560px;
  --narrow: 880px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.3rem, 5vw, 4.5rem);
  --shadow-sm: 0 4px 20px -8px rgba(26,35,30,0.1);
  --shadow: 0 30px 70px -34px rgba(26,35,30,0.32);
  --shadow-lg: 0 50px 100px -50px rgba(26,35,30,0.4);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--body);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--forest); color: #fff; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--sans); color: var(--ink); font-weight: 700; line-height: 1.06; letter-spacing: -0.022em; }
.display { font-size: clamp(2.8rem, 6.4vw, 5.4rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.0; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); font-weight: 800; letter-spacing: -0.028em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.1em; }
strong { font-weight: 600; color: var(--ink); }
.serif-em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.forest { color: var(--forest); }

.kicker { font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--forest); display: inline-flex; align-items: center; gap: 0.7em; }
.kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; border-radius: 2px; }
.kicker.center { justify-content: center; }
.kicker.center::after { content: ""; width: 24px; height: 2px; background: currentColor; border-radius: 2px; }

.lead { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.55; color: var(--ink); font-weight: 400; }
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.container.wide { max-width: var(--wide); }
.narrow { max-width: var(--narrow); }
.section { padding-block: clamp(4.5rem, 9vw, 9rem); }
.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-tint { background: var(--forest-tint); }
.bg-ink { background: var(--ink); color: rgba(246,244,238,0.72); }
.bg-forest { background: var(--forest); color: rgba(255,255,255,0.82); }
.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.center { text-align: center; }
.sec-head { max-width: 680px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.sec-head.center { margin-inline: auto; }
.sec-head .kicker { margin-bottom: 1.3rem; }
.sec-head h2 { margin-bottom: 0.7rem; }
.sec-head p { font-size: 1.08rem; color: var(--muted); }

.grid { display: grid; gap: clamp(1.4rem, 2.6vw, 2.2rem); }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.6em; font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em; padding: 1.05em 1.9em; border-radius: 100px; transition: all 0.35s var(--ease); white-space: nowrap; }
.btn svg { transition: transform 0.35s var(--ease); }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: var(--forest-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(47,91,76,0.5); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { border: 1.5px solid var(--sage-2); color: var(--ink); }
.btn-outline:hover { border-color: var(--forest); color: var(--forest); background: var(--white); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.45); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--forest-deep); border-color: #fff; }
.btn-block { width: 100%; }
.btn-lg { padding: 1.2em 2.3em; font-size: 0.85rem; }

.tlink { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--forest); display: inline-flex; align-items: center; gap: 0.5em; }
.tlink svg { transition: transform 0.35s var(--ease); }
.tlink:hover svg { transform: translateX(5px); }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: rgba(246,244,238,0.75); font-size: 0.73rem; letter-spacing: 0.04em; }
.topbar .container { display: flex; align-items: center; justify-content: center; gap: 1.3rem; min-height: 40px; text-align: center; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar a { color: #fff; }
.topbar a:hover { color: var(--forest-tint); }
.topbar .sep { opacity: 0.35; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 90; background: rgba(246,244,238,0); transition: background 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s; border-bottom: 1px solid transparent; }
.site-header.solid { background: rgba(251,250,245,0.92); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom-color: var(--sage); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 2rem; }
.brand { display: flex; flex-direction: column; line-height: 1; z-index: 95; }
.brand-name { font-family: var(--sans); font-size: 1.4rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.brand-name .dot { color: var(--forest); }
.brand-sub { font-size: 0.56rem; font-weight: 700; letter-spacing: 0.32em; text-transform: uppercase; color: var(--forest); margin-top: 0.45em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--ink); position: relative; padding-block: 0.4rem; transition: color 0.3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--forest); border-radius: 2px; transition: width 0.35s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1.3rem; }
.nav-phone { font-size: 0.85rem; font-weight: 600; color: var(--ink); white-space: nowrap; display: inline-flex; align-items: center; gap: 0.5em; }
.nav-phone:hover { color: var(--forest); }
.nav-links .m-only { display: none; }
.nav-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; z-index: 95; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (split) ---------- */
.hero { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; align-items: stretch; min-height: calc(100svh - 124px); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4.5rem) 0; }
.hero-copy .kicker { margin-bottom: 1.6rem; }
.hero-copy h1 { margin-bottom: 1.5rem; max-width: 13ch; }
.hero-copy h1 .serif-em { color: var(--forest); }
.hero-sub { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--body); max-width: 480px; margin-bottom: 2.2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 2.4rem; }
.hero-trust { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.hero-trust .ht { display: flex; align-items: center; gap: 0.55rem; font-size: 0.82rem; font-weight: 500; color: var(--ink); }
.hero-trust svg { color: var(--forest); flex-shrink: 0; }
.hero-media { position: relative; border-radius: 20px 20px 20px 120px; overflow: hidden; box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; left: 1.4rem; bottom: 1.4rem; background: rgba(251,250,245,0.92); backdrop-filter: blur(8px); border-radius: 14px; padding: 1rem 1.2rem; display: flex; align-items: center; gap: 0.8rem; box-shadow: var(--shadow-sm); max-width: 78%; }
.hero-badge .hb-ic { width: 38px; height: 38px; border-radius: 50%; background: var(--forest); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge .hb-t { font-size: 0.9rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.hero-badge .hb-s { font-size: 0.72rem; color: var(--muted); margin-top: 0.1rem; }

/* ---------- Logos / trust strip ---------- */
.strip { border-block: 1px solid var(--sage); background: var(--cream); }
.strip .container { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1.2rem 2rem; padding-block: 1.5rem; }
.strip-item { display: flex; align-items: center; gap: 0.7rem; font-size: 0.82rem; font-weight: 600; color: var(--ink); flex: 1 1 auto; justify-content: center; }
.strip-item svg { color: var(--forest); flex-shrink: 0; }

/* ---------- Media reveal ---------- */
.media-reveal { position: relative; overflow: hidden; }
.media-reveal img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.2); transition: transform 1.4s var(--ease); }
.media-reveal::after { content: ""; position: absolute; inset: 0; background: var(--forest-tint); transform: translateY(0); transition: transform 1s var(--ease); z-index: 2; }
.media-reveal.in img { transform: scale(1); }
.media-reveal.in::after { transform: translateY(-101%); }
.ar-45 { aspect-ratio: 4/5; } .ar-11 { aspect-ratio: 1/1; } .ar-32 { aspect-ratio: 3/2; } .ar-34 { aspect-ratio: 3/4; }
.round { border-radius: 18px; }
.round-lg { border-radius: 24px; }

/* ---------- Split rows ---------- */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split-row.rev .sr-media { order: 2; }
.sr-media { position: relative; }
.sr-body .kicker { margin-bottom: 1.5rem; }
.sr-body h2 { margin-bottom: 1.3rem; }
.sr-body .lead { margin-bottom: 1.3rem; }
.sr-badge { position: absolute; background: var(--white); border-radius: 16px; padding: 1.2rem 1.5rem; box-shadow: var(--shadow); }
.sr-badge .n { font-size: 2.1rem; font-weight: 800; color: var(--forest); line-height: 1; letter-spacing: -0.03em; }
.sr-badge .l { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.4rem; }

/* ---------- Treatment cards ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.3rem, 2.4vw, 2rem); }
.tcard { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s; display: flex; flex-direction: column; }
.tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.tcard-media { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.tcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.tcard:hover .tcard-media img { transform: scale(1.07); }
.tcard-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(251,250,245,0.92); backdrop-filter: blur(6px); color: var(--forest); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4em 0.8em; border-radius: 100px; }
.tcard-body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.tcard-body h3 { margin-bottom: 0.5rem; }
.tcard-body p { font-size: 0.94rem; margin-bottom: 1.3rem; color: var(--body); }
.tcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--sage); }
.tcard-price { font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.02em; }
.tcard-price span { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); display: block; }
.tcard-arrow { width: 40px; height: 40px; border-radius: 50%; background: var(--forest-tint); color: var(--forest); display: flex; align-items: center; justify-content: center; transition: all 0.35s var(--ease); }
.tcard:hover .tcard-arrow { background: var(--forest); color: #fff; }

/* ---------- Steps / journey ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); }
.step { position: relative; }
.step .s-ic { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 1px solid var(--sage); display: flex; align-items: center; justify-content: center; color: var(--forest); margin-bottom: 1.3rem; }
.bg-forest .step .s-ic, .bg-ink .step .s-ic { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #fff; }
.step .s-n { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; color: var(--forest); margin-bottom: 0.5rem; }
.bg-forest .step .s-n, .bg-ink .step .s-n { color: var(--forest-tint); }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.92rem; margin: 0; }
.bg-forest .step p, .bg-ink .step p { color: rgba(255,255,255,0.7); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat .s-num { font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.stat .s-num .forest { color: var(--forest); }
.stat .s-lab { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.7rem; }

/* ---------- Testimonials ---------- */
.quotes { position: relative; max-width: 920px; margin-inline: auto; text-align: center; min-height: 240px; }
.quote { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s var(--ease); pointer-events: none; }
.quote.active { opacity: 1; position: relative; pointer-events: auto; }
.quote .stars { color: var(--gold); letter-spacing: 0.2em; margin-bottom: 1.2rem; font-size: 0.9rem; }
.quote p { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 2.7vw, 2.1rem); line-height: 1.4; color: var(--ink); }
.quote .who { margin-top: 1.5rem; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-family: var(--sans); font-style: normal; }
.qdots { display: flex; gap: 0.6rem; justify-content: center; margin-top: 2.4rem; }
.qdot { width: 8px; height: 8px; border-radius: 50%; background: var(--sage-2); transition: all 0.3s; }
.qdot.active { background: var(--forest); transform: scale(1.3); }
.qnote { text-align: center; font-size: 0.76rem; color: var(--muted); margin-top: 2rem; font-style: italic; }

/* ---------- Treatment detail blocks ---------- */
.tblock { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; padding-block: clamp(2.5rem, 5vw, 4.5rem); }
.tblock:not(:last-child) { border-bottom: 1px solid var(--sage); }
.tblock.rev .tb-media { order: 2; }
.tb-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.tb-body .kicker { margin-bottom: 1.1rem; }
.tb-body h2 { margin-bottom: 1.1rem; }
.tb-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 1.5rem; margin: 1.6rem 0; }
.tb-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; color: var(--ink); }
.tb-list svg { color: var(--forest); flex-shrink: 0; margin-top: 0.3em; }
.tb-meta { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--sage); }
.tb-price { font-size: 1.8rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.tb-price small { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); display: block; }

/* ---------- Pricing ---------- */
.pgroup { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.pgroup-h { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.2rem; padding-bottom: 0.9rem; border-bottom: 2px solid var(--ink); }
.pgroup-h h3 { font-size: 1.5rem; }
.pgroup-h .tag { margin-left: auto; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); font-weight: 700; }
.prow { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: baseline; padding: 1rem 0.4rem; border-bottom: 1px solid var(--sage); transition: background 0.25s, padding 0.25s; }
.prow:hover { background: var(--cream); padding-inline: 1rem; border-radius: 8px; }
.prow .p-name { color: var(--ink); font-size: 1rem; font-weight: 500; }
.prow .p-name .p-d { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.15rem; font-weight: 400; }
.prow .p-price { font-weight: 800; font-size: 1.25rem; color: var(--ink); white-space: nowrap; letter-spacing: -0.02em; }
.prow .p-price small { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-right: 0.3rem; }
.pnote { background: var(--forest-tint); border-radius: 14px; padding: 1.5rem 1.8rem; font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.faqs { border-top: 1px solid var(--sage); }
.faq { border-bottom: 1px solid var(--sage); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.6rem 0.2rem; font-family: var(--sans); font-weight: 700; font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: var(--ink); transition: color 0.3s; letter-spacing: -0.01em; }
.faq-q:hover { color: var(--forest); }
.faq-ic { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-ic::before, .faq-ic::after { content: ""; position: absolute; background: var(--forest); transition: transform 0.4s var(--ease); }
.faq-ic::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); border-radius: 2px; }
.faq-ic::after { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); border-radius: 2px; }
.faq.open .faq-ic::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a-in { padding: 0 0.2rem 1.6rem; max-width: 820px; color: var(--body); }
.faq-a-in p:last-child { margin-bottom: 0; }

/* ---------- Page hero ---------- */
.phero { background: var(--forest-tint); position: relative; overflow: hidden; }
.phero .container { position: relative; z-index: 2; padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }
.phero .kicker { margin-bottom: 1.2rem; }
.phero h1 { margin-bottom: 1rem; max-width: 16ch; }
.phero p { color: var(--body); max-width: 620px; font-size: 1.1rem; }
.crumb { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.3rem; }
.crumb a:hover { color: var(--forest); }
.phero-deco { position: absolute; top: -20%; right: -6%; width: 40%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(47,91,76,0.1), transparent 70%); z-index: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.iblock { display: flex; gap: 1.1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--sage); }
.iblock:first-of-type { padding-top: 0; }
.iic { width: 46px; height: 46px; border-radius: 50%; background: var(--forest-tint); display: flex; align-items: center; justify-content: center; color: var(--forest); flex-shrink: 0; }
.iblock h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; }
.iblock p, .iblock a { color: var(--ink); font-size: 1.02rem; line-height: 1.5; }
.iblock a:hover { color: var(--forest); }
.form-card { background: var(--white); border-radius: 20px; padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm); }
.form-card h3 { margin-bottom: 0.4rem; }
.form-card > p { font-size: 0.95rem; margin-bottom: 1.7rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.45rem; }
.field label .req { color: var(--forest); }
.field input, .field select, .field textarea { width: 100%; padding: 0.9rem 1rem; font-family: var(--sans); font-size: 0.95rem; color: var(--ink); background: var(--paper); border: 1px solid var(--sage); border-radius: 10px; transition: border-color 0.3s, box-shadow 0.3s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(47,91,76,0.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232F5B4C' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.consent { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.82rem; color: var(--body); margin-bottom: 1.4rem; }
.consent input { width: 18px; height: 18px; margin-top: 0.15rem; accent-color: var(--forest); flex-shrink: 0; }
.form-ok { display: none; text-align: center; padding: 2rem 1rem; }
.form-ok.show { display: block; animation: fadeUp 0.6s var(--ease); }
.form-ok .ck { width: 62px; height: 62px; border-radius: 50%; background: var(--forest-tint); color: var(--forest); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.2rem; }
.form-note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 1rem; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.map-embed { margin-top: 2.4rem; border-radius: 16px; overflow: hidden; border: 1px solid var(--sage); }
.map-ph { aspect-ratio: 21/9; background: var(--forest-tint); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem; text-align: center; color: var(--body); padding: 2rem; }
.map-ph svg { color: var(--forest); }
.map-ph .a { font-weight: 700; font-size: 1.15rem; color: var(--ink); }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; }
.cta-inner { position: relative; border-radius: 28px; overflow: hidden; background: var(--forest); color: rgba(255,255,255,0.85); }
.cta-bg { position: absolute; inset: 0; z-index: 0; opacity: 0.22; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-inner::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, var(--forest-deep), rgba(34,70,58,0.7)); }
.cta-content { position: relative; z-index: 2; padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 5vw, 4rem); text-align: center; }
.cta-content .kicker { color: var(--forest-tint); justify-content: center; margin-bottom: 1.3rem; }
.cta-content .kicker::before, .cta-content .kicker::after { background: var(--forest-tint); }
.cta-content h2 { color: #fff; margin-bottom: 1rem; max-width: 720px; margin-inline: auto; }
.cta-content p { color: rgba(255,255,255,0.85); max-width: 540px; margin-inline: auto; margin-bottom: 2.2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(246,244,238,0.6); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand-name { color: #fff; font-size: 1.6rem; }
.footer .brand-sub { color: var(--forest-tint); }
.footer-top p.f-blurb { margin-top: 1.3rem; font-size: 0.9rem; max-width: 320px; color: rgba(246,244,238,0.5); }
.fcol h4 { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin-bottom: 1.3rem; }
.fcol ul { display: grid; gap: 0.7rem; }
.fcol a, .fcol li { font-size: 0.9rem; color: rgba(246,244,238,0.55); transition: color 0.3s; }
.fcol a:hover { color: var(--forest-tint); }
.fcon li { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.8rem; }
.fcon svg { color: var(--forest-tint); flex-shrink: 0; margin-top: 0.25em; }
.social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.16); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(246,244,238,0.7); transition: all 0.35s var(--ease); }
.social a:hover { background: var(--forest); border-color: var(--forest); color: #fff; transform: translateY(-3px); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-block: 1.8rem; font-size: 0.78rem; color: rgba(246,244,238,0.42); }
.footer-bot a:hover { color: var(--forest-tint); }
.f-disc { padding-bottom: 2.5rem; }
.f-disc p { font-size: 0.72rem; line-height: 1.6; color: rgba(246,244,238,0.32); max-width: 940px; }

/* ---------- Sticky book bar ---------- */
.bookbar { position: fixed; left: 50%; bottom: 1.4rem; transform: translate(-50%, 160%); z-index: 80; display: flex; align-items: center; gap: 1.3rem; background: var(--white); padding: 0.6rem 0.6rem 0.6rem 1.6rem; border-radius: 100px; box-shadow: var(--shadow); transition: transform 0.55s var(--ease); border: 1px solid var(--sage); max-width: calc(100vw - 2rem); }
.bookbar.show { transform: translate(-50%, 0); }
.bookbar .bb-t { font-size: 0.86rem; font-weight: 600; color: var(--ink); white-space: nowrap; }
@media (max-width: 620px) { .bookbar .bb-t { display: none; } .bookbar { left: auto; right: 1rem; transform: translate(0,160%); padding: 0.5rem; } .bookbar.show { transform: translate(0,0); } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1{transition-delay:.08s}.d2{transition-delay:.16s}.d3{transition-delay:.24s}.d4{transition-delay:.32s}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .footer-brand-col { grid-column: 1 / -1; }
  .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .tcards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav-links, .nav-right .nav-phone, .nav-right .desktop-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links { position: fixed; inset: 0; height: 100vh; height: 100dvh; flex-direction: column; justify-content: center; align-items: center; gap: 1.7rem; overflow-y: auto; background: var(--paper); padding: 5rem 2rem 2rem; transform: translateX(100%); transition: transform 0.5s var(--ease); z-index: 92; }
  .nav-open .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.7rem; font-weight: 700; }
  .nav-links a::after { display: none; }
  .nav-links .m-only { display: block; margin-top: 1rem; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: clamp(2rem,6vw,3rem) 0; order: 2; }
  .hero-media { order: 1; min-height: 56vh; border-radius: 18px; }
  .split-row, .tblock, .contact-grid { grid-template-columns: 1fr; }
  .split-row.rev .sr-media, .tblock.rev .tb-media { order: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .g2, .g3, .g4, .tcards, .steps, .stats, .tb-list { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; gap: 0; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .prow { grid-template-columns: 1fr; gap: 0.3rem; }
  .prow .p-price { justify-self: start; }
  .sr-badge { display: none; }
  .hero-media { border-radius: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .media-reveal img { opacity: 1 !important; transform: none !important; }
  .media-reveal::after { display: none; }
}
