/* main.css — base + components. Implements docs/DESIGN.md using tokens.css.
   Aesthetic: springs.estate-style quiet luxury — Birthstone script on blush,
   gradient-green dark sections, clip-path wipe gallery, slow GSAP motion. */

/* ============ BASE ============ */
body {
  font-family: var(--body);
  background: var(--linen);
  color: var(--ink);
  font-size: 1.05rem; letter-spacing: .012em; font-weight: 300; line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.06; letter-spacing: 0; text-wrap: balance; }
p { text-wrap: pretty; }
/* Birthstone has no italic master — never faux-slant it; em is a colour accent only. */
h1 em, h2 em, h3 em { font-style: normal; }

::selection { background: var(--beeswax); color: var(--ink); }
:focus-visible { outline: 2px solid var(--beeswax-deep); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: 1240px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: clamp(5rem, 11vw, 9rem); padding-bottom: clamp(5rem, 11vw, 9rem); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: var(--pad); top: .6rem; z-index: 100;
  background: var(--beeswax); color: var(--ink); padding: .6rem 1rem; border-radius: 2px;
  transform: translateY(-150%); transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* small caps utility label — used sparingly */
.tag {
  font-size: .72rem; font-weight: 500; letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============ TEXT-CLIP HOVER (the signature micro-interaction) ============ */
.flip { position: relative; display: inline-block; overflow: hidden; vertical-align: bottom; }
.flip > span { display: block; transition: transform .45s var(--ease); }
.flip > span::after { content: attr(data-text); position: absolute; left: 0; top: 100%; width: 100%; }
.flip:hover > span, a:hover > .flip > span, button:hover > .flip > span { transform: translateY(-100%); }

/* arrow link */
.arrow-link { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; }
.arrow-link svg { transition: transform .35s var(--ease); }
.arrow-link:hover svg { transform: translateX(5px); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1.05rem 2rem; border-radius: 2px;
  font-weight: 500; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  will-change: transform;
}
.btn-gold { background: var(--beeswax); color: var(--ink); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(162,133,79,.55); }
.btn-ink { background: var(--ink); color: var(--linen); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(21,37,30,.6); }
.btn-ghost { border: 1px solid var(--line); background: transparent; }
.btn-ghost:hover { background: rgba(21,37,30,.05); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; color: var(--linen);
  transition: background .4s ease, box-shadow .4s ease, transform .45s var(--ease), color .4s ease;
}
.nav .nav-links a { color: rgba(240,235,226,.85); }
.nav .nav-links a:hover { color: var(--linen); }
.nav .nav-burger span { background: var(--linen); }
.nav.scrolled { background: radial-gradient(120% 220% at 90% 100%, rgba(16,62,66,.55) 0%, transparent 60%), radial-gradient(100% 220% at 10% 0%, rgba(58,88,48,.32) 0%, transparent 55%), var(--ink); box-shadow: 0 1px 0 rgba(240,235,226,.12); color: var(--linen); }
.nav.scrolled .nav-links a { color: rgba(240,235,226,.85); }
.nav.scrolled .nav-links a:hover { color: var(--linen); }
.nav.scrolled .nav-burger span { background: var(--linen); }
.nav.hidden { transform: translateY(-110%); }
/* Inner pages have no full-bleed dark hero behind a transparent nav — start solid. */
.nav--solid { background: rgba(240,235,226,.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); color: var(--ink); }
.nav--solid .nav-links a { color: var(--ink-soft); }
.nav--solid .nav-links a:hover { color: var(--ink); }
.nav--solid .nav-burger span { background: var(--ink); }
.nav-inner {
  max-width: 1920px; margin: 0 auto; padding: 1.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.brand { font-family: var(--display); font-size: 2rem; line-height: 1; display: flex; align-items: center; gap: .45rem; }
.brand svg { width: 17px; height: 17px; }
.brand-logo { height: 1.7rem; width: auto; display: block; }
.brand-logo--dark { display: none; }
/* nav stays dark (transparent at top, dark gradient when scrolled) — white logo throughout.
   The green lockup is kept for the light .nav--solid state (currently unused). */
.nav--solid .brand-logo--light { display: none; }
.nav--solid .brand-logo--dark { display: block; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; font-size: 1.1rem; font-weight: 400; }
.nav-links a[aria-current="page"] { color: var(--beeswax-deep); }
.nav .btn { padding: .75rem 1.4rem; font-size: .72rem; }
.nav-burger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; padding: .5rem; min-width: 44px; min-height: 44px; }
.nav-burger span { display: block; width: 22px; height: 2px; transition: .3s var(--ease); }

/* mobile menu */
.m-menu {
  position: fixed; inset: 0; z-index: 49; background: var(--linen);
  display: flex; flex-direction: column; justify-content: center; padding: var(--pad);
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
.m-menu.open { opacity: 1; pointer-events: auto; }
.m-menu a { font-family: var(--body); font-size: 1.5rem; font-weight: 400; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.m-menu .btn { margin-top: 2rem; align-self: flex-start; }

/* nav while the mobile menu is open: linen bar that merges into the menu,
   dark logo + a visible dark X (the burger morphs), whatever the scroll state */
.nav.menu-open { background: var(--linen); box-shadow: none; }
.nav.menu-open .brand-logo--light { display: none; }
.nav.menu-open .brand-logo--dark { display: block; }
.nav.menu-open .nav-burger span { background: var(--ink); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO (homepage, full height) ============ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--ink); overflow: hidden;
  background: var(--linen);
}
.hero-media { position: absolute; inset: 0; }
.hero-media .mask { position: absolute; inset: 0; clip-path: inset(0 0 100% 0); }
.hero-media img { width: 100%; height: 115%; object-fit: cover; transform: scale(1.08); }

.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(2.5rem, 6vh, 5rem); }
.hero-loc {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .72rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(21,37,30,.65); margin-bottom: 1.4rem;
}
.hero-loc::before { content: ""; width: 26px; height: 1px; background: var(--beeswax); }
.hero h1 { font-size: clamp(2.9rem, 7.2vw, 6.8rem); font-weight: 400; max-width: none; margin-bottom: 1.2rem; line-height: 1.06; }
/* Reveal masks need descender room so swash tails aren't clipped on load. */
.hero h1 .line { display: block; overflow: hidden; padding-bottom: .14em; margin-bottom: -.14em; padding-right: .1em; }
.hero h1 .line > span { display: block; }
.hero h1 em { font-style: italic; color: var(--beeswax); }
.hero-glass { background: rgba(240,235,226,.55); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border-radius: 4px; padding: clamp(1.4rem, 2.8vw, 2rem); display: inline-block; max-width: 580px; }
.hero-sub { font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.4; font-weight: 300; color: var(--ink-soft); margin-bottom: .7rem; }
.hero-small { font-size: .75rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(21,37,30,.55); margin-bottom: 2.4rem; }
.hero-form {
  display: flex; gap: .6rem;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(21,37,30,.18); border-radius: 3px; padding: .45rem;
}
.hero-form input { flex: 1; min-width: 0; background: transparent; border: none; color: var(--ink); padding: .6rem 1.1rem; font-size: 1rem; }
.hero-form input::placeholder { color: rgba(21,37,30,.4); }
.hero-form input:focus { outline: none; }
.hero-coverage { font-size: .8rem; color: rgba(21,37,30,.6); margin-top: .9rem; letter-spacing: .02em; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .6rem 2rem; margin-top: 2rem; font-size: .82rem; font-weight: 500; color: rgba(21,37,30,.7); }
.hero-trust span { display: flex; align-items: center; gap: .5rem; }
.hero-trust svg { flex: none; }
.hero-scroll {
  position: absolute; right: var(--pad); bottom: clamp(2.5rem, 6vh, 5rem); z-index: 2;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(21,37,30,.55); writing-mode: vertical-rl; display: flex; align-items: center; gap: .8rem;
}
.hero-scroll::after { content: ""; width: 1px; height: 48px; background: rgba(21,37,30,.3); animation: drip 2.2s var(--ease) infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============ PAGE HERO (inner pages — shorter dark band) ============ */
.page-hero {
  position: relative; color: var(--linen); overflow: hidden;
  padding: clamp(8rem, 16vh, 11rem) 0 clamp(3.5rem, 8vw, 6rem);
  background: radial-gradient(110% 90% at 78% 0%, #2A4434 0%, transparent 55%), radial-gradient(90% 80% at 0% 100%, #103A3C 0%, transparent 60%), var(--ink);
}
.page-hero .hero-loc { color: rgba(240,235,226,.85); }
.page-hero h1 { font-size: clamp(3.2rem, 7vw, 6rem); margin-bottom: 1.1rem; }
.page-hero p { color: rgba(240,235,226,.8); max-width: 52ch; font-size: clamp(1.05rem, 1.6vw, 1.3rem); font-weight: 300; }
.page-hero .hero-form { margin-top: 2.2rem; }
.page-hero .hero-coverage { margin-top: 1.1rem; font-size: .8rem; }

/* ============ PROMISE ============ */
.promise .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(3rem, 6vw, 6rem); align-items: start; }
.promise h2 { font-size: clamp(2.4rem, 4.4vw, 3.9rem); max-width: 15ch; font-weight: 300; }
.promise h2 em { font-style: italic; color: var(--beeswax-deep); }
.promise-body p { color: var(--ink-soft); margin-bottom: 1.2rem; max-width: 52ch; }
.promise-body p strong { color: var(--ink); font-weight: 600; }
.promise-stats {
  grid-column: 1 / -1;   /* span both columns of .promise .wrap */
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: clamp(3.5rem, 7vw, 6rem);
}
.stat { background: var(--linen); padding: 2rem 1.5rem 2.2rem; }
.stat b { display: block; font-family: var(--display); font-weight: 300; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; margin-bottom: .6rem; }
.stat span { font-size: .85rem; color: var(--ink-soft); max-width: 22ch; display: block; }

/* ============ WIPE GALLERY ============ */
.gallery { color: var(--linen);
  background: radial-gradient(95% 60% at 80% 0%, rgba(96,124,58,.4) 0%, transparent 58%), radial-gradient(85% 65% at 5% 100%, rgba(16,66,70,.55) 0%, transparent 60%), var(--ink); }
.gallery-head { max-width: 1240px; margin: 0 auto; padding: clamp(5rem, 10vw, 8rem) var(--pad) clamp(3rem, 6vw, 5rem); }
.gallery-head h2 { font-size: clamp(3.4rem, 6.6vw, 6rem); max-width: 16ch; }
.gallery-head p { color: rgba(240,235,226,.7); max-width: 46ch; margin-top: 1.2rem; }
.panel { position: relative; height: 92svh; min-height: 540px; margin: 0 auto clamp(4rem, 9vw, 8rem); width: min(1240px, calc(100% - var(--pad) * 2)); }
.panel-mask { position: absolute; inset: 0; overflow: hidden; border-radius: 3px; clip-path: inset(4% 38% 4% 0); }
.panel-mask img { width: 100%; height: 120%; object-fit: cover; }
.panel-cap { position: absolute; z-index: 4; bottom: 0; left: 0; width: min(400px, 52%); background: var(--ink); padding: clamp(1.4rem, 2.8vw, 2rem) clamp(1.6rem, 3.2vw, 2.4rem); }
.panel-cap h3 { font-size: clamp(2.4rem, 4vw, 3.6rem); margin-bottom: .4rem; }
.panel-cap p { color: rgba(240,235,226,.78); font-size: .98rem; }
.panel-cap .panel-num { font-size: .7rem; letter-spacing: .26em; font-weight: 500; color: var(--beeswax); display: block; margin-bottom: .9rem; text-transform: uppercase; }
.panel:nth-child(odd) .panel-cap { left: auto; right: 0; text-align: right; }
.panel:last-child .panel-cap { background: #123532; }

/* ============ PRICING ============ */
.pricing h2 { font-size: clamp(2.9rem, 5.4vw, 4.6rem); max-width: 16ch; }
.pricing-intro { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); flex-wrap: wrap; }
.pricing-intro p { color: var(--ink-soft); max-width: 42ch; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 3px;
  padding: 2.4rem 2.2rem 2.2rem; display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -30px rgba(21,37,30,.3); }
.card.featured { color: var(--linen); border-color: var(--ink);
  background: radial-gradient(120% 90% at 80% 0%, #28422F 0%, transparent 60%), radial-gradient(100% 80% at 0% 100%, #0F3236 0%, transparent 62%), var(--ink); }
.card.featured .card-meta li { color: rgba(240,235,226,.75); border-color: var(--line-light); }
.card.featured .card-desc { color: rgba(240,235,226,.75); }
.card h3 { font-size: 2.1rem; margin-bottom: .5rem; line-height: 1; }
.card-desc { font-size: .95rem; color: var(--ink-soft); margin-bottom: 1.5rem; }
.card-meta { list-style: none; margin-bottom: 1.8rem; }
.card-meta li { font-size: .85rem; font-weight: 500; color: var(--ink-soft); padding: .55rem 0; border-top: 1px solid var(--line); display: flex; align-items: center; gap: .6rem; }
.card-meta li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--beeswax); flex: none; }
.card-price { margin-top: auto; display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.4rem; }
.card-price small { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; opacity: .65; }
.card-price b { font-family: var(--display); font-weight: 400; font-size: 3.4rem; line-height: .8; }
.card-price i { font-style: normal; font-size: .9rem; opacity: .65; }
.card .btn { width: 100%; }
.pricing-foot { margin-top: 2.6rem; font-size: .85rem; color: var(--ink-soft); text-align: center; }
.pricing-foot a { font-weight: 600; color: var(--ink); }
/* On the dark FAQ band the "All questions" link sits on green — keep it light. */
.faq .pricing-foot { color: rgba(240,235,226,.7); }
.faq .pricing-foot a { color: var(--linen); }

/* ============ HOW IT WORKS ============ */
.how { position: relative; color: var(--linen); overflow: hidden;
  background: radial-gradient(100% 80% at 80% 0%, #27412F 0%, transparent 55%), var(--ink); }
.how-bg { position: absolute; inset: 0; }
.how-bg img { width: 100%; height: 115%; object-fit: cover; }
.how-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(13,23,18,.93) 0%, rgba(15,33,28,.74) 45%, rgba(13,42,44,.5) 100%); }
.how .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 7vw, 7rem); align-items: start; }
.how-intro { position: sticky; top: 18vh; }
.how-label { display: inline-flex; align-items: center; gap: .7rem; font-size: .72rem; font-weight: 400; letter-spacing: .3em; text-transform: uppercase; color: rgba(240,235,226,.75); margin-bottom: 1.6rem; }
.how-label::before { content: ""; width: 32px; height: 1px; background: var(--beeswax); }
.how h2 { font-size: clamp(3rem, 5.4vw, 4.8rem); margin-bottom: 1.2rem; max-width: 16ch; }
.how-intro p { color: rgba(240,235,226,.75); max-width: 42ch; font-size: .98rem; }
.steps { display: flex; flex-direction: column; gap: 1.6rem; }
.step { background: var(--linen); color: var(--ink); border-radius: 3px; padding: clamp(2rem, 3.5vw, 2.8rem); display: flex; flex-direction: column; min-height: 280px; transition: transform .45s var(--ease), box-shadow .45s var(--ease); }
.step:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.55); }
.step-num { font-family: var(--body); font-size: 2.6rem; font-weight: 400; color: var(--beeswax-deep); display: block; line-height: 1; }
.step h3 { font-size: clamp(2rem, 2.8vw, 2.5rem); margin: auto 0 .5rem; padding-top: 3rem; line-height: 1; }
.step p { font-size: .93rem; color: var(--ink-soft); }

