/* Sawhorse — single-page marketing site */

:root {
  --paper: #FBF8F2;
  --paper-deep: #F3EDE1;
  --white: #FFFFFF;
  --ink: #22302A;
  --ink-soft: #4C5A53;
  --green: #2D5C49;
  --green-deep: #1E3F33;
  --green-darkest: #163027;
  --green-tint: #E6EEE8;
  --gold: #E0A437;
  --gold-deep: #C18A24;
  --gold-text: #8A6212;
  --gold-soft: #F8ECD3;
  --line: #E6DECD;
  --cream: #F4EFE6;
  --radius-card: 16px;
  --shadow-soft: 0 2px 6px rgba(34, 48, 42, 0.05), 0 12px 32px rgba(34, 48, 42, 0.07);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; }

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

/* ---------- Type ---------- */

h1, h2 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  letter-spacing: -0.005em;
  max-width: 20em;
}

p { margin: 0; }

.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.1rem;
}

.lede {
  font-size: clamp(1.15rem, 1.7vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 33em;
  margin-top: 1.4rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 2px 6px rgba(45, 92, 73, 0.25);
}

.btn-primary:hover {
  background: var(--green-deep);
  box-shadow: 0 6px 16px rgba(45, 92, 73, 0.3);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-darkest);
  box-shadow: 0 2px 6px rgba(34, 48, 42, 0.2);
}

.btn-gold:hover {
  background: #EBB14A;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.btn-small {
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
}

:focus-visible {
  outline: 3px solid var(--gold-text);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible { border-radius: 999px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--green-deep);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 8px 0;
}

.skip-link:focus { left: 0; }

/* ---------- Awning stripe ---------- */

.awning-stripe {
  height: 7px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0 36px,
    var(--gold) 36px 72px
  );
}

.awning-stripe-dark {
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 36px,
    var(--green-darkest) 36px 72px
  );
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 242, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.22rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark { width: 36px; height: 25px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-left: auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--green);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone svg {
  width: 1.05em;
  height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone:hover { color: var(--green-deep); }

/* ---------- Hero ---------- */

.hero {
  padding-block: clamp(4rem, 10vw, 7.5rem) clamp(4rem, 9vw, 6.5rem);
}

.hero .container { max-width: 880px; }

/* Photographic hero */

.hero-photo {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 82vh, 800px);
  padding-block: clamp(4rem, 9vw, 7rem);
  background: var(--green-darkest);
  color: var(--cream);
  overflow: hidden;
}

/* Rotating per-trade hero photos (cross-fade). Slide 1 loads eagerly + is the
   no-JS / reduced-motion still; slides 2–6 are lazy-set via data-bg in JS. */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: 66% center;
}

.hero-slide-1 { background-image: url("images/hero/plumber.jpg"); }

/* Swipe right -> left. Animation starts only once JS has preloaded + decoded
   every photo and added .hero-ready, so nothing decodes mid-transition.
   The 7th slide duplicates the 1st, so the wrap from -600% back to 0 is seamless. */
.js .hero-photo.hero-ready .hero-track {
  animation: heroSwipe 42s infinite;
  animation-timing-function: ease-in-out;
  will-change: transform;
}

@keyframes heroSwipe {
  0%,  8%   { transform: translateX(0); }
  11%, 24%  { transform: translateX(-100%); }
  27%, 40%  { transform: translateX(-200%); }
  43%, 56%  { transform: translateX(-300%); }
  59%, 72%  { transform: translateX(-400%); }
  75%, 88%  { transform: translateX(-500%); }
  91%, 100% { transform: translateX(-600%); }
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(98deg, rgba(22, 48, 42, 0.95) 0%, rgba(22, 48, 42, 0.82) 32%, rgba(22, 48, 42, 0.44) 60%, rgba(22, 48, 42, 0.1) 100%),
    linear-gradient(to top, rgba(22, 48, 42, 0.6) 0%, rgba(22, 48, 42, 0) 52%);
}

.hero-photo .container {
  position: relative;
  z-index: 2;
}

.hero-photo .eyebrow { color: var(--gold); }

.hero-photo h1 { color: var(--cream); }

.hero-photo .lede {
  color: rgba(244, 239, 230, 0.88);
  text-shadow: 0 1px 10px rgba(12, 26, 21, 0.35);
}


.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.1rem;
}

/* ---------- Sections ---------- */

.section {
  padding-block: clamp(3.5rem, 7.5vw, 6rem);
}

.section-tint { background: var(--paper-deep); }

