/* Extracted from index.html inline <style> blocks — text/HTML ratio SEO fix, see HANDOFF.md */
:root{
  --ink:#23201B;
  --ink-soft:#4A443B;
  /* Brand dark green, sampled from the Golden Landscaping wordmark/leaf logo.
     Distinct from any semantic "success" green — this is a brand fill colour
     (footer, hero overlay), not a status indicator. */
  --ink-green:#073B1F;
  /* NOTE: the --teal* names are historical (fork from a teal brand). They hold GOLD values. Do not rename - ~700 refs + 100+ generated pages. */
  --teal:#C8912B;
  --teal-deep:#8F6414; /* AA: 5.05 on white, 4.75 on tint */
  --teal-press:#6E4C0F; /* solid-button hover, 7.6 with white text */
  --teal-tint:#FBF3E0;
  --cream:#FAF8F3;
  --cream-2:#F2EEE4;
  --white:#FFFFFF;
  --line:rgba(35,32,27,.13);
  --radius:14px;
  --shadow:0 10px 30px rgba(35,32,27,.10);
  --wrap:1120px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
}
body{
  font-family:'Poppins',system-ui,-apple-system,sans-serif;
  background:var(--cream);
  color:var(--ink);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px}
:focus-visible{outline:3px solid var(--teal);outline-offset:3px;border-radius:4px}