/* ============ FOUNDER / PROOF & inner-page split rows ============ */
.proof .wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.proof-img { position: relative; border-radius: 3px; overflow: hidden; aspect-ratio: 4/5; }
.proof-img img { width: 100%; height: 115%; object-fit: cover; }
.proof h2 { font-size: clamp(2.8rem, 4.8vw, 4.2rem); margin-bottom: 1.2rem; max-width: 16ch; }
.proof p { color: var(--ink-soft); margin-bottom: 1.2rem; max-width: 54ch; }
.proof blockquote { border-left: 2px solid var(--beeswax); padding-left: 1.4rem; margin: 1.8rem 0; font-family: var(--body); font-weight: 300; font-size: 1.15rem; line-height: 1.6; color: var(--ink); }
.proof cite { display: block; font-family: var(--body); font-style: normal; font-size: .88rem; color: var(--ink-soft); margin-top: .8rem; }

/* Inner-page service rows — alternating image/copy, blush + dark bands */
.svc-row { padding-top: clamp(4rem, 9vw, 7rem); padding-bottom: clamp(4rem, 9vw, 7rem); }
.svc-row .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.svc-row--dark { color: var(--linen);
  background: radial-gradient(100% 80% at 85% 0%, rgba(74,104,56,.38) 0%, transparent 56%), radial-gradient(90% 70% at 0% 100%, rgba(16,58,64,.5) 0%, transparent 60%), var(--ink); }
