/* ============================================================
   Cline Property Management — "Workwear Blue"
   Editorial field-guide aesthetic. Navy / shirt blue / clean white.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Workwear blue */
  --ink:        #0D2233;
  --forest:     #153A5B;
  --forest-2:   #0F2D47;
  --moss:       #2C6F9F;
  --sage:       #8DBDDA;
  --sage-dim:   #C1DBEA;

  /* Paper */
  --bone:       #F2F7FA;
  --cream:      #FBFDFE;
  --paper-2:    #E2EEF5;
  --rule:       #C8DAE6;

  /* Accent */
  --amber:      #1F638F;
  --amber-lit:  #174A6C;
  --gold:       #A8D3EC;
  --gold-ink:   #1D5A80;
  --amber-dk:   #C0E1F3;
  --amber-fill: #1F638F;
  --rust:       #2D709D;
  --signal:     #E3F11B;

  /* Semantic */
  --bg:         var(--cream);
  --fg:         var(--ink);
  --muted:      #52697A;

  /* Type */
  --display: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --body:    "Archivo", "Helvetica Neue", Helvetica, sans-serif;

  /* Space */
  --gut: clamp(1.25rem, 4vw, 3rem);
  --max: 1280px;
  --measure: 68ch;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-weight: 500; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Paper grain — atmosphere without an image request */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -.018em;
}
.h-hero  { font-size: clamp(2.9rem, 1.5rem + 6.4vw, 6.6rem); }
.h-1     { font-size: clamp(2.3rem, 1.4rem + 3.9vw, 4.4rem); }
.h-2     { font-size: clamp(1.75rem, 1.2rem + 2.4vw, 2.9rem); }
.h-3     { font-size: clamp(1.3rem, 1.1rem + 1vw, 1.75rem); line-height: 1.12; }

.eyebrow {
  font-family: var(--body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 1px;
  background: currentColor;
  flex: none;
}
.eyebrow--plain::before { display: none; }

.lede {
  font-size: clamp(1.075rem, 1rem + .5vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 46ch;
}
.prose { max-width: var(--measure); }
.prose p + p { margin-top: 1.1em; }
.prose h2 { font-family: var(--display); font-size: clamp(1.6rem,1.2rem+1.6vw,2.2rem); line-height:1.1; margin: 2.2em 0 .55em; font-weight: 600; }
.prose h3 { font-family: var(--display); font-size: clamp(1.2rem,1.05rem+.7vw,1.5rem); margin: 1.8em 0 .4em; }
.prose ul { margin: 1em 0; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 1.6rem; margin: .5em 0; }
.prose ul li::before {
  content: ""; position: absolute; left: .25rem; top: .68em;
  width: .42rem; height: .42rem; background: var(--amber);
  transform: rotate(45deg);
}
.prose strong { font-weight: 600; color: var(--ink); }
.prose a { color: var(--moss); text-underline-offset: .18em; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.wrap--tight { max-width: 940px; }
.section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section--flush-top { padding-top: 0; }

.rule-top { border-top: 1px solid var(--rule); }

/* Dark surfaces */
.on-dark,
.hero-s, .hero, .phead, .cta-band, .ftr {
  --muted: var(--sage-dim);
  --amber: var(--amber-dk);
  --rule: rgba(243,239,228,.18);
  --fg: var(--bone);
}
.on-dark {
  background: var(--forest);
  color: var(--bone);
}
.on-dark .eyebrow { color: var(--gold); }
.on-dark .prose a { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem;
  font-weight: 600; font-size: .93rem;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform .3s var(--ease), background-color .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn.btn--primary { background: var(--amber-fill); color: #fff; }
.btn.btn--primary:hover { background: var(--amber-lit); color: #fff; }
.callbar .btn--solid-dark { background: var(--forest); color: var(--bone); }

.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { background: var(--fg); color: var(--bg); }
.on-dark .btn--ghost:hover { background: var(--bone); color: var(--forest); }

.btn--solid-dark { background: var(--forest); color: var(--bone); }
.btn--solid-dark:hover { background: var(--moss); }

.btn svg, .tel svg, .chip svg { width: 1.05em; height: 1.05em; flex: none; }
.btn .arw { transition: transform .35s var(--ease-out); }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background-color .3s;
}
.hdr::before {
  content: "";
  position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--amber) 0 18%, var(--gold) 18% 27%, transparent 27%);
}
.hdr.is-stuck { border-bottom-color: var(--rule); }
.hdr__in {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 78px;
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding-inline: var(--gut);
}
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex: none; margin-right: auto; }
.brand__mark { width: 44px; height: 44px; flex: none; border-radius: 5px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--body); font-weight: 800; font-size: 1.08rem;
  letter-spacing: .105em;
  text-transform: uppercase;
  color: var(--forest);
}
.brand__sub {
  font-size: .55rem; letter-spacing: .185em; text-transform: uppercase;
  color: var(--muted); margin-top: .34rem; font-weight: 700;
}
.hdr .brand::after {
  content: "Whitestown, IN";
  padding-left: 1rem;
  margin-left: .25rem;
  border-left: 1px solid var(--rule);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  position: relative;
  padding: .5rem .78rem;
  font-size: .875rem; font-weight: 500;
  text-decoration: none; color: var(--ink);
  border-radius: 2px;
  white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: .78rem; right: .78rem; bottom: .28rem;
  height: 1.5px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform .32s var(--ease-out);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--amber); }