/* ---------- type ---------- */
.eyebrow{
  font-size:13px;font-weight:600;letter-spacing:.22em;text-transform:uppercase;
  color:var(--teal-deep);display:flex;align-items:center;gap:10px;
}
.eyebrow::before{content:"";width:26px;height:2px;background:var(--teal);border-radius:2px}
h1,h2,h3{line-height:1.15;letter-spacing:-.01em}
h1{font-size:clamp(34px,5vw,56px);font-weight:700}
h2{font-size:clamp(26px,3.4vw,38px);font-weight:700;margin:14px 0 12px}
h3{font-size:18px;font-weight:600}
.lede{color:var(--ink-soft);max-width:560px}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:inherit;font-size:16px;font-weight:600;
  padding:14px 26px;border-radius:999px;border:2px solid transparent;
  cursor:pointer;text-decoration:none;min-height:48px;
  transition:background .2s,color .2s,border-color .2s,transform .15s;
  touch-action:manipulation;
}
.btn:active{transform:scale(.985)}
.btn-solid{background:var(--teal-deep);color:#fff}
.btn-solid:hover{background:var(--teal-press)}
.btn-ink{background:var(--ink);color:var(--cream)}
.btn-ink:hover{background:#101716}
.btn-ghost{border-color:var(--ink);color:var(--ink);background:transparent}
.btn-ghost:hover{background:var(--ink);color:var(--cream)}
.btn svg{flex:none}

/* ---------- nav ---------- */
header{
  position:sticky;top:0;z-index:60;
  background:rgba(249,248,243,.92);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
/* On touch / small screens the per-frame backdrop blur makes scrolling stutter
   (and stuttery scroll makes taps get dropped as scroll gestures). Drop it and
   use a near-opaque bar instead — visually almost identical, far smoother. */
@media (hover: none), (max-width: 900px){
  header{ background:rgba(249,248,243,.98); backdrop-filter:none; -webkit-backdrop-filter:none; }
}
.nav{display:flex;align-items:center;justify-content:space-between;height:74px}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.brand img{height:46px;width:auto}
.nav-links{display:flex;gap:30px;list-style:none}
.nav-links a{text-decoration:none;font-size:15px;font-weight:500;color:var(--ink-soft);transition:color .2s}
.nav-links a:hover{color:var(--teal-deep)}
.nav .btn{padding:11px 20px;font-size:15px;min-height:44px}
.show-s{display:none}
@media(max-width:860px){.nav-links{display:none}}
@media(max-width:480px){.nav .btn .hide-s{display:none}.nav .btn .show-s{display:inline}}

/* ---------- hero ---------- */
.hero{padding:64px 0 30px}
.hero-grid{display:grid;grid-template-columns:1.05fr 1fr;gap:56px;align-items:center}
.hero .lede{margin:18px 0 28px;font-size:17px}
.hero-ctas{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:26px}
.chips{display:flex;flex-wrap:wrap;gap:10px 22px;list-style:none}
.chips li{display:flex;align-items:center;gap:8px;font-size:14px;font-weight:500;color:var(--ink-soft)}
.chips svg{flex:none}

.hero-proof{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);background:var(--ink)}
.proof-split{display:grid;grid-template-columns:1fr 1fr}
.proof-half{position:relative;aspect-ratio:414/736;overflow:hidden}
.proof-half img{width:100%;height:100%;object-fit:cover}
.proof-half:first-child{border-right:3px solid var(--teal)}
.stamp{
  position:absolute;top:14px;left:14px;
  font-size:11px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  padding:6px 12px;border-radius:6px;color:var(--cream);background:rgba(35,32,27,.82);
}
.stamp.after{background:var(--teal)}
.proof-cap{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:12px 16px;background:var(--ink);color:var(--cream);font-size:13px;
}
.proof-cap b{font-weight:600}
.proof-cap span{color:rgba(249,248,243,.65)}
@media(max-width:920px){
  .hero{padding:40px 0 20px}
  .hero-grid{grid-template-columns:1fr;gap:36px}
}

/* ---------- swoosh divider (from the logo) ---------- */
.swoosh{display:block;width:min(340px,60%);margin:48px auto 0;height:auto}

/* ---------- sections ---------- */
section{padding:72px 0}
.sec-head{max-width:640px;margin-bottom:42px}
.alt{background:var(--cream-2)}

/* ---------- services ---------- */
.svc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.svc{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:26px 22px;transition:transform .2s,box-shadow .2s;
}
.svc:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.svc-ico{
  width:48px;height:48px;border-radius:12px;background:var(--teal-tint);
  display:flex;align-items:center;justify-content:center;margin-bottom:16px;
}
.svc h3{margin-bottom:6px}
.svc p{font-size:14px;color:var(--ink-soft);line-height:1.55}
.svc.ask{background:transparent;border-style:dashed;display:flex;flex-direction:column;justify-content:center}
.svc.ask a{font-weight:600;color:var(--teal-deep);text-decoration:none}
.svc.ask a:hover{text-decoration:underline}
@media(max-width:980px){.svc-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.svc-grid{grid-template-columns:1fr}}

/* ---------- on the job (crew action photography) ---------- */
.onjob-section{background:var(--ink-green);color:#fff}
.onjob-head h2{color:#fff}
.onjob-head .lede{color:rgba(255,255,255,.76)}
/* the eyebrow rule is inherited; only its ink needs flipping on the dark band */
.onjob-head .eyebrow{color:rgba(255,255,255,.72)}
/* Asymmetric on desktop: the ladder shot is the one with a person clearly at
   work, so it gets the double-height cell and everything else fills around it. */
.onjob-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.onjob-tile{position:relative;margin:0;border-radius:var(--radius);overflow:hidden;background:rgba(255,255,255,.06)}
.onjob-tile img{width:100%;height:100%;object-fit:cover;display:block}
.onjob-tall{grid-row:span 2}
.onjob-tile:not(.onjob-tall){aspect-ratio:4/3}
.onjob-tile figcaption{
  position:absolute;left:0;right:0;bottom:0;padding:26px 14px 12px;
  font-size:13px;font-weight:600;color:#fff;
  background:linear-gradient(to top,rgba(7,59,31,.86),rgba(7,59,31,0));
}
@media(max-width:860px){
  /* Stop juggling a 3-col grid on small screens: one edge-to-edge swipe strip
     reads better than five stacked cards and keeps the section short. */
  .onjob-grid{
    display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;
    margin-inline:calc(50% - 50vw);padding-inline:25px;padding-bottom:6px;
    scrollbar-width:none;
  }
  .onjob-grid::-webkit-scrollbar{display:none}
  .onjob-tile{flex:0 0 74%;max-width:300px;scroll-snap-align:start}
  .onjob-tall{grid-row:auto}
  .onjob-tile,.onjob-tile:not(.onjob-tall){aspect-ratio:4/3}
}
@media (prefers-reduced-motion: reduce){ .onjob-grid{scroll-behavior:auto} }

/* ---------- results / before-after ---------- */
.res-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.ba-card{background:var(--white);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;box-shadow:0 4px 14px rgba(35,32,27,.06)}
/* ── Before/After Comparison Slider ── */
/* --split driven by JS inline style */
.ba-stage {
  position: relative;
  aspect-ratio: 828/736;
  background: var(--cream-2);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.sl-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  draggable: false;
}
.sl-after-clip {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 var(--split, 50%));
  will-change: clip-path;
}
/* Divider line */
.sl-divider {
  position: absolute; top: 0; bottom: 0;
  width: 3px;
  background: #fff;
  left: var(--split, 50%);
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.35);
}
/* Drag handle */
.sl-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 14px rgba(35,32,27,0.35), 0 0 0 2px rgba(200,145,43,0.25);
  transition: box-shadow 0.2s, transform 0.15s;
}
.ba-stage:active .sl-handle,
.ba-stage.dragging .sl-handle {
  box-shadow: 0 4px 20px rgba(35,32,27,0.45), 0 0 0 3px var(--teal);
  transform: translate(-50%, -50%) scale(1.1);
}
/* Before/After labels on the image */
.sl-label {
  position: absolute; top: 14px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 6px;
  color: var(--cream); pointer-events: none;
}
.sl-label-before { left: 14px; background: rgba(35,32,27,0.80); }
.sl-label-after  { right: 14px; background: var(--teal); color: var(--ink); }
/* Caption bar */
.ba-bar { display: flex; align-items: center; padding: 14px 16px; gap: 10px; }
.ba-bar h3 { font-size: 16px; }
.ba-bar p  { font-size: 13px; color: var(--ink-soft); }
.ba-bar .drag-hint {
  margin-left: auto; flex: none;
  font-size: 12px; color: var(--teal-deep); font-weight: 500;
  display: flex; align-items: center; gap: 5px; opacity: 0.75;
}
@media(max-width:760px){ .res-grid{ grid-template-columns: 1fr; } }
/* Shorter/narrower on phones so there's room to scroll past without the finger
   catching the drag handle */
@media(max-width:640px){
  .ba-stage{ aspect-ratio: 3/2; max-width: 440px; margin-left: auto; margin-right: auto; }
  .sl-handle{ width: 40px; height: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .sl-after-clip { clip-path: inset(0 0 0 50%) !important; }
}

/* ---------- process ---------- */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;counter-reset:step}
.step{position:relative;background:var(--white);border:1px solid var(--line);border-radius:var(--radius);padding:30px 24px 26px}
.step::before{
  counter-increment:step;content:counter(step,decimal-leading-zero);
  font-size:13px;font-weight:700;letter-spacing:.14em;color:var(--teal);
  display:block;margin-bottom:14px;
}
.step h3{margin-bottom:8px}
.step p{font-size:14.5px;color:var(--ink-soft)}
@media(max-width:820px){.steps{grid-template-columns:1fr}}

/* ---------- area ---------- */
.area-flex{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
/* card grid with a location-pin icon per region — distinct from the plain
   pill list this replaced, and from the diff-item / FAQ card treatments
   elsewhere on the page so each section reads as its own thing */
.area-chips{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;list-style:none;margin-top:20px;
}
.area-chips li{
  border-radius:12px;background:var(--white);border:1px solid var(--line);
  /* hover motion lives in the "AREA CHIPS" block further down, already
     gated to @media(hover:hover) */
}
.area-chips li a{
  display:flex;align-items:center;gap:10px;padding:13px 16px;color:var(--ink);text-decoration:none;font-weight:500;font-size:14.5px;
}
.area-pin{
  flex:none;width:30px;height:30px;border-radius:50%;background:var(--teal-tint);
  display:flex;align-items:center;justify-content:center;color:var(--teal-deep);
}
@media(max-width:820px){.area-flex{grid-template-columns:1fr;gap:30px}}
/* Kept at two columns down to 360px. Eight region links stacked one-per-row ran
   548px — most of a screen — and these are internal links to the region pages,
   so hiding any of them is the wrong trade. Two narrower columns keeps every
   link visible and roughly halves the block; the pin and type shrink so the
   longer names ("Northern Beaches", "Sutherland Shire") still fit. */
@media(max-width:640px){
  .area-chips{gap:10px}
  .area-chips li a{padding:11px 12px;gap:8px;font-size:13.5px}
  .area-pin{width:24px;height:24px}
  .area-pin svg{width:13px;height:13px}
}
@media(max-width:359px){.area-chips{grid-template-columns:1fr}}

/* ---------- shared form primitives ---------- */
label{font-size:13.5px;font-weight:600;display:grid;gap:6px}
input,select,textarea{
  font-family:inherit;font-size:15px;color:var(--ink);
  padding:13px 14px;border:1.5px solid var(--line);border-radius:10px;background:var(--cream);
  width:100%;min-height:48px;transition:border-color .2s,box-shadow .2s;
  -webkit-appearance:none;appearance:none;
}
select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2327768B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:40px}
textarea{min-height:100px;resize:vertical}
input:focus,select:focus,textarea:focus{outline:none;border-color:var(--teal);box-shadow:0 0 0 3px rgba(200,145,43,.14)}
.opt-tag{
  display:inline-block;font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  padding:2px 7px;border-radius:4px;margin-left:6px;vertical-align:middle;
}
.opt-tag.req{background:var(--cream-2);color:var(--ink-soft)}
.opt-tag.opt{background:var(--teal-tint);color:var(--teal-deep)}
.form-note{font-size:13px;color:var(--ink-soft);text-align:center}

/* ---------- inline quote section ---------- */
.quote-wrap{max-width:780px;margin:0 auto}
.quote-side{text-align:left;margin-bottom:38px}
.quote-side .big-phone{
  display:inline-flex;align-items:center;gap:12px;margin-top:18px;
  font-size:clamp(22px,3vw,30px);font-weight:700;color:var(--ink);text-decoration:none;
}
.quote-side .big-phone:hover{color:var(--teal-deep)}
.survey-form{
  background:var(--white);border:1px solid var(--line);border-radius:var(--radius);
  padding:36px;box-shadow:var(--shadow);display:grid;gap:22px;
}
.f-row{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.survey-form .btn{width:100%;margin-top:6px}
/* Step-nav buttons (Back + Next/Submit) sit side by side, not full-width
   stacked like every other button in this form — the ".btn{width:100%}"
   rule above was stretching both to 100% inside a flex row, which is what
   broke the layout. Sizing itself (compact Back, expanding Next/Submit) is
   owned by plans.css's .qt-step-nav rules. */
.survey-form .qt-step-nav .btn{width:auto;margin-top:0}
@media(max-width:640px){.f-row{grid-template-columns:1fr}}
@media(max-width:520px){.survey-form{padding:22px}}



/* ---------- quote drawer ---------- */
.qt-overlay{
  position:fixed;inset:0;z-index:90;background:rgba(35,32,27,.5);
  opacity:0;pointer-events:none;transition:opacity .3s ease,visibility .3s;
  /* `opacity:0` alone left a full-viewport fixed layer sitting over the whole
     page at all times. It was invisible and click-through, but it still sat in
     the hit-test stack, which made axe resolve the FOOTER's backdrop as white
     and report 3 phantom contrast failures on the homepage only. visibility
     takes it out of that stack (and out of the a11y tree) while still allowing
     the fade, because visibility is a transitionable discrete property. */
  visibility:hidden;
}
.qt-overlay.open{opacity:1;pointer-events:all;visibility:visible}
.qt-drawer{
  position:fixed;top:0;right:0;bottom:0;z-index:91;
  width:min(500px,100vw);background:var(--cream);
  box-shadow:-8px 0 40px rgba(35,32,27,.22);
  flex-direction:column;overflow:hidden;
  display:none;
}
.qt-drawer.open{display:flex;animation:qtSlideIn .35s cubic-bezier(.22,1,.36,1)}
@keyframes qtSlideIn{from{transform:translateX(100%)}to{transform:none}}
.qt-head{
  display:flex;align-items:flex-start;justify-content:space-between;gap:14px;
  padding:20px 22px;background:var(--ink);color:var(--cream);flex:none;
}
.qt-head-text h2{font-size:19px;font-weight:700;margin:0;color:var(--cream)}
.qt-head-text p{font-size:12px;color:rgba(249,248,243,.6);margin-top:2px}
.qt-close{
  background:rgba(255,255,255,.12);border:none;border-radius:8px;
  width:44px;height:44px;cursor:pointer;display:flex;align-items:center;justify-content:center;
  color:#fff;flex:none;transition:background .2s;
}
.qt-close:hover{background:rgba(255,255,255,.22)}
.qt-body{flex:1;overflow-y:auto;padding:20px 22px;display:grid;gap:16px;align-content:start}
.qt-body label{font-size:12.5px}
.qt-body input,.qt-body select,.qt-body textarea{font-size:14px;padding:11px 13px;min-height:44px}
.qt-body textarea{min-height:82px}
/* 16px inputs on mobile — anything smaller makes iOS Safari auto-zoom the page on focus */
@media(max-width:900px){
  input,select,textarea,
  .qt-body input,.qt-body select,.qt-body textarea{font-size:16px}
}
.qt-foot{padding:14px 22px calc(14px + env(safe-area-inset-bottom));background:var(--white);border-top:1px solid var(--line);flex:none}
.qt-foot .btn{width:100%;min-height:50px}
.qt-success{
  display:none;flex-direction:column;align-items:center;justify-content:center;
  gap:14px;padding:40px 24px;text-align:center;flex:1;
}
.qt-success.show{display:flex}
.qt-success .tick{width:64px;height:64px;border-radius:50%;background:var(--teal-tint);display:flex;align-items:center;justify-content:center}
.qt-success h3{font-size:21px;color:var(--ink)}
.qt-success p{color:var(--ink-soft);max-width:320px;font-size:15px}

/* ---------- faq ---------- */
/* bordered card rows (not the plain divider-line list this replaced) — a
   third distinct card language alongside the icon-cards (differentiators)
   and pin-cards (area), so the three sections read as their own thing
   rather than blending together */
.faq{max-width:760px;display:flex;flex-direction:column;gap:10px}
.faq details{
  background:var(--white);border:1px solid var(--line);border-radius:12px;
  padding:0 18px;transition:border-color .2s;
}
.faq details[open]{border-color:var(--teal)}
.faq summary{
  list-style:none;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px;
  padding:19px 0;font-size:16px;font-weight:600;min-height:48px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary .plus{flex:none;width:26px;height:26px;border-radius:50%;background:var(--teal-tint);position:relative;transition:transform .25s}
.faq summary .plus::before,.faq summary .plus::after{content:"";position:absolute;background:var(--teal-deep);top:50%;left:50%;transform:translate(-50%,-50%)}
.faq summary .plus::before{width:12px;height:2px}
.faq summary .plus::after{width:2px;height:12px;transition:opacity .2s}
.faq details[open] summary .plus::after{opacity:0}
.faq details[open] summary .plus{transform:rotate(180deg)}
.faq details p{padding:0 4px 22px;color:var(--ink-soft);max-width:640px}

/* ---------- footer ---------- */
footer .foot-top{padding:56px 0 44px;border-top:1px solid var(--line)}
.foot-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr;gap:40px}
.foot-grid img{height:64px;width:auto;margin-bottom:14px}
.foot-grid p{font-size:14px;color:var(--ink-soft);max-width:300px}
.foot-grid h3{font-size:13px;letter-spacing:.16em;text-transform:uppercase;color:var(--teal-deep);margin-bottom:14px}
.foot-grid ul{list-style:none;display:grid;gap:9px}
.foot-grid a{font-size:14.5px;color:var(--ink-soft);text-decoration:none}
.foot-grid a:hover{color:var(--teal-deep)}
.foot-social{display:flex;gap:12px;margin-top:18px}
.foot-social a{
  display:inline-flex;align-items:center;justify-content:center;
  width:42px;height:42px;border-radius:50%;
  background:var(--teal-tint);color:var(--teal-deep);
  border:1px solid transparent;
  transition:background .2s,color .2s,transform .2s,box-shadow .2s;
}
.foot-social a:hover{
  background:var(--teal);color:#fff;transform:translateY(-3px);
  box-shadow:0 8px 20px -6px rgba(200,145,43,.55);
}
.foot-social svg{width:20px;height:20px}
.phone-bar{background:var(--ink);color:var(--cream);padding:26px 0}
.phone-bar .wrap{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap}
.phone-bar a.num{
  font-size:clamp(26px,4vw,38px);font-weight:700;letter-spacing:.04em;
  color:var(--cream);text-decoration:none;
}
.phone-bar a.num:hover{color:#fff}
.phone-bar small{font-size:13px;color:rgba(249,248,243,.6)}
.phone-bar .foot-end{display:flex;flex-direction:column;align-items:flex-end;gap:9px;text-align:right}
.phone-bar .foot-links{display:flex;gap:18px;flex-wrap:wrap;justify-content:flex-end}
.phone-bar .foot-links a{font-size:13px;color:rgba(249,248,243,.78);text-decoration:none}
.phone-bar .foot-links a:hover{color:#fff}
@media(max-width:560px){
  .phone-bar .foot-end{align-items:flex-start;text-align:left}
  .phone-bar .foot-links{justify-content:flex-start;gap:14px}
}
@media(max-width:760px){.foot-grid{grid-template-columns:1fr;gap:30px}}



/* ═══════════════════════════════════════════════════════
   CINEMATIC HERO — Jakub primary, Jhey secondary
   ═══════════════════════════════════════════════════════ */

/* Custom bezier — smooth deceleration, Jakub-signed */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Override old hero */
.hero { padding: 0; }

.hero-full {
  position: relative;
  /* header is sticky and always 74px tall (.nav height), so 100svh alone
     pushes the stats row 74px past the bottom of the first screen */
  min-height: calc(100svh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--ink);
}

/* Photo layer */
.hero-bg {
  position: absolute;
  inset: 0;
  /* LCP element. It's a CSS background, so `srcset` doesn't apply — the phone
     size is picked with a media query instead, and the <link rel=preload> in
     <head> carries the SAME breakpoint so exactly one of the two is ever
     fetched. Change one and you must change the other, or the page downloads
     both. */
  background-image: url('assets/gl-hero-hedging-phone.webp');
  background-size: cover;
  /* Portrait source (1170x1560) is much taller than a phone viewport, so
     "cover" has to blow it up a lot — a low % here keeps faces below the
     headline/CTA stack instead of getting buried under it. */
  background-position: center 8%;
  transform: scale(1.04);
  animation: hero-ken-burns 14s var(--ease-out-expo) forwards;
  will-change: transform;
}
@media (min-width: 700px) {
  .hero-bg { background-image: url('assets/gl-hero-hedging.webp'); background-position: center 45%; }
}
@keyframes hero-ken-burns {
  to { transform: scale(1); }
}

/* Gradient overlays — ink at bottom, subtle teal tint */
.hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7,59,31,0.95) 0%, rgba(7,59,31,0.55) 45%, rgba(7,59,31,0.20) 100%),
    linear-gradient(135deg, rgba(200,145,43,0.18) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px 64px;
  max-width: var(--wrap);
  margin: 0 auto;
  width: 100%;
}

/* Word-by-word stagger container */
.hero-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--teal); display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: hero-fade-up 0.6s var(--ease-out-expo) 0.2s forwards;
}
.hero-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--teal); border-radius: 2px; }