.svc-row__media { position: relative; border-radius: 3px; overflow: hidden; aspect-ratio: 4/3; }
.svc-row__media img { width: 100%; height: 115%; object-fit: cover; }
.svc-row:nth-of-type(even) .svc-row__media { order: 2; }
.svc-row__num { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 500; color: var(--beeswax-deep); display: block; margin-bottom: 1rem; }
.svc-row--dark .svc-row__num { color: var(--beeswax); }
.svc-row h2 { font-size: clamp(2.6rem, 4.6vw, 4rem); margin-bottom: 1rem; }
.svc-row__copy > p { color: var(--ink-soft); max-width: 50ch; margin-bottom: 1.4rem; }
.svc-row--dark .svc-row__copy > p { color: rgba(240,235,226,.78); }
.svc-incl { list-style: none; margin: 0 0 1.6rem; }
.svc-incl li { font-size: .9rem; font-weight: 500; color: var(--ink-soft); padding: .55rem 0; border-top: 1px solid var(--line); display: flex; align-items: center; gap: .65rem; }
.svc-incl li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--beeswax); flex: none; }
.svc-row--dark .svc-incl li { color: rgba(240,235,226,.78); border-color: var(--line-light); }
.svc-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: 1.6rem; }
.svc-price small { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; opacity: .65; }
.svc-price b { font-family: var(--display); font-weight: 400; font-size: 3rem; line-height: .8; }
.svc-price i { font-style: normal; font-size: .9rem; opacity: .65; }