/* dropdown */
.has-sub { position: relative; }
.sub {
  position: absolute; top: calc(100% + .35rem); left: 0;
  min-width: 244px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 3px;
  box-shadow: 0 18px 44px -14px rgba(10,31,49,.28);
  padding: .4rem;
  display: grid;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .22s, transform .22s var(--ease-out), visibility .22s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { padding: .55rem .7rem; font-size: .85rem; border-radius: 2px; }
.sub a::after { display: none; }
.sub a:hover { background: var(--paper-2); }

.hdr__cta { display: flex; align-items: center; gap: .8rem; flex: none; }
.tel {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; font-size: .9rem; text-decoration: none;
  color: var(--forest);
  white-space: nowrap;
}
.tel:hover { color: var(--amber); }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--rule); background: transparent;
  border-radius: 2px; cursor: pointer;
  padding: 0; align-items: center; justify-content: center; flex-direction: column;
}
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.burger span + span { margin-top: 4px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav, .hdr__cta .tel { display: none; }
  .burger { display: flex; }
}
/* Below this the header CTA crowds the burger off the viewport.
   The sticky call bar at the bottom carries both actions on mobile. */
@media (max-width: 880px) {
  .hdr__cta .btn { display: none; }
}
@media (max-width: 460px) {
  .brand { gap: .65rem; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__name { font-size: .95rem; }
  .brand__sub  { font-size: .49rem; letter-spacing: .135em; }
  .hero-s__acts .btn, .phead .hero__acts .btn { width: 100%; }
}
@media (max-width: 650px) {
  .hdr .brand::after { display: none; }
}

/* mobile drawer */
.drawer {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
  height: calc(100dvh - 78px);
  background: var(--cream);
  padding: 1.5rem var(--gut) 3rem;
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .28s, transform .28s var(--ease-out), visibility .28s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer a { display: block; padding: .8rem 0; text-decoration: none; border-bottom: 1px solid var(--rule); font-size: 1.05rem; }
.drawer__grp { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin: 1.6rem 0 .3rem; }
.drawer .btn { margin-top: 1.6rem; width: 100%; justify-content: center; }

/* ---------- Hero (split editorial — built for portrait photography) ---------- */
.hero-s {
  position: relative;
  background: var(--forest);
  color: var(--bone);
  overflow: hidden;
  border-bottom: 1px solid rgba(243,239,228,.18);
}
.hero-s::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(100% 85% at 5% 15%, rgba(46,87,64,.74), transparent 58%),
    repeating-linear-gradient(116deg, transparent 0 86px, rgba(243,239,228,.025) 86px 87px);
  pointer-events: none;
}
.hero-s__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(0, .93fr);
  align-items: stretch;
  gap: 0;
  width: 100%; max-width: 1440px; margin-inline: auto;
  padding-left: var(--gut);
}
.hero-s__body {
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(4.2rem, 8vw, 7.2rem);
  padding-right: clamp(2.5rem, 6vw, 6.5rem);
  min-height: clamp(620px, calc(100vh - 78px), 850px);
  isolation: isolate;
}
.hero-s__body::after {
  content: "";
  position: absolute;
  width: clamp(11rem, 20vw, 18rem); aspect-ratio: 1;
  left: clamp(-8rem, -7vw, -4rem); bottom: clamp(-10rem, -9vw, -5rem);
  border: 1px solid rgba(243,239,228,.1);
  border-radius: 50%;
  box-shadow: 0 0 0 2.5rem rgba(243,239,228,.018), 0 0 0 5rem rgba(243,239,228,.018);
  z-index: -1;
}
.hero-s__kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  align-self: flex-start;
  padding: .48rem .92rem .48rem .7rem;
  border: 1px solid rgba(243,239,228,.3);
  border-radius: 2px;
  font-size: .67rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(243,239,228,.9);
}
.hero-s__kicker .dot { width: 7px; height: 7px; border-radius: 0; background: var(--gold); flex: none; transform: rotate(45deg); }
.hero-s h1 { margin: 1.5rem 0 0; max-width: 12ch; text-wrap: balance; }
.hero-s h1.h-hero { font-size: clamp(3.1rem, 1.45rem + 5.25vw, 5.95rem); }
.hero-s h1 em { font-style: normal; color: var(--gold); }
.hero-s__lede { margin-top: 1.5rem; max-width: 47ch; color: rgba(243,239,228,.82); font-size: clamp(1.02rem,.98rem+.4vw,1.19rem); }
.hero-s__acts { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-s__foot {
  margin-top: clamp(1.8rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243,239,228,.18);
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.2rem;
}
.hero-s__stat b {
  display: block;
  font-family: var(--body); font-size: clamp(.79rem,.75rem+.2vw,.9rem);
  font-weight: 700; line-height: 1.3; color: var(--bone); text-transform: uppercase; letter-spacing: .035em;
}
.hero-s__stat span { display:block; margin-top:.2rem; font-size: .64rem; letter-spacing: .11em; text-transform: uppercase; color: rgba(243,239,228,.62); }

/* Real local work is treated like a field-report cover, not stock decoration. */
.hero-s__fig { position: relative; overflow: hidden; min-height: 320px; border-left: 1px solid rgba(243,239,228,.14); }
.hero-s__fig picture { display: block; width: 100%; height: 100%; }
.hero-s__fig img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-s__fig::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(96deg, rgba(27,51,36,.72) 0%, rgba(27,51,36,.08) 30%, transparent 58%),
    linear-gradient(to top, rgba(12,23,16,.3), transparent 38%);
  pointer-events: none;
}
.hero-s__folio {
  position: absolute; z-index: 2; top: 1.4rem; left: 1.4rem; right: 1.4rem;
  display: flex; justify-content: space-between; gap: 1rem;
  padding-bottom: .65rem;
  border-bottom: 1px solid rgba(255,255,255,.7);
  color: #fff;
  font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
}
.hero-s__badge {
  position: absolute; left: clamp(1rem,2.4vw,2rem); bottom: clamp(1rem,2.4vw,2rem);
  z-index: 2;
  display: grid; gap: .18rem;
  padding: 1rem 1.2rem 1.05rem;
  background: color-mix(in srgb, var(--cream) 96%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 0;
  border-left: 4px solid var(--amber);
  box-shadow: 14px 14px 0 rgba(10,31,49,.24);
  max-width: 17rem;
}
.hero-s__badge {
  --muted: #52697A;
  --amber: var(--amber-fill);
  --fg: var(--ink);
  color: var(--ink);
}
.hero-s__badge b { font-family: var(--display); font-size: 1rem; font-weight: 600; color: var(--forest); line-height: 1.1; }
.hero-s__badge span { font-size: .74rem; color: var(--muted); line-height: 1.35; }
.hero-s__badge .hero-s__badge-label { color: var(--amber); font-size: .58rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

@media (max-width: 900px) {
  .hero-s__grid { grid-template-columns: 1fr; gap: 0; padding-right: var(--gut); }
  .hero-s__body { min-height: 0; padding-block: clamp(3.2rem,10vw,5rem); padding-right: 0; }
  .hero-s__fig { margin-inline: calc(var(--gut) * -1); aspect-ratio: 4/3; min-height: 0; }
  .hero-s__fig::after { background: linear-gradient(to top, rgba(27,51,36,.55), transparent 45%); }
  .hero-s__foot { grid-template-columns: repeat(3,minmax(0,1fr)); gap: .8rem; }
}
@media (max-width: 420px) {
  .hero-s__badge { left: var(--gut); right: var(--gut); bottom: var(--gut); max-width: none; }
  .hero-s__folio { top: 1rem; left: var(--gut); right: var(--gut); }
}
@media (max-width: 560px) {
  .hero-s__foot { grid-template-columns: 1fr; gap: .75rem; }
  .hero-s__stat { display: grid; grid-template-columns: minmax(0,1.35fr) 1fr; align-items: baseline; gap: .8rem; }
  .hero-s__stat span { margin-top: 0; }
}

/* ---------- Cline standard strip ---------- */
.standard { background: var(--gold); color: var(--ink); border-bottom: 1px solid var(--rust); }
.standard__in { display: grid; grid-template-columns: auto 1fr; align-items: stretch; padding-block: 0; }
.standard__label {
  display: flex; align-items: center;
  padding: 1rem 1.5rem 1rem 0;
  border-right: 1px solid rgba(10,31,49,.3);
  font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap;
}
.standard ul { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); list-style: none; }
.standard li {
  display: flex; align-items: center; gap: .55rem;
  padding: 1rem clamp(.8rem,2vw,1.5rem);
  border-right: 1px solid rgba(10,31,49,.2);
  font-size: .73rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
}
.standard li:last-child { border-right: 0; }
.standard li span { font-family: var(--display); font-size: .78rem; color: #174A6C; }
@media (max-width: 900px) {
  .standard__in { grid-template-columns: 1fr; padding-inline: 0; }
  .standard__label { padding-inline: var(--gut); border-right: 0; border-bottom: 1px solid rgba(10,31,49,.22); }
  .standard ul { grid-template-columns: repeat(3,1fr); }
  .standard li { padding-inline: var(--gut); }
}
@media (max-width: 460px) {
  .standard ul { grid-template-columns: 1fr; }
  .standard li { border-right: 0; border-bottom: 1px solid rgba(10,31,49,.2); }
  .standard li:last-child { border-bottom: 0; }
  .standard li { font-size: .64rem; }
}

/* ---------- Hero (legacy full-bleed, used by nothing by default) ---------- */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--forest-2); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media, .hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 34%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(103deg, rgba(10,31,49,.93) 0%, rgba(10,31,49,.78) 38%, rgba(10,31,49,.30) 68%, rgba(10,31,49,.42) 100%),
    linear-gradient(to top, rgba(10,31,49,.72), transparent 46%);
}
.hero__in {
  position: relative;
  min-height: clamp(560px, 84vh, 860px);
  display: flex; flex-direction: column; justify-content: center;
  padding-block: clamp(4.5rem, 11vw, 8rem);
  color: var(--bone);
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  align-self: flex-start;
  padding: .42rem .85rem .42rem .6rem;
  border: 1px solid rgba(243,239,228,.3);
  border-radius: 100px;
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--bone);
  backdrop-filter: blur(4px);
}
.hero__kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: none; }
.hero h1 { margin: 1.4rem 0 0; max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero__lede { margin-top: 1.5rem; max-width: 44ch; color: rgba(243,239,228,.84); font-size: clamp(1.05rem,1rem+.45vw,1.25rem); }
.hero__acts { margin-top: 2.3rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__foot {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: flex; flex-wrap: wrap; gap: 1rem 2.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243,239,228,.2);
}
.hero__stat { display: flex; flex-direction: column; gap: .1rem; }
.hero__stat b { font-family: var(--display); font-size: 1.55rem; font-weight: 600; line-height: 1; color: var(--bone); }
.hero__stat span { font-size: .74rem; letter-spacing: .13em; text-transform: uppercase; color: rgba(243,239,228,.62); }

/* staggered entrance */
.rise { opacity: 0; transform: translateY(18px); animation: rise .9s var(--ease-out) forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
.d1 { animation-delay: .05s } .d2 { animation-delay: .16s } .d3 { animation-delay: .27s }
.d4 { animation-delay: .38s } .d5 { animation-delay: .5s }

/* ---------- Scroll reveal ---------- */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s } .rv-d2 { transition-delay: .16s } .rv-d3 { transition-delay: .24s }
.rv-d4 { transition-delay: .32s } .rv-d5 { transition-delay: .4s }

/* ---------- Section heading ---------- */
.shead { display: grid; gap: 1.1rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.shead__top { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 1rem 2rem; }
.shead p { max-width: 52ch; color: var(--muted); }

/* ---------- Seasons (signature block) ---------- */
.seasons { display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); }
.seasons__rail {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
  background: var(--cream);
}
.on-dark .seasons__rail { background: rgba(255,255,255,.03); }
.season {
  position: relative;
  display: grid; gap: .35rem;
  padding: clamp(1.1rem, 2.2vw, 1.7rem);
  text-align: left;
  border: 0; border-right: 1px solid var(--rule);
  background: transparent; cursor: pointer;
  transition: background-color .35s var(--ease);
}
.season:last-child { border-right: 0; }
.season::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--seas, var(--amber));
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out);
}
.season[aria-selected="true"]::before { transform: scaleX(1); }
.season[aria-selected="true"] { background: color-mix(in srgb, var(--seas) 9%, transparent); }
.season:hover { background: color-mix(in srgb, var(--seas) 6%, transparent); }
.season__mo { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.season__nm { font-family: var(--display); font-size: clamp(1.15rem,1rem+.8vw,1.6rem); font-weight: 600; line-height: 1; color: var(--seas); }
.season__ct { font-size: .78rem; color: var(--muted); }

.seasons__panel {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.6rem, 3.4vw, 2.8rem);
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: var(--cream);
}
.on-dark .seasons__panel { background: rgba(255,255,255,.03); }
.seasons__panel[hidden] { display: none; }
.seasons__body h3 { font-family: var(--display); font-size: clamp(1.5rem,1.2rem+1.4vw,2.1rem); font-weight: 600; line-height: 1.05; }
.seasons__body p { margin-top: .8rem; color: var(--muted); max-width: 44ch; }
.seasons__list { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .42rem .8rem;
  border: 1px solid var(--rule); border-radius: 100px;
  font-size: .82rem; font-weight: 500; text-decoration: none;
  transition: border-color .25s, background-color .25s, color .25s;
}
.chip:hover { border-color: var(--seas, var(--amber)); background: color-mix(in srgb, var(--seas, var(--amber)) 10%, transparent); }
.chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--seas, var(--amber)); flex: none; }
.seasons__fig { position: relative; border-radius: 3px; overflow: hidden; aspect-ratio: 3/4; }
.seasons__fig img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 860px) {
  .seasons__rail { grid-template-columns: repeat(2, 1fr); }
  .season:nth-child(2) { border-right: 0; }
  .season:nth-child(1), .season:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .seasons__panel { grid-template-columns: 1fr; }
  .seasons__fig { order: -1; aspect-ratio: 4/3; }
}