.hero-h1 {
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
  /* Words animate individually via JS span injection */
}

/* Each .hw (hero word) gets staggered animation */
.hw {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  animation: hw-in 0.65s var(--ease-out-expo) forwards;
  will-change: opacity, transform;
}

@keyframes hw-in {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 24px;
  opacity: 0;
  animation: hero-fade-up 0.7s var(--ease-out-expo) 0.75s forwards;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0);   }
}

.hero-ctas-new {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px;
  opacity: 0;
  animation: hero-fade-up 0.6s var(--ease-out-expo) 0.9s forwards;
}
/* On phones the header button + sticky call bar already cover "quote" and "call",
   so trim the hero to a single CTA to reduce first-screen button clutter */
@media (max-width: 640px) {
  .hero-ctas-new .btn-ghost { display: none; }
}

/* Stats bar */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 28px;
  opacity: 0;
  animation: hero-fade-up 0.6s var(--ease-out-expo) 1.05s forwards;
}
.hero-stat {
  flex: 1; min-width: 140px;
  padding: 0 28px 0 0;
}
.hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.12); margin-right: 28px; }
.stat-num {
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; color: #fff; line-height: 1;
  display: flex; align-items: baseline; gap: 4px;
}
.stat-num .unit { font-size: 0.5em; color: var(--teal); font-weight: 700; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 5px; }

/* Scroll hint arrow */
.hero-scroll {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.35); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  animation: hero-fade-up 0.5s var(--ease-out-expo) 1.4s both, scroll-hint-pulse 2.4s 1.8s ease-in-out infinite;
}
.hero-scroll svg { animation: scroll-arrow 1.6s ease-in-out 1.8s infinite; }
@keyframes scroll-arrow {
  0%,100% { transform: translateY(0); opacity: .35; }
  50%      { transform: translateY(5px); opacity: .7; }
}
@keyframes scroll-hint-pulse {
  0%,100% { opacity: .45; }
  50%      { opacity: .8; }
}

@media(max-width:640px) {
  .hero-content { padding: 0 20px 36px; }
  .hero-stat:not(:last-child) { border-right: none; margin-right: 0; padding-right: 0; }
  .hero-stats { gap: 18px; }
}

/* ═══════════════════════════════════════════════════════
   UPGRADED REVEAL — Jakub recipe (opacity+translateY+blur)
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity  0.65s var(--ease-out-expo),
    transform 0.65s var(--ease-out-expo);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside a stagger group */