/* ============ FAQ ============ */
.faq { color: var(--linen);
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(5rem, 11vw, 9rem);
  background: radial-gradient(90% 70% at 85% 10%, rgba(74,104,56,.42) 0%, transparent 55%), radial-gradient(95% 75% at 0% 100%, rgba(14,58,64,.55) 0%, transparent 62%), var(--ink); }
.faq .wrap { max-width: 880px; }
.faq h2 { font-size: clamp(2.9rem, 5.4vw, 4.4rem); margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.faq-item { border-top: 1px solid var(--line-light); }
.faq-item:last-of-type { border-bottom: 1px solid var(--line-light); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; padding: 1.6rem 0; text-align: left; font-size: 1.12rem; font-weight: 500; color: var(--linen); }
.faq-q .x { flex: none; width: 30px; height: 30px; border: 1px solid var(--line-light); border-radius: 50%; position: relative; transition: transform .4s var(--ease), background .4s ease; }
.faq-q .x::before, .faq-q .x::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--linen); transform: translate(-50%, -50%); transition: .3s; }
.faq-q .x::before { width: 11px; height: 1.5px; }
.faq-q .x::after { width: 1.5px; height: 11px; }
.faq-item.open .faq-q .x { transform: rotate(135deg); background: var(--beeswax); border-color: var(--beeswax); }
.faq-item.open .faq-q .x::before, .faq-item.open .faq-q .x::after { background: var(--ink); }
/* Collapse only when JS is present, so answers are readable with JS off. */
.js .faq-a { height: 0; overflow: hidden; }
.faq-a p { padding: 0 0 1.8rem; color: rgba(240,235,226,.72); max-width: 60ch; }
/* Group label between question sets on the FAQs page */
.faq-group {
  font-family: var(--body); font-size: .72rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--beeswax);
  margin: clamp(2.6rem, 5vw, 3.6rem) 0 .4rem;
}
.faq-group--first { margin-top: 0; }