/* ---------- Service index (editorial list) ---------- */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.svc-row {
  display: grid;
  grid-template-columns: 4.5rem minmax(0,1fr) minmax(0,1.05fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  position: relative;
  transition: padding-inline .4s var(--ease-out);
}
.svc-row::before {
  content: ""; position: absolute; inset: 0 -1.25rem;
  background: var(--paper-2); opacity: 0; border-radius: 3px;
  transition: opacity .35s; z-index: -1;
}
.svc-row:hover::before { opacity: .55; }
.svc-row:hover { padding-inline: 1.25rem; }
.svc-row__no { font-family: var(--display); font-size: 1.05rem; color: var(--amber); font-weight: 600; }
.svc-row__nm { font-family: var(--display); font-size: clamp(1.4rem, 1.1rem + 1.5vw, 2.15rem); font-weight: 500; line-height: 1.02; letter-spacing: -.02em; }
.svc-row__ds { color: var(--muted); font-size: .95rem; }
.svc-row__go {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--rule); border-radius: 50%;
  transition: background-color .3s, border-color .3s, color .3s, transform .4s var(--ease-out);
}
.svc-row:hover .svc-row__go { background: var(--amber); border-color: var(--amber); color: #fff; transform: rotate(-45deg); }
@media (max-width: 760px) {
  .svc-row { grid-template-columns: 2.4rem 1fr auto; }
  .svc-row__ds { display: none; }
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: clamp(1rem, 2.2vw, 1.6rem); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.card {
  display: grid; gap: .7rem;
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
  border: 1px solid var(--rule); border-radius: 3px;
  background: var(--cream);
  text-decoration: none;
  transition: transform .4s var(--ease-out), border-color .3s, box-shadow .4s;
}
.on-dark .card { background: rgba(255,255,255,.035); }
a.card:hover { transform: translateY(-4px); border-color: var(--amber); box-shadow: 0 20px 40px -22px rgba(10,31,49,.4); }
.card__ic { width: 30px; height: 30px; color: var(--amber); }
.card h3 { font-family: var(--display); font-size: 1.22rem; font-weight: 600; line-height: 1.14; }
.card p { color: var(--muted); font-size: .92rem; }

/* photo card */
.pcard { position: relative; display: block; border-radius: 3px; overflow: hidden; text-decoration: none; background: var(--forest); }
.pcard img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; transition: transform 1s var(--ease-out), filter .6s; }
.pcard:hover img { transform: scale(1.045); }
.pcard__cap {
  position: absolute; inset: auto 0 0 0;
  padding: 2.6rem 1.15rem 1.05rem;
  background: linear-gradient(to top, rgba(10,31,49,.9), transparent);
  color: var(--bone);
}
.pcard__cap b { font-family: var(--display); font-size: 1.15rem; font-weight: 600; display: block; line-height: 1.1; }
.pcard__cap span { font-size: .78rem; color: rgba(243,239,228,.72); }

/* ---------- Before / After slider ---------- */
.ba {
  position: relative; overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3/4;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  background: var(--forest);
  -webkit-tap-highlight-color: transparent;
}
.ba::before {
  content: "Drag side to side";
  position: absolute; z-index: 3; left: 50%; bottom: 1rem;
  transform: translateX(-50%);
  padding: .42rem .7rem;
  background: rgba(10,31,49,.78); color: var(--bone);
  border: 1px solid rgba(243,239,228,.38);
  font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  line-height: 1; white-space: nowrap; pointer-events: none;
  backdrop-filter: blur(5px);
  transition: opacity .25s, transform .35s var(--ease-out);
}
.ba.is-used::before { opacity: 0; transform: translate(-50%,8px); }
.ba.is-dragging { cursor: grabbing; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba__after { position: absolute; inset: 0; clip-path: inset(0 0 0 var(--pos, 50%)); pointer-events: none; }
.ba__handle {
  position: absolute; z-index: 4; top: 0; bottom: 0; left: var(--pos, 50%);
  width: 3px; background: var(--bone);
  transform: translateX(-1.5px);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(10,31,49,.24), 0 0 18px rgba(10,31,49,.22);
}
.ba__grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bone); color: var(--forest);
  display: grid; place-items: center;
  border: 3px solid rgba(255,255,255,.68);
  box-shadow: 0 9px 24px -7px rgba(10,31,49,.65);
  transition: transform .2s var(--ease-out), background-color .2s, color .2s, box-shadow .2s;
}
.ba:hover .ba__grip,
.ba:focus-visible .ba__grip { transform: translate(-50%,-50%) scale(1.06); }
.ba.is-dragging .ba__grip {
  transform: translate(-50%,-50%) scale(1.12);
  background: var(--amber); color: #fff;
  box-shadow: 0 11px 30px -6px rgba(10,31,49,.72);
}
.ba__tag {
  position: absolute; z-index: 3; top: .8rem;
  padding: .3rem .68rem;
  font-size: .66rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  border-radius: 2px;
  pointer-events: none;
  backdrop-filter: blur(3px);
}
.ba__tag--b { left: .8rem; background: rgba(10,31,49,.72); color: var(--bone); }
.ba__tag--a { right: .8rem; background: var(--amber); color: #fff; }
.ba:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.ba-cap { margin-top: .85rem; display: grid; gap: .2rem; }
.ba-cap b { font-family: var(--display); font-size: 1.12rem; font-weight: 600; line-height: 1.15; }
.ba-cap span { font-size: .82rem; color: var(--muted); line-height: 1.45; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.8rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__fig { order: 2; }
.split__fig { position: relative; border-radius: 3px; overflow: hidden; }
.split__fig img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.split__fig--tall img { aspect-ratio: 3/4; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split__fig { order: 0; }
}

/* offset stacked figure */
.stackfig { position: relative; padding-bottom: 3.5rem; padding-right: 3.5rem; }
.stackfig__a { border-radius: 3px; overflow: hidden; }
.stackfig__a img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.stackfig__b {
  position: absolute; right: 0; bottom: 0;
  width: 52%; border-radius: 3px; overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 24px 48px -20px rgba(10,31,49,.45);
}
.on-dark .stackfig__b { border-color: var(--forest); }
.stackfig__b img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
@media (max-width: 560px) { .stackfig { padding-bottom: 2.2rem; padding-right: 2.2rem; } }

/* ---------- Area / map ---------- */
.areas { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,240px),1fr)); gap: 1rem; }
.area {
  display: grid; gap: .5rem; padding: 1.5rem;
  border: 1px solid var(--rule); border-radius: 3px;
  text-decoration: none; position: relative; overflow: hidden;
  transition: border-color .3s, transform .4s var(--ease-out);
}
.area:hover { border-color: var(--amber); transform: translateY(-3px); }
.area__nm { font-family: var(--display); font-size: 1.35rem; font-weight: 600; }
.area__mt { font-size: .82rem; color: var(--muted); }
.area__pin { width: 22px; height: 22px; color: var(--amber); }