.stagger > .reveal:nth-child(1)  { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2)  { transition-delay: 70ms; }
.stagger > .reveal:nth-child(3)  { transition-delay: 140ms; }
.stagger > .reveal:nth-child(4)  { transition-delay: 210ms; }
.stagger > .reveal:nth-child(5)  { transition-delay: 280ms; }
.stagger > .reveal:nth-child(6)  { transition-delay: 350ms; }
.stagger > .reveal:nth-child(7)  { transition-delay: 420ms; }
.stagger > .reveal:nth-child(8)  { transition-delay: 490ms; }

/* Service cards hover lift — Jakub shadow technique */
.svc {
  transition: transform 0.28s var(--ease-out-quart), box-shadow 0.28s var(--ease-out-quart);
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow:
    0px 0px 0px 1px rgba(200,145,43,0.14),
    0px 8px 24px -4px rgba(35,32,27,0.16),
    0px 2px 8px 0px rgba(35,32,27,0.08);
}

/* Button press scale — Emil */
.btn:active { transform: scale(0.966); }
.btn { transition: background .22s, color .22s, border-color .22s, transform .14s, box-shadow .22s; }
.btn-solid:hover {
  background: var(--teal-deep);
  box-shadow: 0 6px 20px -4px rgba(200,145,43,0.45);
}

/* Inter-section CTA strip */
.cta-strip {
  background: var(--ink);
  padding: 52px 0;
}
.cta-strip .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; font-size: clamp(20px,2.6vw,28px); margin: 0; }
.cta-strip p  { color: rgba(249,248,243,.6); font-size: 14px; margin-top: 4px; }

/* Reduce motion — disable all non-essential animation */
@media (prefers-reduced-motion: reduce) {
  .hw, .hero-eyebrow, .hero-sub, .hero-ctas-new, .hero-stats, .hero-scroll,
  .hero-bg { animation: none !important; }
  .hw { opacity: 1; filter: none; transform: none; }
  .hero-eyebrow, .hero-sub, .hero-ctas-new, .hero-stats { opacity: 1; }
  .reveal { transition: none !important; }
  .svc:hover { transform: none; }
}


/* ═══════════════════════════════════════════════════════
   PROCESS SECTION — reference-style with AW colours
   ═══════════════════════════════════════════════════════ */
.process-section {
  background: linear-gradient(160deg, var(--teal-tint) 0%, #f0f8fa 40%, var(--white) 100%);
  padding: 80px 0 72px;
  overflow: hidden;
}
.process-head {
  text-align: center;
  margin-bottom: 56px;
}
.process-head .eyebrow {
  justify-content: center;
}
.process-head .eyebrow::before { display: none; }
.process-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 10px 0 14px;
  line-height: 1.1;
}
.process-head h2 em {
  font-style: normal;
  color: var(--teal);
  letter-spacing: -.01em;
}
.process-head p {
  color: var(--ink-soft);
  max-width: 480px;
  margin: 0 auto;
  font-size: 15px;
}

/* Three-column step layout */
.process-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: flex-start;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

/* Arrow connector */
.process-arrow {
  display: flex;
  align-items: flex-start;
  padding-top: 60px;
  padding-inline: 8px;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.process-arrow svg {
  opacity: 0.45;
}

/* Individual step */
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

/* Circle icon */
.proc-icon-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  margin-bottom: 24px;
}
.proc-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 1px rgba(200,145,43,0.12),
    0 8px 32px rgba(35,32,27,0.10),
    0 2px 6px rgba(35,32,27,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.28s var(--ease-out-quart), transform 0.28s var(--ease-out-quart);
}
.proc-step:hover .proc-circle {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 1px rgba(200,145,43,0.2),
    0 16px 40px rgba(35,32,27,0.13),
    0 4px 10px rgba(35,32,27,0.08);
}
.proc-circle svg {
  width: 52px;
  height: 52px;
}

/* Step number badge */
.proc-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(35,32,27,0.3);
}

.proc-step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.proc-step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 210px;
}

/* Bottom CTA */
.process-cta {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

/* Mobile */
@media(max-width: 680px) {
  .process-row {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 340px;
  }
  .process-arrow {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
    transform: rotate(90deg);
    margin: 10px auto;
  }
  .proc-step { padding: 0 0 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .proc-step:hover .proc-circle { transform: none; }
}

/* ═══════════════════════════════════════════════════════
   BENEFITS SECTION
   ═══════════════════════════════════════════════════════ */
.benefits-section {
  background: var(--cream-2);
  padding: 80px 0;
}
.benefits-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.benefits-head h2 span {
  color: var(--teal);
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.benefit-item {
  padding: 36px 38px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.22s var(--ease-out-quart);
}
.benefit-item:hover {
  background: var(--teal-tint);
}
/* Remove right border on every second item (right column) */
.benefit-item:nth-child(even) {
  border-right: none;
}
/* Remove bottom border on last two items */
.benefit-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.benefit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  flex: none;
  margin-bottom: 14px;
  transition: background 0.22s;
}
.benefit-item:hover .benefit-num {
  background: var(--teal-deep);
}
.benefit-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
}
.benefit-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.68;
  max-width: 420px;
}
@media(max-width: 700px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-item {
    border-right: none;
    padding: 28px 24px;
  }
  .benefit-item:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
  .benefit-item:last-child {
    border-bottom: none;
  }
}
/* Fail-safe: the benefits points must always be visible on mobile/tablet,
   even if the scroll-reveal observer doesn't fire. */
@media(max-width: 860px) {
  .benefits-section .reveal { opacity: 1 !important; transform: none !important; }
}


/* ═══════════════════════════════════════════════════════
   ABOUT / WHAT MAKES US DIFFERENT
   ═══════════════════════════════════════════════════════ */
.different-section {
  /* light teal gradient — gives this section its own identity instead of
     blending into the plain white/cream sections either side of it */
  background: linear-gradient(160deg, #F6E8C9 0%, #FBF3E0 35%, var(--cream) 75%);
  padding: 80px 0 72px;
}
.different-head {
  text-align: center;
  margin-bottom: 56px;
}
.different-head h2 em {
  font-style: normal;
  color: var(--teal);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 22px 26px;
  box-shadow: 0 8px 24px rgba(35,32,27,0.06);
  transition: transform 0.25s var(--ease-out-quart), box-shadow 0.25s var(--ease-out-quart);
}
@media(hover: hover) {
  .diff-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(35,32,27,0.10);
  }
}
/* Reuses proc-icon-wrap / proc-circle / proc-badge from process section */
.diff-item .proc-icon-wrap { margin-bottom: 18px; }
.diff-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.diff-item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media(max-width: 820px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media(max-width: 520px) {
  .diff-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Stacked vertically these six cards ran 303px each — 2.9 screens, the single
     biggest block on the phone homepage — because a 130px icon circle sat above
     every heading. Turning each card side-on puts the icon beside the text
     instead of on top of it, which roughly halves the height without dropping a
     word or shrinking the body copy below 13.5px. Two columns was the other
     option and was rejected: at 390px it wraps these headings to three lines. */
  /* Grid, not `flex-direction: row`. The heading, paragraph and (on SpotBlock)
     the link are all DIRECT children of .diff-item, so a row-flex turns each of
     them into its own narrow column instead of stacking them next to the icon —
     which made the SpotBlock card 498px tall rather than shorter. Grid lets the
     icon span every text row while the text stays in one column, whatever
     number of children a given card has. */
  .diff-item {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: start;
    text-align: left;
    padding: 18px 18px 18px 16px;
  }
  .diff-item > :not(.proc-icon-wrap) { grid-column: 2; }
  /* The wrap carries its own hard 130px box (it positions the step badge for the
     process section), so shrinking only the circle inside it leaves a 130px hole
     that squeezes the text column and puts the height straight back. */
  .diff-item .proc-icon-wrap { margin-bottom: 0; width: 62px; height: 62px; grid-column: 1; grid-row: 1 / -1; }
  .diff-item .proc-circle { width: 62px; height: 62px; }
  .diff-item .proc-circle svg { width: 30px; height: 30px; }
  .diff-item h3 { font-size: 15.5px; margin-bottom: 5px; }
  .diff-item p  { font-size: 13.5px; line-height: 1.55; }

  /* Cards 4–6 collapse behind the "See all 6 reasons" button injected by
     home.js. They stay in the DOM — this is visual only, same as .svc-extra. */
  .diff-grid .diff-extra { display: none; }
  .diff-grid.show-all .diff-extra { display: grid; }
  .diff-more { margin: 16px auto 0; display: block; }
}

/* ── Our Story ── */
.story-section {
  background: var(--ink);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left text */
.story-copy .eyebrow { color: var(--teal); }
.story-copy .eyebrow::before { background: var(--teal); }
.story-copy h2 { color: #fff; margin-bottom: 22px; }
.story-copy p {
  color: rgba(249,248,243,.72);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.story-copy p:last-of-type { margin-bottom: 32px; }

/* Founder callout */
.founder-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(200,145,43,.25);
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 28px;
}
.founder-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--teal-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: #fff;
  flex: none;
}
.founder-info strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.founder-info span {
  font-size: 13px;
  color: rgba(249,248,243,.55);
}

/* Right image */
.story-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow:
    0 0 0 1px rgba(200,145,43,0.18),
    0 24px 60px rgba(0,0,0,0.45);
}
.story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Teal accent bar at top of image */
.story-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  z-index: 1;
}
/* Year badge */
.story-badge {
  position: absolute;
  bottom: 18px; left: 18px;
  background: var(--ink);
  border: 1px solid rgba(200,145,43,0.35);
  border-radius: 12px;
  padding: 14px 18px;
  z-index: 2;
}
.story-badge .yr { font-size: 26px; font-weight: 800; color: var(--teal); line-height: 1; }
.story-badge .lb { font-size: 12px; color: rgba(249,248,243,.55); font-weight: 500; margin-top: 3px; }