/* ============ QUOTE FORM ============ */
.quote { background: var(--linen-deep); }
.quote .wrap { max-width: 880px; text-align: center; }
.quote h2 { font-size: clamp(3rem, 5.8vw, 4.8rem); margin-bottom: .7rem; }
.quote-sub { color: var(--ink-soft); margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.qform { background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: clamp(1.8rem, 4vw, 3rem); text-align: left; box-shadow: 0 40px 80px -50px rgba(21,37,30,.25); }
.q-progress { display: flex; gap: .5rem; margin-bottom: 2rem; }
.q-progress i { flex: 1; height: 3px; border-radius: 3px; background: var(--line); transition: background .4s; }
.q-progress i.on { background: var(--beeswax); }
.q-step { display: none; }
.q-step.active { display: block; }
.q-step h3 { font-size: 2.2rem; margin-bottom: 1.2rem; }
.q-field { margin-bottom: 1.3rem; }
.q-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .45rem; }
.q-field input, .q-field select { width: 100%; padding: .95rem 1.1rem; border: 1px solid var(--line); border-radius: 3px; background: var(--surface-in); transition: border-color .3s; }
.q-field input:focus, .q-field select:focus { outline: none; border-color: var(--beeswax-deep); }
.q-field small { display: block; font-size: .8rem; color: var(--ink-soft); margin-top: .4rem; }
.q-opt { font-weight: 400; color: var(--ink-soft); text-transform: none; letter-spacing: 0; }
/* Honeypot: kept in the DOM and off-screen (not display:none, so bots fill it). */
.q-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn[disabled] { opacity: .6; pointer-events: none; }
.q-pills { display: flex; flex-wrap: wrap; gap: .6rem; }
.q-pill { padding: .7rem 1.3rem; border: 1px solid var(--line); border-radius: 2px; font-size: .8rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: .3s; }
.q-pill:hover { border-color: var(--ink); }
.q-pill.sel { background: var(--ink); color: var(--linen); border-color: var(--ink); }
.q-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.q-consent { font-size: .8rem; color: var(--ink-soft); margin-top: .2rem; }
.q-consent a { color: var(--ink); border-bottom: 1px solid var(--beeswax); }
.q-consent a:hover { color: var(--beeswax-deep); }
.q-error { color: var(--error); font-size: .85rem; margin-top: .8rem; display: none; }
.q-done { text-align: center; padding: 2rem 0; display: none; }
.q-done svg { margin: 0 auto 1.4rem; }
.q-done h3 { font-size: 2.4rem; margin-bottom: .5rem; }
.q-done p { color: var(--ink-soft); max-width: 40ch; margin: 0 auto; }