.section-gold {
  background: linear-gradient(165deg, #D69A2E 0%, #C2891F 100%);
}

.price-card {
  max-width: 540px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 22px;
  padding: clamp(2.2rem, 4vw, 3.2rem);
  text-align: center;
  box-shadow: 0 24px 60px rgba(96, 62, 6, 0.3), 0 4px 14px rgba(96, 62, 6, 0.16);
}

.price-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1rem;
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  font-size: clamp(2.8rem, 5.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.01em;
  max-width: none;
}

.price-amount .price-per {
  font-size: 0.3em;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.price-tagline {
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink-soft);
}

.price-points {
  list-style: none;
  margin: 1.7rem auto 0;
  padding: 0;
  display: inline-grid;
  gap: 0.7rem;
  text-align: left;
}

.price-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 1.02rem;
}

.price-points li::before {
  content: "";
  flex: none;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  background: var(--green-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232D5C49' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 0.9rem no-repeat;
}

.price-card .btn { margin-top: 1.9rem; }

.price-fine {
  margin-top: 1.1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.section .container { max-width: 880px; }

.deal-list {
  list-style: none;
  margin: 1.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  max-width: 40em;
}

.deal-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.deal-item p {
  font-size: 1.15rem;
  color: var(--ink);
  padding-top: 0.35rem;
}

.deal-icon {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green);
}

.deal-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.works-body {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 38em;
}

/* Features — what your website does */

.feature-lede {
  margin-top: 1.4rem;
  font-size: 1.18rem;
  color: var(--ink);
  max-width: 40em;
}

.feature-list {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-text);
  margin-bottom: 1.1rem;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  color: var(--ink);
  line-height: 1.2;
}