/* Service area pills under story */
.story-areas {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-top: 22px;
}
.area-pill {
  font-size: 13px; font-weight: 500;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(200,145,43,.22);
  color: rgba(249,248,243,.75);
}

@media(max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-img-wrap { aspect-ratio: 16/9; order: -1; }
}
@media (prefers-reduced-motion: reduce) {
  .diff-item:hover .proc-circle { transform: none; }
}


/* ═══════════════════════════════════════════════════════
   NAV DROPDOWNS + MOBILE MENU
   ═══════════════════════════════════════════════════════ */

/* Dropdown trigger */
.nav-links li { position: relative; list-style: none; }
.nav-links .has-drop > a {
  display: flex; align-items: center; gap: 5px;
}
.nav-links .has-drop > a svg {
  flex: none;
  transition: transform 0.22s var(--ease-out-quart);
}
.has-drop:hover > a svg,
.has-drop.open > a svg { transform: rotate(180deg); }

/* Dropdown panel */
.drop-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(35,32,27,0.14), 0 2px 8px rgba(35,32,27,0.06);
  padding: 12px 0 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out-quart), transform 0.22s var(--ease-out-quart);
  z-index: 50;
}
/* Invisible bridge fills any sub-pixel gap between trigger and panel */
.drop-panel::before {
  content: '';
  position: absolute;
  top: -12px; left: 0; right: 0;
  height: 12px;
}
.has-drop:hover .drop-panel,
.has-drop.open .drop-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Two-column commercial panel */
.drop-panel.drop-wide {
  min-width: 480px;
  left: 0;
  transform: translateY(-6px);
}
.drop-panel.drop-wide::before { left: 0; right: 0; }
.has-drop:hover .drop-panel.drop-wide,
.has-drop.open .drop-panel.drop-wide {
  transform: translateY(0);
}
/* Right-anchored variant — prevents wide panels from overflowing the
   right edge of the viewport when their trigger sits further right */
.drop-panel.drop-wide.align-right {
  left: auto;
  right: 0;
}
/* Narrow right-anchored panel (About menu near the right of the nav) */
.drop-panel.align-right:not(.drop-wide) {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(-6px);
}
.has-drop:hover .drop-panel.align-right:not(.drop-wide),
.has-drop.open .drop-panel.align-right:not(.drop-wide) {
  transform: translateX(0) translateY(0);
}
@media(max-width: 1180px) {
  .drop-panel.drop-wide { min-width: 440px; }
}
.drop-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px 0;
}
.drop-col-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  padding: 4px 18px 6px;
}
.drop-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.drop-panel a:hover {
  background: var(--teal-tint);
  color: var(--teal-deep);
}
.drop-panel a svg { flex: none; }
.drop-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 0;
}