/* Homepage service-area grid. */
.service-area-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 75% at 2% 8%, rgba(44,111,159,.72), transparent 67%),
    var(--forest-2);
}
.service-area-section::after {
  content: "LOCAL";
  position: absolute; right: -.05em; top: .02em;
  font-family: var(--display); font-weight: 700; font-size: clamp(5rem,16vw,14rem);
  letter-spacing: -.05em; line-height: .8;
  color: rgba(243,239,228,.025);
  pointer-events: none;
}
.service-area-section .wrap { position: relative; z-index: 1; }
.service-city-grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  border: 1px solid var(--rule);
}
.service-city {
  min-height: 220px;
  display: grid;
  /* Top-aligned, not bottom. Bottom alignment lined up the descriptions, which
     meant the city names floated to a different height in every card depending
     on how many lines its copy wrapped to -- three lines for Carmel, one for
     Indianapolis. The name is what the eye tracks across a row, so it read as
     broken. Aligning to the top pins the numbers and names to a common line and
     lets the copy hang. */
  align-content: start;
  /* One implicit column sized to `auto` means the widest child -- the city
     name -- sets the column width, so "Indianapolis" stretched its column
     206px wide while "Avon" got 146px. Identical description text then wrapped
     to one line in some cards and two in others, and the long names overflowed
     their own padding box. Pin the column to the content box so every card
     wraps the same. */
  grid-template-columns: minmax(0, 1fr);
  gap: .55rem;
  padding: clamp(1.25rem,2vw,1.75rem);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(145deg,rgba(255,255,255,.03),transparent 70%);
  transition: background-color .3s;
}
.service-city:nth-child(5n) { border-right: 0; }
.service-city:nth-last-child(-n+5) { border-bottom: 0; }
.service-city:hover { background-color: rgba(243,239,228,.045); }
.service-city__no { color: var(--gold); font-size: .63rem; font-weight: 700; letter-spacing: .16em; }
.service-city__name {
  min-width: 0;
  max-width: 100%;
  font-size: clamp(1.5rem,2vw,2rem);
  font-weight: 600;
  line-height: .95;
  overflow-wrap: break-word;
}
.service-city__copy { max-width: 42ch; color: var(--sage-dim); font-size: .88rem; line-height: 1.6; }
.service-city-grid--light { border-color: var(--line); }
.service-city-grid--light .service-city {
  color: var(--ink);
  border-color: var(--line);
  background: linear-gradient(145deg,rgba(255,255,255,.85),rgba(255,255,255,.28));
}
.service-city-grid--light .service-city__copy { color: var(--muted); }
.service-city-grid--light .service-city:hover { background-color: rgba(255,255,255,.9); }
@media (max-width: 1000px) {
  .service-city-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-city { border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
  .service-city:nth-child(5n) { border-right: 1px solid var(--rule); }
  .service-city:nth-child(2n) { border-right: 0; }
  .service-city:nth-last-child(-n+5) { border-bottom: 1px solid var(--rule); }
  .service-city:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 650px) {
  .service-city-grid { grid-template-columns: 1fr; }
  .service-city { min-height: 210px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .service-city:nth-child(5n), .service-city:nth-child(2n) { border-right: 0; }
  .service-city:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .service-city:last-child { border-bottom: 0; }
}

/* ---------- Steps ---------- */
.steps { counter-reset: s; display: grid; gap: 0; }
.step {
  counter-increment: s;
  display: grid; grid-template-columns: auto 1fr; gap: 1.3rem;
  padding: 1.5rem 0; border-bottom: 1px solid var(--rule);
}
.step:last-child { border-bottom: 0; }
.step::before {
  content: counter(s,decimal-leading-zero);
  font-family: var(--display); font-size: 1.05rem; font-weight: 600;
  color: var(--amber);
  padding-top: .1rem;
}
.step h3 { font-family: var(--display); font-size: 1.25rem; font-weight: 600; line-height: 1.15; }
.step p { color: var(--muted); margin-top: .3rem; font-size: .94rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-family: var(--display); font-size: clamp(1.08rem,1rem+.5vw,1.3rem); font-weight: 600; line-height: 1.25;
  transition: color .25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--amber); }
.faq summary .pm { position: relative; width: 18px; height: 18px; flex: none; }
.faq summary .pm::before, .faq summary .pm::after {
  content: ""; position: absolute; inset: 50% 0 auto 0; height: 1.5px; background: currentColor;
  transition: transform .35s var(--ease-out);
}
.faq summary .pm::after { transform: rotate(90deg); }
.faq details[open] summary { color: var(--amber); }
.faq details[open] summary .pm::after { transform: rotate(0); }
.faq__a { padding-bottom: 1.4rem; color: var(--muted); max-width: 62ch; }
.faq__a p + p { margin-top: .8em; }

/* ---------- Quote form ---------- */
.qform { display: grid; gap: 1rem; }
.qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .qrow { grid-template-columns: 1fr; } }
.field { display: grid; gap: .4rem; }
.field > label { font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .96rem;
  padding: .85rem .95rem;
  border: 1px solid var(--rule); border-radius: 2px;
  background: var(--cream); color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.on-dark .field input, .on-dark .field select, .on-dark .field textarea {
  background: rgba(255,255,255,.05); color: var(--bone); border-color: rgba(243,239,228,.22);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--amber) 20%, transparent);
}
.field textarea { resize: vertical; min-height: 108px; }
.field--err input, .field--err select, .field--err textarea { border-color: #B3452A; }
.field__err { font-size: .78rem; color: #B3452A; display: none; }
.field--err .field__err { display: block; }
.qnote { font-size: .82rem; color: var(--muted); }
.qok {
  display: none; padding: 1.5rem; border: 1px solid var(--moss); border-radius: 3px;
  background: color-mix(in srgb, var(--moss) 10%, transparent);
}
.qok.is-on { display: block; }
.qok b { font-family: var(--display); font-size: 1.2rem; display: block; margin-bottom: .3rem; }

/* checkbox group */
.checks { display: flex; flex-wrap: wrap; gap: .5rem; }
.check { position: relative; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check span {
  display: inline-block; padding: .5rem .85rem;
  text-transform: none; letter-spacing: normal; font-weight: 500;
  border: 1px solid var(--rule); border-radius: 100px;
  font-size: .85rem; cursor: pointer;
  transition: all .22s;
}
.check input:checked + span { background: var(--amber); border-color: var(--amber); color: #fff; }
.check input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 2px; }

/* ---------- Gallery ---------- */
.gal { columns: 3; column-gap: 1rem; }
@media (max-width: 900px) { .gal { columns: 2; } }
@media (max-width: 520px) { .gal { columns: 1; } }
.gal figure { break-inside: avoid; margin: 0 0 1rem; position: relative; border-radius: 3px; overflow: hidden; background: var(--paper-2); }
.gal img { width: 100%; transition: transform .9s var(--ease-out); }
.gal figure:hover img { transform: scale(1.04); }
.gal figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem .9rem .8rem;
  background: linear-gradient(to top, rgba(10,31,49,.88), transparent);
  color: var(--bone); font-size: .82rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s, transform .35s var(--ease-out);
}
.gal figure:hover figcaption, .gal figure:focus-within figcaption { opacity: 1; transform: none; }

.gal-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.gal-filter button {
  padding: .5rem .95rem; border: 1px solid var(--rule); border-radius: 100px;
  background: transparent; cursor: pointer; font-size: .85rem; font-weight: 500;
  transition: all .22s;
}
.gal-filter button:hover { border-color: var(--amber); }
.gal-filter button[aria-pressed="true"] { background: var(--forest); border-color: var(--forest); color: var(--bone); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; isolation: isolate; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg, .cta-band__bg picture { display: block; width: 100%; height: 100%; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(10,31,49,.94), rgba(10,31,49,.72)); }
.cta-band__in { padding-block: clamp(3.5rem, 8vw, 6.5rem); color: var(--bone); display: grid; gap: 1.6rem; justify-items: start; }
.cta-band h2 { max-width: 18ch; }
.cta-band p { max-width: 46ch; color: rgba(243,239,228,.8); }
.cta-band__acts { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Footer ---------- */
.ftr { background: var(--forest); color: var(--bone); --muted: var(--sage-dim); --rule: rgba(243,239,228,.16); }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.8rem,4vw,3rem); padding-block: clamp(3rem,6vw,4.5rem); }
@media (max-width: 900px) { .ftr__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .ftr__top { grid-template-columns: 1fr; } }
.ftr .ftr__h { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1rem; }
.ftr ul { list-style: none; display: grid; gap: .55rem; }
.ftr a:not(.btn) { text-decoration: none; color: rgba(243,239,228,.82); font-size: .92rem; transition: color .22s; }
.ftr a:hover { color: var(--gold); }
.ftr__brand .brand__name { color: var(--bone); font-size: 1.3rem; }
.ftr__brand .brand__sub { color: var(--sage-dim); }
.ftr__blurb { margin-top: 1rem; color: var(--sage-dim); font-size: .9rem; max-width: 34ch; }
.ftr__bot {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between;
  padding-block: 1.5rem; border-top: 1px solid var(--rule);
  font-size: .82rem; color: var(--sage-dim);
}
.ftr__nap { display: grid; gap: .5rem; }
.ftr__nap a { display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; font-weight: 500; }
.ftr .ftr__nap a, .on-dark .ftr__nap a { color: var(--bone); }
.ftr__nap svg { width: 16px; height: 16px; color: var(--gold-ink); flex: none; }
.on-dark .ftr__nap svg, .ftr .ftr__nap svg { color: var(--gold); }

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rule);
  background: var(--cream);
  padding: .55rem;
  gap: .5rem;
  box-shadow: 0 -8px 24px -12px rgba(10,31,49,.3);
}
.callbar a { justify-content: center; padding-block: .8rem; }
@media (max-width: 700px) { .callbar { display: grid; } body { padding-bottom: 76px; } }