.feature-card p {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

/* ===== Flywheel — "the orbit": your website is the engine, the four steps loop
   around it. Ported from the design-system exploration (explorations/flywheel/,
   "orbit-minimal" direction). The connective ring + one-way arcs are an SVG that
   scales with its viewBox; the engine card and the four step chips are HTML,
   positioned around the ring on wider screens (sizes track the box via --u, one
   native px = calc(100cqw / 640)) and re-stacked into a readable vertical list on
   phones, where a ring would shrink the labels to nothing. The full diagram is
   complete with no JS / reduced motion; the one gold token that laps the ring is
   enhancement only (added via .is-playing on scroll-in, plays once, then rests). */

.orbit{
  --u:calc(100cqw / 640);            /* one native px of the 640-wide stage */
  position:relative;
  container-type:inline-size;
  width:min(640px,100%);
  aspect-ratio:640 / 560;
  margin:clamp(2.6rem,5vw,3.8rem) auto 0;
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* connective ring + one-way arcs + the single travelling token */
.orbit-ring{position:absolute;inset:0;width:100%;height:100%;overflow:visible;}
.orbit-rim{fill:none;stroke:var(--line);stroke-width:1.6;}
.orbit-arc,.orbit-arc-head{fill:none;stroke:var(--gold-deep);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}
.orbit-token{fill:none;stroke:var(--gold);stroke-width:6;stroke-linecap:round;stroke-dasharray:5 1226.5;stroke-dashoffset:0;opacity:0;}

/* the engine = your website (the hero of the diagram) */
.orbit-engine{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:calc(150 * var(--u));text-align:center;}
.orbit-browser{width:100%;height:auto;filter:drop-shadow(0 6px 14px rgba(34,48,42,.10));}
.ob-card{fill:var(--white);stroke:var(--line);stroke-width:1.4;}
.ob-chrome{fill:var(--cream);}
.ob-dot{fill:var(--line);}
.ob-rule{stroke:var(--green);stroke-width:2.4;stroke-linecap:round;}
.ob-rule-soft{stroke:#C9D3CC;stroke-width:2.4;stroke-linecap:round;}
.ob-cta{fill:var(--green);}
.ob-cta-txt{fill:var(--white);font-family:var(--font-body);font-weight:700;font-size:11px;letter-spacing:.01em;text-anchor:middle;}
.orbit-engine-label{margin:calc(9 * var(--u)) 0 0;font-family:var(--font-display);font-weight:600;font-size:calc(16 * var(--u));color:var(--ink);line-height:1.1;}
.orbit-engine-sub{margin:calc(2 * var(--u)) 0 0;font-family:var(--font-body);font-weight:700;font-size:calc(9.5 * var(--u));letter-spacing:.12em;text-transform:uppercase;color:var(--gold-text);}

/* the four step chips, set on the ring's cardinal points */
.orbit-chip{
  position:absolute;transform:translate(-50%,-50%);
  display:flex;align-items:center;gap:calc(9 * var(--u));
  width:calc(166 * var(--u));
  padding:calc(9 * var(--u)) calc(12 * var(--u));
  background:var(--white);border:1px solid var(--line);
  border-radius:calc(14 * var(--u));box-shadow:var(--shadow-soft);
}
.oc-icon{flex:none;display:inline-flex;}
.oc-icon svg{width:calc(22 * var(--u));height:calc(22 * var(--u));fill:none;stroke:var(--green);stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;}
.oc-text{display:flex;flex-direction:column;min-width:0;line-height:1.14;}
.oc-text strong{font-family:var(--font-display);font-weight:600;font-size:calc(14.5 * var(--u));color:var(--ink);}
.oc-text span{font-family:var(--font-body);font-weight:400;font-size:calc(11 * var(--u));color:var(--ink-soft);}

.oc-search{left:50%;top:15%;}
.oc-job{left:50%;top:85%;}
.oc-review{left:19.375%;top:50%;}
.oc-reach{left:80.625%;top:50%;}

/* the loop closes back to the top — shown on phones where the arcs are hidden */
.orbit-loop-note{display:none;margin:.2rem 0 0;text-align:center;font-size:.95rem;color:var(--ink-soft);font-style:italic;}

/* ===== phones: stack the steps into a readable vertical list (engine on top,
   steps uniform) — the ring would shrink the labels to nothing ===== */
@media (max-width:560px){
  .orbit{width:100%;max-width:400px;aspect-ratio:auto;display:flex;flex-direction:column;align-items:stretch;gap:1.4rem;}
  .orbit-ring{display:none;}
  .orbit-engine{position:static;transform:none;width:auto;max-width:210px;margin:0 auto;}
  .orbit-chip{position:relative;inset:auto;transform:none;width:100%;gap:.85rem;padding:.85rem 1rem;border-radius:14px;}
  /* small gold down-arrow between each stacked step, showing the one-way flow */
  .orbit-chip + .orbit-chip::before{
    content:"";position:absolute;left:50%;top:-.7rem;transform:translate(-50%,-50%);
    width:22px;height:14px;
    background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 16' fill='none' stroke='%23C18A24' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4l8 8 8-8'/%3E%3C/svg%3E") center/contain no-repeat;
  }
  .oc-icon svg{width:24px;height:24px;}
  .oc-text strong{font-size:1.05rem;}
  .oc-text span{font-size:.92rem;}
  .orbit-engine-label{font-size:1.12rem;margin-top:.5rem;}
  .orbit-engine-sub{font-size:.72rem;margin-top:.2rem;}
  .orbit-loop-note{display:block;}
}

/* ===== one motion only (desktop ring): the gold token laps the ring once on
   scroll-in, then rests; reduced-motion / no-JS never starts it and the diagram
   is already whole. ===== */
@media (prefers-reduced-motion:no-preference) and (min-width:561px){
  .orbit.is-playing .orbit-token{opacity:1;animation:orbitToken 2.4s cubic-bezier(.45,.02,.25,1) forwards;}
  @keyframes orbitToken{0%{stroke-dashoffset:0;opacity:0;}6%{opacity:1;}94%{opacity:1;}100%{stroke-dashoffset:-1231.5;opacity:0;}}
}


/* Reviews carousel */

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.2rem);
}

.reviews-intro p {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 36em;
}

.reviews-intro .reviews-rating {
  margin-top: 1.3rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.reviews-rating .stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-right: 0.4rem;
}

.reviews-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.carousel-track {
  list-style: none;
  /* Bleed into the gutter + generous padding so the card shadows aren't clipped
     by the scroll overflow. Left gets extra room (the first card's shadow) and
     sits only ~0.75rem in from the content edge; mobile bleed is capped below
     (the gutter is narrower there) to avoid horizontal scroll. */
  margin: 0 -1rem 0 -1.5rem;
  padding: 1.4rem 1rem 2.8rem 2.25rem;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 2.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Soft fade-out on the right edge instead of a hard clip into the scroll. */
  -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 4rem), transparent 100%);
          mask-image: linear-gradient(to right, #000 calc(100% - 4rem), transparent 100%);
}

.carousel-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 min(340px, 86%);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.review-card blockquote {
  margin: 0.85rem 0 1.2rem;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--cream);
}