/* ============ AREAS ============ */
.areas { text-align: center; }
.areas h2 { font-size: clamp(2.6rem, 4.6vw, 3.8rem); margin-bottom: 2rem; }
.areas-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 1rem; max-width: 760px; margin: 0 auto; }
.areas-list span { font-size: .82rem; font-weight: 400; letter-spacing: .08em; color: var(--ink-soft); padding: .55rem 1.2rem; border: 1px solid var(--line); border-radius: 2px; transition: .3s; }
.areas-list span:hover { border-color: var(--beeswax-deep); color: var(--ink); }

/* ============ AREAS PAGE — postcode checker + coverage grid ============ */
/* live coverage result line inside the dark page-hero (reuses .hero-coverage) */
.hero-coverage.is-ok { color: var(--beeswax); font-weight: 500; }
.hero-coverage.is-no { color: rgba(240,235,226,.92); font-weight: 400; }

.coverage h2 { font-size: clamp(2.6rem, 4.6vw, 3.9rem); margin-bottom: .8rem; }
.coverage-intro { color: var(--ink-soft); max-width: 48ch; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.area {
  background: var(--surface); border: 1px solid var(--line); border-radius: 3px;
  padding: 1.8rem 1.8rem 1.6rem; transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.area:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(21,37,30,.3); }
.area b { display: block; font-family: var(--display); font-weight: 400; font-size: 2.6rem; line-height: 1; color: var(--ink); margin-bottom: .9rem; }
.area ul { list-style: none; }
.area li { font-size: .92rem; color: var(--ink-soft); padding: .25rem 0; }
.coverage-foot { margin-top: 2.4rem; font-size: .9rem; color: var(--ink-soft); }
.coverage-foot a { font-weight: 600; color: var(--ink); }

/* ============ CONTACT PAGE — reach-us methods ============ */
.contact h2 { font-size: clamp(2.4rem, 4.4vw, 3.6rem); margin-bottom: clamp(2rem, 4vw, 3rem); }
.contact-methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; }
.method {
  background: var(--surface); border: 1px solid var(--line); border-radius: 3px;
  padding: 1.6rem 1.7rem; transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.method:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(21,37,30,.3); }
.method .tag { margin-bottom: .7rem; }
.method a { font-size: 1.15rem; color: var(--ink); transition: color .3s; }
.method a:hover { color: var(--beeswax-deep); }
.method span { font-size: 1rem; line-height: 1.45; color: var(--ink-soft); }

/* ============ LEGAL / LONG-FORM PAGES ============ */
/* Functional sub-headings use the body font (Jost), not script — legal text must scan. */
.legal .wrap { max-width: 820px; }
.legal-updated { font-size: .85rem; color: var(--ink-soft); margin-bottom: clamp(2rem, 4vw, 3rem); }
.legal h2 {
  font-family: var(--body); font-weight: 600; font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--ink); line-height: 1.3; margin: clamp(2.2rem, 4vw, 3rem) 0 .8rem;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-family: var(--body); font-weight: 600; font-size: 1.02rem; color: var(--ink); margin: 1.6rem 0 .5rem; }