/* ── Hamburger ── */
.ham-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  color: var(--ink);
  transition: background 0.18s;
  flex: none;
}
.ham-btn:hover { background: var(--cream-2); }
.ham-line {
  display: block;
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out-quart), opacity 0.2s;
  margin: 4px 0;
}
.ham-btn.open .ham-line:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.ham-btn.open .ham-line:nth-child(2) { opacity: 0; }
.ham-btn.open .ham-line:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ── Mobile drawer (accordion) ── */
.mobile-nav {
  position: fixed;
  top: 74px; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  z-index: 55;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 8px 20px calc(40px + env(safe-area-inset-bottom));
  display: none;
}
.mobile-nav.open { display: block; animation: mobNavIn .26s cubic-bezier(0.22,1,0.36,1); }
@keyframes mobNavIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
header.nav-open { position: fixed; top: 0; left: 0; right: 0; }
.mob-acc { border-bottom: 1px solid var(--line); }
.mob-acc-trigger {
  width: 100%; background: none; border: 0; cursor: pointer; font-family: inherit;
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 4px; font-size: 17px; font-weight: 600; color: var(--ink);
}
.mob-acc-trigger svg { flex: none; color: var(--teal-deep); transition: transform .25s cubic-bezier(0.22,1,0.36,1); }
.mob-acc.open .mob-acc-trigger svg { transform: rotate(180deg); }
.mob-acc-panel { display: none; padding: 0 2px 12px; }
.mob-acc.open .mob-acc-panel { display: block; }
.mob-acc-panel a { display: block; padding: 11px 12px; font-size: 15.5px; color: var(--ink-soft); text-decoration: none; border-radius: 8px; }
.mob-acc-panel a:active { background: var(--teal-tint); color: var(--teal-deep); }
.mob-direct {
  display: flex; align-items: center; justify-content: space-between;
  padding: 17px 4px; font-size: 17px; font-weight: 600; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mob-direct.mob-phone { color: var(--teal-deep); }
.mob-ctas { display: grid; gap: 12px; margin-top: 22px; }
.mob-ctas .btn { width: 100%; justify-content: center; }

@media(max-width: 860px) {
  .nav-links { display: none !important; }
  .ham-btn { display: flex; flex-direction: column; justify-content: center; }
}
@media(min-width: 861px) {
  .mobile-nav { display: none !important; }
}


/* ═══════════════════════════════════════════════════════
   COMMERCIAL SERVICES SECTION
   ═══════════════════════════════════════════════════════ */
.commercial-section {
  background: var(--ink);
  padding: 80px 0;
}
.commercial-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.commercial-head h2 { color: #fff; }
.commercial-head h2 em { font-style: normal; color: var(--teal); }
.commercial-head p { color: rgba(249,248,243,.65); }
.com-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.com-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,145,43,.18);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: background 0.22s, border-color 0.22s, transform 0.22s var(--ease-out-quart);
}
.com-card:hover {
  background: rgba(200,145,43,.12);
  border-color: rgba(200,145,43,.4);
  transform: translateY(-3px);
}
.com-ico {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(200,145,43,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.com-ico svg { stroke: var(--teal); }
.com-card h3 {
  font-size: 16px; font-weight: 600;
  color: #fff; margin-bottom: 6px;
}
.com-card p {
  font-size: 13.5px;
  color: rgba(249,248,243,.55);
  line-height: 1.6;
}
.commercial-cta {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.commercial-cta p {
  font-size: 14px;
  color: rgba(249,248,243,.5);
  margin: 0;
}
@media(max-width: 860px) { .com-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width: 520px) { .com-grid { grid-template-columns: 1fr; } }
@media(prefers-reduced-motion: reduce) { .com-card:hover { transform: none; } }


/* ═══════════════════════════════════════════════════════
   WINDOWS SERVICES SECTION
   ═══════════════════════════════════════════════════════ */
.windows-section {
  background: var(--white);
  padding: 80px 0;
}
.windows-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.windows-head h2 em { font-style: normal; color: var(--teal); }
.win-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.win-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: transform 0.22s var(--ease-out-quart), box-shadow 0.22s var(--ease-out-quart), border-color 0.22s;
}
.win-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,145,43,.35);
  box-shadow: 0 10px 28px rgba(35,32,27,0.08);
}
.win-ico {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--teal-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.win-ico svg { stroke: #8F6414; }
.win-card h3 {
  font-size: 15px; font-weight: 600;
  color: var(--ink); line-height: 1.35;
}
.windows-cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 40px;
}
.windows-cta p { font-size: 14px; color: var(--ink-soft); margin: 0; }
@media(max-width: 980px) { .win-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 700px) { .win-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 460px) { .win-grid { grid-template-columns: 1fr; } }
@media(prefers-reduced-motion: reduce) { .win-card:hover { transform: none; } }


/* Nav "Free Quote" button — sized to balance the 46px logo on the left */
.nav-quote-btn {
  padding: 12px 24px;
  font-size: 15px;
  min-height: 46px;
  gap: 9px;
}


/* ═══════════════════════════════════════════════════════
   SERVICE PICKER — multi-select checkbox groups w/ tabs
   ═══════════════════════════════════════════════════════ */
.field-block {
  display: grid;
  gap: 4px;
}
.picker-label {
  font-size: 13.5px;
  font-weight: 600;
}

/* Category dropdown */
.category-select-wrap {
  display: grid;
  gap: 6px;
  margin: 16px 0 12px;
}
/* Hidden in the wizard's step 3 — the category is already picked in step 1,
   so this dropdown is only needed by the underlying panel-toggle JS, not
   shown to the customer. Same "author display beats [hidden]" fix as
   .qt-step[hidden] in plans.css. */
.category-select-wrap[hidden] {
  display: none;
}
.category-select-hint {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.category-select {
  font-weight: 600;
  border-color: rgba(200,145,43,.35);
  background-color: var(--teal-tint);
  color: var(--teal-deep);
  cursor: pointer;
}
.category-select:focus {
  border-color: var(--teal);
}

/* Checkbox option cards, grouped into collapsible categories so a long
   service list (28 residential) isn't all on screen at once. */
.picker-panel {
  display: grid;
  gap: 10px;
}
.picker-panel[hidden] {
  display: none;
}
.picker-group {
  display: grid;
  gap: 9px;
}
.picker-group-head {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-deep);
  padding: 4px 2px 7px;
  border: none;
  border-bottom: 1px solid var(--line);
  background: none;
  cursor: pointer;
  text-align: left;
}
.picker-group-head:hover { color: var(--teal); }
.pg-label { flex: 1; }
.pg-count {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
  padding: 2px 8px;
}
.pg-count[hidden] { display: none; }
.pg-chevron { flex: none; transition: transform .18s ease; }
.picker-group-head[aria-expanded="true"] .pg-chevron { transform: rotate(180deg); }
.picker-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.picker-opts[hidden] { display: none; }
.picker-opt {
  position: relative;
  display: flex;
  align-items: center;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  cursor: pointer;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  line-height: 1.3;
}
.picker-opt:hover {
  border-color: rgba(200,145,43,.4);
}
/* Checkbox input is visually hidden but stays keyboard-focusable and
   in the form's data — the whole card is the visible control */
.picker-opt input[type="checkbox"],
.picker-opt input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  margin: 0;
}
.picker-opt:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-tint);
  color: var(--teal-deep);
  font-weight: 600;
}
.picker-opt:has(input:focus-visible) {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
/* Sub-group heading inside a picker panel (e.g. Residential / Commercial
   within the Lawn Care category) — spans the full grid width */
.picker-subhead {
  grid-column: 1 / -1;
  margin: 6px 2px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.picker-subhead:first-child { margin-top: 0; }

/* Quote-visit booking picker (required — see quote-booking.js). Radio pills
   reuse .picker-opt, but in brand gold: the shared checked state uses
   --teal-deep, which is still the old blue. #C8912B is fine as a fill but
   fails contrast as text, so text uses the darker #8F6414.

   Redesigned 2026-08-16 from a stacked fieldset-per-day list (up to ~15 open
   days × 3 windows = 45 pills, one long wall of boxes) to a day-tabs + single
   active-day slot row — one control surface at a time instead of all of them
   dumped on screen together. */
.qb-block { display: grid; gap: 10px; }
.qb-block[hidden] { display: none; }
.qb-intro,
.qb-status { font-size: 12.5px; font-weight: 500; color: var(--ink-soft); line-height: 1.5; margin: 0; }
.qb-status:empty { display: none; }
/* Day tabs: horizontally scrollable chip row, one per open day. Scrolls
   rather than wraps so it stays a single compact row even with 15 days open. */
.qb-day-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.qb-day-tabs:empty { display: none; }
.qb-day-tab {
  flex: none;
  display: grid;
  gap: 2px;
  justify-items: center;
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-family: inherit;
  cursor: pointer;
  min-height: 44px;
}
.qb-day-tab-dow { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.qb-day-tab-date { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.qb-day-tab:hover { border-color: rgba(200,145,43,.5); }
.qb-day-tab[aria-selected="true"] {
  border-color: #C8912B;
  background: #FBF3E0;
}
.qb-day-tab[aria-selected="true"] .qb-day-tab-dow,
.qb-day-tab[aria-selected="true"] .qb-day-tab-date { color: #8F6414; }
.qb-day-tab:focus-visible { outline: 3px solid #C8912B; outline-offset: 2px; }
/* Active day's windows: one simple row, not a fieldset-per-day wall. */
.qb-slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 8px; }
.qb-slots:empty { display: none; }
/* min-height, not just padding: these are the one control on the form people
   tap on a phone, and 44px is the smallest reliable touch target. */
.qb-slot { justify-content: center; text-align: center; min-height: 44px; }
.qb-slot:hover { border-color: rgba(200,145,43,.5); }
.qb-slot:has(input:checked) {
  border-color: #C8912B;
  background: #FBF3E0;
  color: #8F6414;
}
.qb-slot:has(input:focus-visible) { outline: 3px solid #C8912B; outline-offset: 2px; }
.qb-error {
  margin: 0;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
  color: #8F2B1B;
  background: #FCEDEA;
  border-radius: 10px;
  padding: 10px 12px;
}
.qb-error[hidden] { display: none; }
.qb-clear { justify-self: start; font-size: 12.5px; padding: 8px 14px; }
.qb-clear[hidden] { display: none; }
.qb-confirm {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1.5px solid #C8912B;
  border-radius: var(--radius);
  background: #FBF3E0;
}
.qb-confirm:focus { outline: 3px solid #C8912B; outline-offset: 3px; }
.qb-confirm h3 { font-size: 19px; font-weight: 700; color: #8F6414; }
.qb-confirm p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
.qb-confirm-when { font-size: 15px !important; font-weight: 700; color: var(--ink) !important; }

/* Other option — full width, sits below panels */
.other-opt {
  margin-top: 10px;
}

/* Selected chips summary — grouped by category for clarity */
.picked-chips {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.picked-chips:empty {
  display: none;
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.chip-group {
  display: grid;
  gap: 6px;
}
.chip-group-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.picked-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 8px 6px 13px;
}
.picked-chip button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border: none;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, color 0.15s;
}
.picked-chip button:hover {
  background: var(--teal);
  color: #fff;
}

/* Error state */
.picker-error {
  font-size: 13px;
  font-weight: 600;
  color: #C0392B;
  margin-top: 8px;
}

@media(max-width: 560px) {
  .picker-opts { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════
   EXPLORE ALL SERVICES — combined overview
   ═══════════════════════════════════════════════════════ */
.explore-section {
  background: linear-gradient(180deg, var(--teal-tint) 0%, #FBF3E0 30%, var(--white) 100%);
  padding: 80px 0;
}
.explore-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.explore-head h2 em { font-style: normal; color: var(--teal); }
.explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.explore-col { display: flex; flex-direction: column; }
.explore-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(35,32,27,0.12);
}
.explore-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-quart);
}
/* photo caption — category title sits on the image */
.explore-cap {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(20,28,27,0.82) 0%, rgba(20,28,27,0.28) 48%, rgba(20,28,27,0) 100%);
}
.explore-cap h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.explore-cap .cap-count {
  flex: none;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.18);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 3px;
  white-space: nowrap;
}
@media(hover: hover) {
  .explore-col:hover .explore-img img { transform: scale(1.05); }
}
/* service links as tappable chips — CSS multi-column (not flex-wrap or
   grid). Commercial/Windows service names run much longer than
   Residential's, so a plain flex-wrap gave wildly uneven column heights
   (155px vs 318px): free wrapping let short labels pack many-per-row while
   long ones stacked one-per-row. A CSS grid fixes the row COUNT but a
   grid row still stretches every cell to match its tallest neighbour, so
   short chips paired with long ones got forced tall anyway. Multi-column
   layout sizes each chip independently and auto-balances the two columns
   by total height, not by row-pairing — the correct tool for this. */
.explore-list {
  list-style: none;
  columns: 2;
  column-gap: 10px;
}
.explore-list li {
  break-inside: avoid-column;
  margin-bottom: 8px;
}
.explore-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--teal-deep);
  background: var(--teal-tint);
  padding: 9px 10px;
  border-radius: var(--radius);
  text-decoration: none;
  line-height: 1.25;
  transition: background 0.18s, color 0.18s, transform 0.18s;
  /* one tap to navigate on touch — no hover-first hesitation */
  touch-action: manipulation;
}
@media(hover: hover) {
  .explore-list a:hover {
    background: var(--teal);
    color: #fff;
    transform: translateY(-2px);
  }
}
.explore-list .svc-extra { display: none; }
.explore-list.show-all .svc-extra { display: list-item; }
.explore-more {
  margin-top: 16px;
  align-self: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal-deep);
  padding: 6px 2px;
  transition: color 0.18s;
}
@media(hover: hover) {
  .explore-more:hover { color: var(--ink); }
}
/* teal accent bar under the main centered section headings */
.explore-head h2::after,
.sec-head h2::after,
.different-head h2::after {
  content: '';
  display: block;
  width: 52px; height: 3px;
  background: var(--teal);
  border-radius: 999px;
  margin: 16px auto 0;
}
@media(max-width: 860px) {
  .explore-grid { grid-template-columns: 1fr; gap: 44px; max-width: 460px; margin: 0 auto; }
}
@media(max-width: 640px) {
  /* Each of the three category columns was 465px tall, half of it a 3:2 photo.
     The photo is a label here, not the content — the service links below it are
     — so it earns a letterbox crop rather than half the screen. The caption
     overlay ("Residential · 16 services") still reads fine at this height. */
  .explore-grid { gap: 26px; }
  .explore-img { aspect-ratio: 16/7; margin-bottom: 12px; }
}
@media(prefers-reduced-motion: reduce) {
  .explore-col:hover .explore-img img { transform: none; }
}

/* ── Mobile scroll reduction (phones only — desktop unchanged) ──
   The homepage stacks to ~23 screens on a phone; these trims cut it to
   ~14 without touching desktop or removing any conversion path. */
@media(max-width: 640px) {
  /* tighter vertical rhythm on the base section padding */
  section { padding-block: 44px; }
  /* results: show the first two before/after cards (of four) */
  #results .res-grid .ba-card:nth-child(n+3) { display: none; }
  /* quote: swap the long inline form for a CTA that opens the slide-out
     drawer (same form, far less scroll — the drawer already auto-opens
     when arriving at #quote on mobile) */
  #quote { padding-block: 40px; }
  #quote .survey-form { display: none; }
  #quote .quote-drawer-cta { display: inline-flex; margin-top: 6px; }
}
.quote-drawer-cta { display: none; }


/* ══════════════════════════════════════════════════════════
   PREMIUM LAYER v2 — Ambient Lighting & Cinematic Scroll
   ══════════════════════════════════════════════════════════ */
/* ── Ambient floating orbs ──
   Fixed, full-viewport field of slow-drifting blue glows behind the content
   (built + randomised in home.js). Sits at z-index 0 so it never covers text
   and never intercepts pointer events. Only transform + opacity animate, both
   compositor-only, so it holds 60fps with no layout or paint work. */
#ambient-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  contain: strict;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform, opacity;
  /* Overlapping orbs sum toward a brighter core rather than muddying. */
  mix-blend-mode: screen;
  animation-name: orb-float, orb-breathe;
  animation-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95), ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-direction: normal, alternate;
  animation-fill-mode: none;
}
/* Randomised per-orb waypoints come from --x0..3 / --y0..3 / --s0..3.
   0% and 100% reuse waypoint 0 so each loop closes with no jump. */
@keyframes orb-float {
  0%   { transform: translate3d(var(--x0), var(--y0), 0) scale(var(--s0)); }
  25%  { transform: translate3d(var(--x1), var(--y1), 0) scale(var(--s1)); }
  50%  { transform: translate3d(var(--x2), var(--y2), 0) scale(var(--s2)); }
  75%  { transform: translate3d(var(--x3), var(--y3), 0) scale(var(--s3)); }
  100% { transform: translate3d(var(--x0), var(--y0), 0) scale(var(--s0)); }
}
@keyframes orb-breathe {
  0%   { opacity: 0.55; }
  100% { opacity: 1; }
}

/* ═══ SECTION CONTAINER SETUP ═══ */
.explore-section   { position:relative; overflow:hidden; }
.benefits-section  { position:relative; overflow:hidden; }
.different-section { position:relative; overflow:hidden; }
#results           { position:relative; overflow:hidden; }
#faq               { position:relative; overflow:hidden; }
#area              { position:relative; overflow:hidden; background:var(--cream-2); }
.cta-strip         { position:relative; overflow:hidden; }
.process-section   { position:relative; overflow:hidden; }

/* ═══ SECTION BACKGROUND ENRICHMENTS ═══ */
/* Explore — deep teal-to-white gradient */
.explore-section {
  background: linear-gradient(160deg, #F6E8C9 0%, #FBF3E0 25%, var(--white) 65%) !important;
}
/* Benefits — cool pearl */
.benefits-section {
  background: linear-gradient(180deg, #FBF3E0 0%, var(--cream-2) 50%, #f5f3eb 100%) !important;
}
/* Story — richer ink with teal tint */
.story-section {
  background: linear-gradient(135deg, #161f1e 0%, #1e2d2c 40%, #1a2e2d 100%) !important;
}
/* Process — soft teal gradient */
.process-section {
  background: linear-gradient(160deg, #F1DFB5 0%, #F6E8C9 30%, #FBF3E0 65%, var(--white) 100%) !important;
}
/* Phone bar — deep dark teal */
.phone-bar {
  background: linear-gradient(135deg, #0f1c1b 0%, #1a2928 45%, #1f3533 100%) !important;
  position:relative; overflow:hidden;
}

/* ═══ AMBIENT ORBS — HIGH OPACITY ═══ */
/* Orbs are static gradients (no perpetual animation) — this keeps the
   ambient-lighting look while leaving the GPU free for smooth scrolling.
   Only the two hero/CTA "bloom" orbs keep a gentle pulse (see below). */

/* Explore — top-right mega orb */
.explore-section::before {
  content:''; position:absolute; pointer-events:none;
  width:700px; height:700px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,145,43,0.38) 0%, rgba(200,145,43,0.12) 45%, transparent 70%);
  top:-200px; right:-160px;
}
/* Explore — bottom-left accent */
.explore-section::after {
  content:''; position:absolute; pointer-events:none;
  width:500px; height:500px; border-radius:50%;
  background: radial-gradient(circle, rgba(143,100,20,0.28) 0%, rgba(143,100,20,0.08) 50%, transparent 70%);
  bottom:-150px; left:-100px;
}
.explore-section .wrap { position:relative; z-index:1; }

/* Benefits — bottom-left orb */
.benefits-section::before {
  content:''; position:absolute; pointer-events:none;
  width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,145,43,0.30) 0%, rgba(200,145,43,0.08) 50%, transparent 70%);
  bottom:-180px; left:-100px;
}
.benefits-section::after {
  content:''; position:absolute; pointer-events:none;
  width:400px; height:400px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,145,43,0.22) 0%, transparent 65%);
  top:-60px; right:-60px;
}
.benefits-section .wrap { position:relative; z-index:1; }