/* ---------- Breadcrumb ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; font-size: .8rem; color: var(--muted); padding-block: 1.2rem; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--amber); }
.crumbs .sep { opacity: .5; }

/* ---------- Page header (interior) — split, same logic as the hero ---------- */
.phead { position: relative; background: var(--forest); color: var(--bone); overflow: hidden; }
.phead::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(115% 95% at 6% 22%, rgba(46,87,64,.5), transparent 60%);
  pointer-events: none;
}
.phead__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  width: 100%; max-width: var(--max); margin-inline: auto;
  padding-left: var(--gut);
  align-items: stretch;
}
.phead__in {
  padding-block: clamp(2.6rem, 6vw, 4.6rem);
  padding-right: clamp(0rem, 2vw, 2rem);
  display: flex; flex-direction: column; justify-content: center; gap: 1.1rem;
  min-height: clamp(300px, 40vh, 440px);
}
.phead h1 { max-width: 16ch; }
.phead p { max-width: 46ch; color: rgba(243,239,228,.82); }
.phead .crumbs { color: rgba(243,239,228,.6); padding-block: 0; }
.phead .crumbs a:hover { color: var(--gold); }
.phead__fig { position: relative; overflow: hidden; min-height: 240px; }
.phead__fig picture { display: block; width: 100%; height: 100%; }
.phead__fig img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.phead__fig::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(27,51,36,.78) 0%, rgba(27,51,36,.2) 36%, transparent 64%);
}
@media (max-width: 900px) {
  .phead__grid { grid-template-columns: 1fr; gap: 0; padding-right: var(--gut); }
  .phead__in { min-height: 0; padding-block: clamp(2rem,7vw,3rem); }
  .phead__fig { margin-inline: calc(var(--gut) * -1); aspect-ratio: 16/9; min-height: 0; }
  .phead__fig::after { background: linear-gradient(to top, rgba(27,51,36,.5), transparent 50%); }
}