.legal p, .legal li { color: var(--ink-soft); max-width: 70ch; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.2rem; }
.legal li { margin-bottom: .4rem; }
.legal a { color: var(--ink); border-bottom: 1px solid var(--beeswax); transition: color .3s; }
.legal a:hover { color: var(--beeswax-deep); }

/* ============ 404 ============ */
.notfound {
  min-height: 88vh; display: flex; align-items: center; text-align: center; color: var(--linen);
  background: radial-gradient(110% 80% at 75% 0%, #2A4434 0%, transparent 55%), radial-gradient(90% 70% at 0% 100%, #103A3C 0%, transparent 60%), var(--ink);
}
.notfound .wrap { max-width: 640px; }
.notfound .hero-loc { color: rgba(240,235,226,.85); justify-content: center; }
.notfound .hero-loc::after { content: ""; width: 26px; height: 1px; background: var(--beeswax); }
.notfound h1 { font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 1rem; }
.notfound p { color: rgba(240,235,226,.8); margin: 0 auto 2rem; max-width: 44ch; }
.notfound .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.notfound .btn-ghost { border-color: var(--line-light); color: var(--linen); }
.notfound .btn-ghost:hover { background: rgba(240,235,226,.08); }

/* ============ FOOTER ============ */
footer { color: var(--linen); padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem;
  background: radial-gradient(100% 90% at 90% 100%, rgba(16,62,66,.5) 0%, transparent 60%), radial-gradient(80% 60% at 10% 0%, rgba(58,88,48,.3) 0%, transparent 55%), var(--ink); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.foot-grid .brand { margin-bottom: 1.1rem; font-size: 2.2rem; }
.foot-grid .brand-logo { height: 2.1rem; }
.foot-grid p { color: rgba(240,235,226,.65); font-size: .95rem; max-width: 34ch; }
.socials { display: flex; gap: .8rem; margin-top: 1.4rem; }
.socials a { width: 38px; height: 38px; border: 1px solid var(--line-light); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: rgba(240,235,226,.8); transition: border-color .35s ease, color .35s ease, transform .35s var(--ease); }
.socials a:hover { border-color: var(--beeswax); color: var(--beeswax); transform: translateY(-2px); }
.foot-grid h4 { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: rgba(240,235,226,.5); margin-bottom: 1.1rem; }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: .6rem; font-size: .95rem; }
.foot-grid li a { color: rgba(240,235,226,.8); }
.foot-grid li a:hover { color: var(--beeswax); }
.foot-bar { border-top: 1px solid var(--line-light); padding-top: 1.8rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(240,235,226,.5); }
.foot-bar a { color: rgba(240,235,226,.7); }

/* ============ REVEAL (scoped to .js so content is visible without JS) ============ */
.js .rv { opacity: 0; transform: translateY(34px); }
.js .hero-glass { opacity: 0; }
@media (prefers-reduced-motion: reduce) {
  .js .rv { opacity: 1 !important; transform: none !important; }
  .hero-media .mask { clip-path: none !important; }
  .panel-mask { clip-path: inset(0) !important; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .promise .wrap, .proof .wrap, .how .wrap, .svc-row .wrap { grid-template-columns: 1fr; }
  .how-intro { position: static; }
  .step { min-height: 0; }
  .step h3 { padding-top: 1.6rem; }
  .cards, .steps { grid-template-columns: 1fr; }
  .svc-row:nth-of-type(even) .svc-row__media { order: 0; }
  .panel { height: 72svh; min-height: 440px; }
  .panel-mask { clip-path: inset(4% 12% 4% 0); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .proof-img { max-width: 480px; }
}
@media (max-width: 640px) {
  .nav .btn-gold { display: none; }
  .hero-form { flex-direction: column; border-radius: 4px; }
  .hero-form input { order: -1; background: rgba(240,235,226,.16); border-radius: 2px; padding: .95rem 1.1rem; }
  .hero-form .btn { width: 100%; }
  .promise-stats { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .panel:nth-child(odd) .panel-cap { left: clamp(1.5rem, 4vw, 3rem); right: auto; text-align: left; }
  .foot-grid { grid-template-columns: 1fr; }
  .q-nav { flex-direction: column-reverse; }
  .q-nav .btn { width: 100%; }
}