.av-green { background: var(--green); }
.av-blue { background: #2B5D8A; }
.av-gold { background: var(--gold-text); }
.av-clay { background: #9C5535; }

.reviewer {
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.reviewer strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--green-tint);
  transform: translateY(-1px);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

/* About / team */

.section-head {
  max-width: 44em;
  margin-bottom: clamp(2.2rem, 4.5vw, 3.4rem);
}

.section-head p {
  margin-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 38em;
}

.about-head {
  margin-inline: auto;
  text-align: center;
}

.about-head p {
  margin-inline: auto;
  max-width: 42em;
}

.team-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.team-photo {
  width: clamp(140px, 16vw, 180px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.team-name {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.18rem;
  color: var(--ink);
}

/* ---------- Final CTA + form ---------- */

.final-cta {
  background: var(--green-deep);
  color: var(--cream);
  text-align: center;
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
}

.final-cta .container {
  padding-top: clamp(4rem, 8vw, 6.5rem);
}

.final-cta h2 {
  max-width: none;
  margin-inline: auto;
}

.final-cta p {
  margin: 1.2rem auto 0;
  max-width: 34em;
  color: #C9D6CB;
  font-size: 1.1rem;
}

.final-cta :focus-visible { outline-color: var(--gold); }

.lead-form {
  max-width: 640px;
  margin: 2.4rem auto 0;
  text-align: left;
}

.lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.2rem;
}

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #C9D6CB;
  margin-bottom: 0.4rem;
}

.field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(244, 239, 230, 0.25);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

.field input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.final-cta .lead-hint {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  color: #A9BCAE;
  max-width: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lead-form .btn {
  margin-top: 1.4rem;
  width: 100%;
  justify-content: center;
}

.lead-form .btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.final-cta .form-promise {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  color: #C9D6CB;
  max-width: none;
  text-align: center;
}

.final-cta .form-status {
  margin: 0.7rem 0 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gold);
  min-height: 1.4em;
  max-width: none;
  text-align: center;
}

.final-cta .form-thanks {
  margin: 0;
  padding: 1.6rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  text-align: center;
  max-width: none;
}

.final-cta .cta-alt {
  margin-top: 1.8rem;
  font-size: 0.98rem;
}

.cta-alt a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream);
  font-weight: 700;
}

.cta-alt a:hover { color: var(--gold); }

.cta-alt svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-darkest);
  color: #B9C6BC;
  padding-block: 3.2rem 1.6rem;
  font-size: 0.97rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
}

.brand-light { color: var(--cream); }

.footer-brand p { margin-top: 0.9rem; max-width: 26em; }

.footer-price {
  color: var(--gold);
  font-weight: 700;
}

.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8FA396;
  margin: 0 0 0.9rem;
}

.footer-contact a {
  display: block;
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.footer-contact a:hover { color: var(--gold); }

.footer-fine {
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  font-size: 0.85rem;
  color: #8FA396;
}

.site-footer :focus-visible { outline-color: var(--gold); }

/* ---------- Scroll reveal ---------- */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

section[id], [id="get-preview"] {
  scroll-margin-top: 5.5rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 820px) {
  .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header-phone span { display: none; }

  .reviews-head { grid-template-columns: 1fr; }

  .reviews-photo { display: none; }
}

@media (max-width: 560px) {
  .container { width: min(1120px, 100% - 2.2rem); }

  .cta-row .btn { width: 100%; justify-content: center; }

  .lead-grid { grid-template-columns: 1fr; }

  .header-inner { gap: 0.8rem; }

  .header-actions { gap: 0.8rem; }

  .header-phone { display: none; }

  .btn-small {
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
  }

  .brand span { font-size: 1.05rem; }

  .review-card { flex-basis: min(300px, 86%); }

  .carousel-nav { display: none; }
}

@media (max-width: 360px) {
  .brand span { font-size: 0.95rem; }

  .header-inner {
    gap: 0.5rem;
    justify-content: space-between;
  }

  .btn-small {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn { transition: none; }

  .btn:hover { transform: none; }

  /* Hero photos: hold on the first trade, no swipe */
  .hero-track { animation: none !important; transform: none !important; }
}

/* ---------- Print ---------- */

@media print {
  .js .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }

  .site-header {
    position: static;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .final-cta, .site-footer {
    background: none;
    color: var(--ink);
    box-shadow: none;
  }

  .final-cta p, .final-cta .form-promise, .site-footer h3, .footer-fine { color: var(--ink-soft); }

  .brand-light, .footer-contact a { color: var(--ink); }

  .final-cta .field label { color: var(--ink-soft); }

  .final-cta .cta-alt a { color: var(--ink); }

  .btn-primary, .btn-gold {
    color: var(--ink);
    border: 2px solid var(--green);
    box-shadow: none;
  }
}