/* Winter variant — used where we have no real photography yet.
   Deliberately graphic rather than stock: an illustration reads as a design
   choice, a stranger's plow photo reads as a lie. Swap in .phead__fig with a
   <picture> the moment real winter photos exist. */
.phead--winter { background: #1E3141; }
.phead--winter::before {
  background: radial-gradient(120% 95% at 8% 20%, rgba(74,107,132,.6), transparent 62%);
}
.phead--winter .phead__fig { background: linear-gradient(168deg, #33526B 0%, #1E3141 62%, #16242F 100%); }
.phead--winter .phead__fig::after {
  background: linear-gradient(96deg, rgba(30,49,65,.82) 0%, rgba(30,49,65,.22) 38%, transparent 66%);
}
.winterscape { position: absolute; inset: 0; width: 100%; height: 100%; }
.winterscape .drift { fill: #F3EFE4; }
.winterscape .drift-2 { fill: #DCE6EC; }
.winterscape .drift-3 { fill: #B9CBD8; }
.winterscape .sky-line { stroke: rgba(243,239,228,.22); stroke-width: 1; }
.flake { fill: #F3EFE4; opacity: .85; }
@media (prefers-reduced-motion: no-preference) {
  .flake { animation: fall linear infinite; }
  @keyframes fall {
    0%   { transform: translate3d(0,-14%,0); opacity: 0; }
    12%  { opacity: .9; }
    88%  { opacity: .55; }
    100% { transform: translate3d(-6px,118%,0); opacity: 0; }
  }
}
.phead--winter .eyebrow { color: #9FC4DC !important; }

/* legacy full-bleed variant */
.phead__bg { position: absolute; inset: 0; z-index: -2; }
.phead__bg, .phead__bg picture { display: block; width: 100%; height: 100%; }
.phead__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }

/* ---------- Misc ---------- */
.kv { display: grid; gap: .1rem; }
.kv dt { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.kv dd { margin: 0; font-size: 1rem; }
.pricebox { border: 1px solid var(--rule); border-radius: 3px; padding: clamp(1.3rem,2.6vw,2rem); background: var(--cream); }
.on-dark .pricebox { background: rgba(255,255,255,.04); }
.tag {
  display: inline-block; padding: .28rem .6rem; border-radius: 2px;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: color-mix(in srgb, var(--amber) 14%, transparent); color: var(--amber-lit);
}
.skip {
  position: absolute; left: -9999px;
  background: var(--amber); color: #fff; padding: .8rem 1.2rem; z-index: 200; text-decoration: none;
}
.skip:focus { left: 1rem; top: 1rem; }
.vh { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Contact detail links ---------- */
.contact-tel, .contact-mail {
  display: inline-flex; align-items: center; gap: .6rem;
  color: var(--forest); text-decoration: none;
  transition: color .22s;
}
.contact-tel { font-size: 1.15rem; font-weight: 600; }
.contact-mail { font-weight: 500; font-size: .92rem; overflow-wrap: anywhere; }
.contact-tel:hover, .contact-mail:hover { color: var(--amber); }
.contact-tel svg, .contact-mail svg { width: 18px; height: 18px; flex: none; color: var(--gold-ink); }
@media (max-width: 420px) { .contact-mail { font-size: .84rem; } }

/* ---------- Motion reel (vertical clips) ----------
   Mike's clips are all phone-portrait, so they are presented at their native
   aspect rather than cropped into a letterbox they were never framed for. */
.reel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.8rem, 2vw, 1.4rem);
}
@media (max-width: 780px) {
  .reel {
    grid-auto-flow: column;
    grid-auto-columns: 74%;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gut);
    margin-inline: calc(var(--gut) * -1);
    padding-inline: var(--gut);
    scrollbar-width: none;
  }
  .reel::-webkit-scrollbar { display: none; }
  .clip { scroll-snap-align: start; }
}

.clip {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background: var(--forest-2);
  aspect-ratio: 9 / 13;
  isolation: isolate;
}
.clip video,
.clip .clip__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.clip__poster { z-index: 1; transition: opacity .5s var(--ease-out); }
.clip.is-playing .clip__poster { opacity: 0; }

.clip__scrim {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 3rem .95rem .95rem;
  background: linear-gradient(to top, rgba(10,31,49,.9), rgba(10,31,49,.45) 45%, transparent);
  color: var(--bone);
  pointer-events: none;
}
.clip__scrim b {
  display: block;
  font-family: var(--display); font-weight: 600;
  font-size: 1.08rem; line-height: 1.15;
}
.clip__scrim span { font-size: .8rem; color: rgba(243,239,228,.78); }

.clip__btn {
  position: absolute; right: .7rem; top: .7rem; z-index: 3;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid rgba(243,239,228,.35);
  border-radius: 50%;
  background: rgba(10,31,49,.5);
  backdrop-filter: blur(6px);
  color: var(--bone);
  cursor: pointer;
  transition: background-color .25s, border-color .25s, transform .3s var(--ease-out);
}
.clip__btn:hover { background: var(--amber); border-color: var(--amber); transform: scale(1.06); }
.clip__btn .i-pause { display: none; }
.clip.is-playing .clip__btn .i-play { display: none; }
.clip.is-playing .clip__btn .i-pause { display: block; }

.clip__mute {
  position: absolute; left: .7rem; top: .7rem; z-index: 3;
  padding: .28rem .6rem;
  border-radius: 100px;
  background: rgba(10,31,49,.5);
  backdrop-filter: blur(6px);
  color: rgba(243,239,228,.85);
  font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  pointer-events: none;
}

.reel-note {
  margin-top: 1.1rem;
  font-size: .84rem;
  color: var(--muted);
  display: flex; align-items: center; gap: .5rem;
}
.reel-note svg { width: 1em; height: 1em; flex: none; color: var(--amber); }

/* A single clip sitting beside body copy on a service page. */
.clip--inline { max-width: 330px; }
.clip-aside {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 760px) {
  .clip-aside { grid-template-columns: 1fr; }
  .clip--inline { max-width: 100%; }
}

/* Send failure notice on the estimate form. */
.qsend-err {
  padding: .8rem 1rem;
  border: 1px solid #A33F22;
  border-left-width: 3px;
  border-radius: 2px;
  background: color-mix(in srgb, #A33F22 8%, transparent);
  color: #8A3218;
  font-size: .9rem;
}
.qsend-err a { color: inherit; font-weight: 600; }

/* The footer lists the full ten-community service area, while mowing is
   intentionally narrower. */
.ftr__note {
  margin-top: .7rem;
  font-size: .78rem;
  line-height: 1.45;
  color: var(--sage-dim);
  max-width: 22ch;
}