/* CTA strip — bright center bloom */
.cta-strip::before {
  content:''; position:absolute; pointer-events:none;
  width:800px; height:320px; border-radius:50%;
  background: radial-gradient(ellipse, rgba(200,145,43,0.50) 0%, rgba(200,145,43,0.18) 45%, transparent 70%);
  top:50%; left:35%; transform:translate(-50%,-50%);
}
.cta-strip .wrap { position:relative; z-index:1; }

/* Story (dark) — vivid teal top-right */
.story-section::before {
  content:''; position:absolute; pointer-events:none;
  width:700px; height:700px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,145,43,0.40) 0%, rgba(200,145,43,0.12) 45%, transparent 68%);
  top:-180px; right:-160px;
}
/* Story — bottom-left secondary */
.story-section::after {
  content:''; position:absolute; pointer-events:none;
  width:480px; height:480px; border-radius:50%;
  background: radial-gradient(circle, rgba(143,100,20,0.32) 0%, transparent 65%);
  bottom:-140px; left:-80px;
}
.story-grid { position:relative; z-index:1; }

/* Process — top center bloom */
.process-section::before {
  content:''; position:absolute; pointer-events:none;
  width:900px; height:500px; border-radius:50%;
  background: radial-gradient(ellipse, rgba(200,145,43,0.32) 0%, rgba(200,145,43,0.10) 45%, transparent 70%);
  top:-100px; left:50%; transform:translateX(-50%);
}
.process-section .wrap { position:relative; z-index:1; }

/* Different (what makes us different) */
.different-section::before {
  content:''; position:absolute; pointer-events:none;
  width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,145,43,0.25) 0%, rgba(200,145,43,0.06) 50%, transparent 70%);
  top:50%; right:-180px; transform:translateY(-50%);
}
.different-section .wrap { position:relative; z-index:1; }

/* Results */
#results::before {
  content:''; position:absolute; pointer-events:none;
  width:650px; height:650px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,145,43,0.22) 0%, transparent 65%);
  top:50%; right:-180px; transform:translateY(-50%);
}
#results .wrap { position:relative; z-index:1; }

/* FAQ */
#faq::before {
  content:''; position:absolute; pointer-events:none;
  width:550px; height:550px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,145,43,0.20) 0%, transparent 65%);
  bottom:-100px; left:-80px;
}
#faq .wrap { position:relative; z-index:1; }

/* Area */
#area::before {
  content:''; position:absolute; pointer-events:none;
  width:500px; height:500px; border-radius:50%;
  background: radial-gradient(circle, rgba(200,145,43,0.22) 0%, transparent 65%);
  top:-80px; right:-80px;
}
#area .wrap { position:relative; z-index:1; }

/* Phone bar — large right bloom */
.phone-bar::before {
  content:''; position:absolute; pointer-events:none;
  width:600px; height:400px; border-radius:50%;
  background: radial-gradient(ellipse, rgba(200,145,43,0.55) 0%, rgba(200,145,43,0.18) 45%, transparent 70%);
  top:50%; right:8%; transform:translateY(-50%);
}
.phone-bar .wrap { position:relative; z-index:1; }

/* ═══ ALWAYS-VISIBLE CARD DEPTH ═══ */
/* Explore images: permanent lift + teal tint */
.explore-img {
  box-shadow: 0 12px 40px rgba(35,32,27,0.14), 0 0 0 1px rgba(200,145,43,0.10);
  transition: box-shadow 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo);
}
.explore-col:hover .explore-img {
  box-shadow: 0 0 0 2px rgba(200,145,43,0.35), 0 24px 70px rgba(35,32,27,0.22), 0 0 60px -10px rgba(200,145,43,0.45);
  transform: translateY(-4px);
}

/* Service cards: teal left-border accent */
.svc { border-left: 3px solid transparent; }
.svc:hover { border-left-color: var(--teal); }

/* Benefit items: accent on hover */
.benefit-item {
  transition: background 0.22s, box-shadow 0.28s var(--ease-out-expo);
}
.benefit-item:hover {
  background: linear-gradient(135deg, rgba(200,145,43,0.07) 0%, var(--teal-tint) 100%);
  box-shadow: inset 0 0 0 1px rgba(200,145,43,0.18);
}
.benefit-num {
  transition: background 0.22s, box-shadow 0.30s var(--ease-out-expo), transform 0.25s var(--ease-out-expo);
}
.benefit-item:hover .benefit-num {
  background: var(--teal);
  box-shadow: 0 0 24px rgba(200,145,43,0.60);
  transform: scale(1.12);
}

/* ═══ PROC & DIFF CIRCLES ═══ */
.proc-circle, .diff-item .proc-circle {
  transition: box-shadow 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo) !important;
}
.proc-step:hover .proc-circle,
.diff-item:hover .proc-circle {
  transform: translateY(-6px) !important;
  box-shadow:
    0 0 0 2px rgba(200,145,43,0.30),
    0 20px 50px rgba(35,32,27,0.16),
    0 0 50px -8px rgba(200,145,43,0.45) !important;
}

/* ═══ BEFORE/AFTER CARDS ═══ */
.ba-card {
  transition: transform 0.38s var(--ease-out-expo), box-shadow 0.38s var(--ease-out-expo);
}
.ba-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 2px rgba(200,145,43,0.28),
    0 24px 64px -8px rgba(35,32,27,0.22),
    0 0 48px -10px rgba(200,145,43,0.30);
}

/* ═══ STORY IMAGE ═══ */
.story-img-wrap {
  transition: box-shadow 0.50s var(--ease-out-expo);
}
.story-img-wrap:hover {
  box-shadow:
    0 0 0 2px rgba(200,145,43,0.45),
    0 36px 100px rgba(0,0,0,0.55),
    0 0 80px -12px rgba(200,145,43,0.45);
}

/* ═══ BUTTON SHIMMER ═══ */
.btn-solid { position:relative; overflow:hidden; }
.btn-solid::before {
  content:'';
  position:absolute; top:0; left:-120%;
  width:60%; height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
  transform: skewX(-18deg);
  pointer-events:none;
}
.btn-solid:hover::before { animation: btn-shine 0.55s ease forwards; }
@keyframes btn-shine { to { left: 165%; } }

/* Button glow on hover */
.btn-solid:hover {
  box-shadow: 0 8px 28px -4px rgba(200,145,43,0.55) !important;
}

/* ═══ FOUNDER CARD ═══ */
.founder-card {
  transition: background 0.25s, border-color 0.25s, box-shadow 0.35s var(--ease-out-expo);
}
.founder-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(200,145,43,0.55);
  box-shadow: 0 0 40px -8px rgba(200,145,43,0.35);
}

/* ═══ AREA CHIPS ═══ */
.area-chips li {
  transition: transform 0.25s var(--ease-out-expo), box-shadow 0.25s, background 0.22s, border-color 0.22s;
}
/* mouse-only — an un-gated :hover here made region links need two taps on
   phones, the same bug fixed on the service chips (see explore-list) */
@media(hover: hover) {
  .area-chips li:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px -4px rgba(200,145,43,0.32);
    background: var(--teal-tint);
    border-color: rgba(200,145,43,0.35);
  }
}

/* ═══ FAQ ═══ */
.faq details {
  transition: background 0.2s;
  border-radius: 8px;
  padding: 0 10px;
  margin: 0 -10px;
}
.faq details:hover, .faq details[open] {
  background: rgba(200,145,43,0.05);
}

/* ═══ GRADIENT TEXT ON HEADINGS ═══ */
.explore-head h2 em,
.different-head h2 em,
.process-head h2 em {
  background: linear-gradient(130deg, #A87720 0%, #9C6E1B 45%, var(--teal-press) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
/* Benefits heading span */
.benefits-head h2 span {
  background: linear-gradient(130deg, #A87720 0%, #9C6E1B 50%, var(--teal-press) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══ DIRECTIONAL SCROLL REVEALS ═══ */
.rev-left {
  opacity:0; transform:translateY(28px);
  transition: opacity .85s var(--ease-out-expo), transform .85s var(--ease-out-expo);
}
.rev-right {
  opacity:0; transform:translateY(28px);
  transition: opacity .85s var(--ease-out-expo), transform .85s var(--ease-out-expo);
}
.rev-scale {
  opacity:0; transform:scale(0.90) translateY(20px);
  transition: opacity .75s var(--ease-out-expo), transform .75s var(--ease-out-expo);
}
.rev-left.in, .rev-right.in, .rev-scale.in {
  opacity:1; transform:none;
}

/* Explore grid stagger */
.explore-grid .reveal:nth-child(1) { transition-delay:   0ms; }
.explore-grid .reveal:nth-child(2) { transition-delay: 120ms; }

/* ═══ NOISE GRAIN OVERLAY ═══ */
body::after {
  content:'';
  position:fixed; inset:0;
  z-index:9999; pointer-events:none;
  opacity:0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.90' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:160px 160px;
  /* isolate on its own GPU layer so it doesn't repaint with every scroll */
  transform: translateZ(0);
}

/* ═══ HEADER GLOW LINE (added via JS on scroll) ═══ */
header { transition: box-shadow 0.3s; }

/* ═══ REDUCED MOTION ═══ */
@media (prefers-reduced-motion: reduce) {
  #ambient-orbs, body::after { display:none !important; }
  .explore-section::before,.explore-section::after,
  .benefits-section::before,.benefits-section::after,
  .cta-strip::before,.story-section::before,.story-section::after,
  .process-section::before,.different-section::before,
  #results::before,#faq::before,
  #area::before,.phone-bar::before { animation:none !important; }
  .btn-solid::before { display:none; }
  .rev-left,.rev-right,.rev-scale { transition:none !important; }
}

/* ═══ TOUCH DEVICES ═══
   Hover states stick on touch — a tap leaves cards/tiles "lifted" until you tap
   elsewhere, which reads as an unresponsive/half-pressed button. Neutralise the
   hover lifts (tap feedback still comes from :active), and remove the tap
   highlight flash. Placed last so it wins the cascade over the hover rules. */
@media (hover: none), (max-width: 900px) {
  .svc:hover, .com-card:hover, .win-card:hover,
  .diff-item:hover, .ba-card:hover, .explore-col:hover { transform: none; }
  .explore-col:hover .explore-img img { transform: none; }
  a, button, .btn, summary, [role="button"] { -webkit-tap-highlight-color: transparent; }
  .btn:active { transform: scale(0.96); }
}
