/* ============================================================================
   Fair Dinkum Containers — stylesheet

   COLOUR SYSTEM AND MEASURED CONTRAST
   Brand green #2D8856 comes from the CRM brands table (code FDC). At 4.40:1 on
   white it does NOT clear 4.5:1, so it is never used for body text or for a
   button label. Small text and buttons carry --green-deep #1E5B3A (7.93:1).
   The brand green is reserved for large display type, rules, and non-text
   accents. Every text pairing used on this site clears 4.5:1; most clear 7:1.

   token        hex       on          ratio   used for
   --ink        #12211A   #FFFFFF     16.6:1  headings, body
   --ink        #12211A   --wash      15.4:1  headings, body on tint
   --muted      #4A5B52   #FFFFFF      7.15:1 secondary and meta text
   --muted      #4A5B52   --wash       6.67:1 secondary and meta text
   --green-deep #1E5B3A   #FFFFFF      7.93:1 links, small brand text
   --green-deep #1E5B3A   --wash       7.40:1 links, small brand text
   --green      #2D8856   #FFFFFF      4.40:1 LARGE DISPLAY TYPE ONLY
   #FFFFFF      white     --green-deep 7.93:1 primary button label
   #FFFFFF      white     --amber      5.83:1 accent button label
   #FFFFFF      white     --forest    15.2:1  text on the dark surface
   --sage       #9CCFB4   --forest     8.70:1 secondary text on dark
   --pale       #DCEFE4   --forest    12.68:1 body text on dark
   --amber      #A8480E   #FFFFFF      5.83:1 accent headings and hover

   NON-TEXT ONLY — these fail 4.5:1 and never carry text:
   --green on --forest (3.2:1) decorative rules inside dark bands
   --rule #DCE6DF on white, hairlines and dividers

   LAYOUT ARCHITECTURE — deliberately its own, not a recolour of any other
   site in the group. Two-tier masthead (identity row + nav band with a
   photographic mega-menu), a split hero with an overlapping quote card,
   full-bleed editorial photo bands, size pages as spec sheets with a hard
   dimension table, and a three-column footer. There is no narrative spine and
   no single-tier masthead anywhere in this file.
   ========================================================================= */

*, *::before, *::after { box-sizing: border-box; }

:root {
  --ink: #12211A;
  --muted: #4A5B52;
  --green: #2D8856;
  --green-deep: #1E5B3A;
  --forest: #0E2A1C;
  --forest-2: #143726;
  --amber: #A8480E;
  --sage: #9CCFB4;
  --pale: #DCEFE4;
  --wash: #F4F8F5;
  --rule: #DCE6DF;
  --white: #FFFFFF;

  --display: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --text: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1220px;
  --narrow: 760px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(18,33,26,.04), 0 8px 24px rgba(18,33,26,.06);
  --shadow-lg: 0 2px 6px rgba(18,33,26,.06), 0 24px 60px rgba(18,33,26,.14);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
/* height:auto is load-bearing. build.js hardcodes width and height on every
   <img> for CLS, and without this a scaled image keeps its attribute height
   and renders as a distorted strip. It also silently disables aspect-ratio. */

h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.08; letter-spacing: -0.022em; margin: 0 0 .6em; color: var(--ink); text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4.05rem); letter-spacing: -0.032em; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.7rem); letter-spacing: -0.028em; }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.45rem); font-weight: 700; letter-spacing: -0.018em; }
h4 { font-size: 1.05rem; font-weight: 700; }
p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--amber); }

strong, b { font-weight: 650; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.3em; }
li { margin-bottom: .45em; }
li:last-child { margin-bottom: 0; }

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

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100%, var(--narrow)); }

.skip { position: absolute; left: -9999px; top: 0; background: var(--forest); color: var(--white); padding: .8rem 1.2rem; z-index: 200; border-radius: 0 0 var(--radius) 0; }
.skip:focus { left: 0; color: var(--white); }

/* ---------- eyebrow / section label ---------- */
.eyebrow { font-family: var(--display); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--green-deep); margin: 0 0 .9rem; display: flex; align-items: center; gap: .6rem; }
/* On a photographic hero the sage eyebrow sat at roughly 3:1 over the image.
   White it is — the rule keeps the brand colour without carrying the text. */
.hero .eyebrow, .phead .eyebrow { color: #FFFFFF; }
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--green); border-radius: 2px; flex: none; }
.on-dark .eyebrow, .band-dark .eyebrow { color: var(--sage); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--display); font-weight: 750; font-size: 1rem; line-height: 1; padding: .95rem 1.5rem; border-radius: 999px; border: 2px solid transparent; text-decoration: none; cursor: pointer; transition: transform .14s ease, background-color .14s ease, border-color .14s ease, box-shadow .14s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--white); box-shadow: 0 6px 18px rgba(168,72,14,.28); }
.btn-primary:hover { background: #8E3C0B; color: var(--white); }
.btn-green { background: var(--green-deep); color: var(--white); }
.btn-green:hover { background: #17492E; color: var(--white); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--green-deep); color: var(--green-deep); background: var(--wash); }
.btn-ondark { background: transparent; color: var(--white); border-color: rgba(255,255,255,.42); }
.btn-ondark:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: var(--white); }
.btn-lg { font-size: 1.08rem; padding: 1.1rem 1.9rem; }
.btn-wide { width: 100%; }

/* ---------- masthead: two tiers ---------- */
.top { background: var(--white); border-bottom: 1px solid var(--rule); }
.top .wrap { display: flex; align-items: center; gap: 1.5rem; min-height: 84px; }
.top-brand { display: block; flex: none; }
.top-brand svg { height: 46px; width: auto; display: block; }
.top-say { flex: 1; display: flex; flex-direction: column; gap: .1rem; border-left: 1px solid var(--rule); padding-left: 1.5rem; min-width: 0; }
.top-say b { font-family: var(--display); font-weight: 750; font-size: .93rem; color: var(--green-deep); }
.top-say span { font-size: .82rem; color: var(--muted); line-height: 1.45; }
.top-act { display: flex; align-items: center; gap: .9rem; flex: none; }
.top-rating { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; padding-right: .9rem; border-right: 1px solid var(--rule); }
.top-rating b { font-family: var(--display); font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -.02em; }
.top-rating .stars { color: #B8860B; font-size: .8rem; letter-spacing: .06em; }
.top-rating small { font-size: .7rem; color: var(--muted); font-weight: 600; white-space: nowrap; }
.top-tel { font-family: var(--display); font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: var(--ink); text-decoration: none; white-space: nowrap; }
.top-tel:hover { color: var(--amber); }
.top-tel small { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.navband { background: var(--forest); position: sticky; top: 0; z-index: 90; }
.navband .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.menu { display: flex; list-style: none; margin: 0; padding: 0; gap: .3rem; }
.menu > li { margin: 0; position: relative; }
.menu > li > a { display: block; font-family: var(--display); font-weight: 650; font-size: .96rem; color: var(--pale); text-decoration: none; padding: 1.05rem .95rem; border-bottom: 3px solid transparent; }
.menu > li > a:hover, .menu > li:focus-within > a { color: var(--white); border-bottom-color: var(--green); background: rgba(255,255,255,.05); }
.nav-mini { display: flex; align-items: center; gap: .8rem; }
.nav-mini .nav-hours { font-size: .8rem; color: var(--sage); white-space: nowrap; }

/* mega menu — the photographic panel. Nothing else in the group has one. */
.mega { position: absolute; left: 0; top: 100%; width: min(920px, 92vw); background: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg); box-shadow: var(--shadow-lg); padding: 1.6rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .16s ease, transform .16s ease, visibility .16s; z-index: 95; }
.menu > li:hover .mega, .menu > li:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega a { display: block; text-decoration: none; color: var(--ink); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule); transition: border-color .14s ease, transform .14s ease; }
.mega a:hover { border-color: var(--green); transform: translateY(-2px); }
.mega img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.mega .mega-ph { aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--forest-2), var(--green-deep)); }
.mega b { display: block; font-family: var(--display); font-weight: 750; font-size: .95rem; padding: .7rem .8rem .15rem; }
.mega span { display: block; font-size: .8rem; color: var(--muted); padding: 0 .8rem .8rem; line-height: 1.4; }

.burger { display: none; align-items: center; gap: .55rem; background: transparent; border: 0; padding: .7rem .2rem; cursor: pointer; }
.burger-label { font-family: var(--display); font-weight: 750; font-size: .92rem; color: var(--pale); }
.burger-bars { display: block; }
.burger-bars span { display: block; width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; margin: 5px 0; transition: transform .18s ease, opacity .18s ease; }
.burger[aria-expanded="true"] .burger-bars span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] .burger-bars span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-bars span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero: split, photo + overlapping quote card ---------- */
.hero { position: relative; background: var(--forest); color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* Scrim over the hero photograph. This has to do two jobs at once: keep the
   white display type at 4.5:1 over whatever is behind it, and still let the
   photograph read as a photograph. An early version ran 96%/90% opacity across
   the left 38% and the image was effectively invisible — the hero looked like
   a flat green block. Keep the left end heavy enough for the type and let it
   fall away fast. */
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(103deg, rgba(11,34,22,.93) 0%, rgba(11,34,22,.86) 22%, rgba(12,36,24,.62) 44%, rgba(14,42,28,.3) 68%, rgba(14,42,28,.12) 100%); }
.hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(11,34,22,.55), rgba(11,34,22,0) 45%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 4vw, 3.4rem); align-items: center; padding: clamp(2.6rem, 4.5vw, 4rem) 0 clamp(2.6rem, 4.5vw, 4rem); }
.hero h1 { color: var(--white); margin-bottom: .45em; }
.hero h1 em { font-style: normal; color: var(--sage); }
.hero-lede { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: var(--pale); max-width: 34em; margin-bottom: 1.9rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2rem; }
.hero-points { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.hero-points li { position: relative; padding-left: 1.9rem; color: var(--pale); font-size: .97rem; }
.hero-points li::before { content: ""; position: absolute; left: 0; top: .55em; width: 11px; height: 11px; border-radius: 3px; background: var(--green); }

/* the quote card, lifted off the hero */
.quotecard { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: clamp(1.4rem, 2.2vw, 2rem); }
.quotecard h2 { font-size: 1.5rem; margin-bottom: .3rem; }
.quotecard .qc-sub { font-size: .89rem; color: var(--muted); margin-bottom: 1.2rem; }

/* ---------- promise strip ---------- */
.promise { background: var(--wash); border-bottom: 1px solid var(--rule); }
.promise .wrap { display: flex; flex-wrap: wrap; align-items: baseline; gap: .3rem .9rem; padding: .9rem 0; }
.promise b { font-family: var(--display); font-weight: 750; color: var(--green-deep); font-size: .97rem; }
.promise span { color: var(--muted); font-size: .89rem; }

/* ---------- generic section rhythm ---------- */
.sec { padding: clamp(3.2rem, 6.5vw, 5.6rem) 0; }
.sec-tight { padding: clamp(2.4rem, 4vw, 3.4rem) 0; }
.sec-wash { background: var(--wash); }
.sec-dark { background: var(--forest); color: var(--pale); }
.sec-dark h2, .sec-dark h3 { color: var(--white); }
.sec-dark a { color: var(--sage); }
.sec-dark a:hover { color: var(--white); }
.sec-head { max-width: 46rem; margin-bottom: clamp(2rem, 3.5vw, 3rem); }
.sec-head p { font-size: 1.1rem; color: var(--muted); }
.sec-dark .sec-head p { color: var(--pale); }

/* ---------- editorial photo band: alternating, full-bleed image ---------- */
.band { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.band-media { position: relative; min-height: 420px; background: linear-gradient(140deg, var(--forest-2), var(--green-deep)); }
.band-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1.5rem, 5vw, 4.5rem); }
.band-body .wrapless { max-width: 34rem; }
.band-alt .band-media { order: 2; }
.band-dark { background: var(--forest); color: var(--pale); }
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark a { color: var(--sage); }
.band-wash { background: var(--wash); }

/* ---------- the range ladder / grid ---------- */
.range { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(1rem, 2vw, 1.6rem); }
.rangecard { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
.rangecard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.rangecard-media { aspect-ratio: 16 / 10; background: linear-gradient(140deg, var(--forest-2), var(--green-deep)); position: relative; }
.rangecard-media img { width: 100%; height: 100%; object-fit: cover; }
.rangecard-size { position: absolute; left: 1rem; bottom: 1rem; font-family: var(--display); font-weight: 900; font-size: 1.5rem; color: var(--white); background: rgba(14,42,28,.86); padding: .35rem .8rem; border-radius: 8px; letter-spacing: -.02em; }
.rangecard-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.rangecard-body h3 { margin-bottom: .5rem; }
.rangecard-body h3 a { text-decoration: none; color: var(--ink); }
.rangecard-body h3 a:hover { color: var(--green-deep); }
.rangecard-body p { font-size: .95rem; color: var(--muted); }
.rangecard-price { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--rule); display: flex; gap: 1.6rem; }
.rangecard-price div { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.rangecard-price b { display: block; font-family: var(--display); font-size: 1.32rem; font-weight: 800; color: var(--green-deep); letter-spacing: -.02em; text-transform: none; }

/* ---------- spec sheet (size and type pages) ---------- */
.spec { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(1.6rem, 3.5vw, 3rem); align-items: start; }
.spectable { width: 100%; border-collapse: collapse; font-size: .95rem; background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; }
.spectable caption { font-family: var(--display); font-weight: 800; font-size: 1.05rem; text-align: left; padding: 0 0 .7rem; color: var(--ink); }
.spectable th, .spectable td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--rule); }
.spectable th { font-family: var(--display); font-weight: 700; width: 45%; color: var(--muted); font-size: .88rem; }
.spectable td { font-variant-numeric: tabular-nums; font-weight: 550; }
.spectable tr:last-child th, .spectable tr:last-child td { border-bottom: 0; }
.specside { position: sticky; top: 5.5rem; display: grid; gap: 1.2rem; }

.pricebox { background: var(--forest); color: var(--pale); border-radius: var(--radius-lg); padding: 1.5rem; }
.pricebox h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 1rem; }
.pricebox dl { margin: 0; display: grid; gap: .8rem; }
.pricebox dt { font-size: .82rem; text-transform: uppercase; letter-spacing: .07em; color: var(--sage); font-weight: 600; }
.pricebox dd { margin: 0; font-family: var(--display); font-size: 1.7rem; font-weight: 800; color: var(--white); letter-spacing: -.03em; }
.pricebox .pricenote { font-size: .8rem; color: var(--sage); margin-top: 1rem; line-height: 1.5; }
.pricebox .btn { margin-top: 1.1rem; }

/* ---------- gallery strip ---------- */
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: .8rem; }
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--rule); background: var(--wash); }
.gallery img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.gallery figcaption { font-size: .82rem; color: var(--muted); padding: .6rem .8rem; }

/* ---------- caveat / callout ---------- */
.caveat { background: var(--wash); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.1rem 1.3rem; font-size: .96rem; color: var(--ink); margin: 0 0 1.3rem; }
.sec-dark .caveat, .band-dark .caveat { background: rgba(255,255,255,.07); border-left-color: var(--sage); color: var(--pale); }
.note-amber { border-left-color: var(--amber); }

/* ---------- numbered process run ---------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: s; display: grid; gap: 0; }
.steps li { counter-increment: s; position: relative; padding: 0 0 2rem 4.2rem; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: -.1rem; width: 2.7rem; height: 2.7rem; border-radius: 50%; background: var(--green-deep); color: var(--white); font-family: var(--display); font-weight: 800; font-size: 1.15rem; display: grid; place-items: center; }
.steps li::after { content: ""; position: absolute; left: 1.35rem; top: 2.9rem; bottom: .4rem; width: 2px; background: var(--rule); }
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: .35rem; }
.steps p { font-size: .97rem; color: var(--muted); margin: 0; }
.sec-dark .steps li::before { background: var(--green); }
.sec-dark .steps li::after { background: rgba(255,255,255,.18); }
.sec-dark .steps p { color: var(--pale); }

/* ---------- FAQ: always-open Q/A pairs, never <details> ---------- */
.qa { display: grid; gap: 1.6rem; }
.qa > div { border-top: 1px solid var(--rule); padding-top: 1.3rem; }
.qa h3 { font-size: 1.13rem; margin-bottom: .5rem; }
.qa p { color: var(--muted); margin: 0; }
.sec-dark .qa > div { border-top-color: rgba(255,255,255,.16); }
.sec-dark .qa p { color: var(--pale); }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips a { display: inline-block; font-size: .89rem; font-weight: 550; text-decoration: none; color: var(--ink); background: var(--white); border: 1px solid var(--rule); border-radius: 999px; padding: .45rem 1rem; transition: border-color .14s, color .14s, background-color .14s; }
.chips a:hover { border-color: var(--green-deep); color: var(--green-deep); background: var(--wash); }
.sec-dark .chips a, .band-dark .chips a { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: var(--pale); }
.sec-dark .chips a:hover { background: rgba(255,255,255,.14); color: var(--white); border-color: var(--sage); }

/* ---------- yard card ---------- */
.yard { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg); overflow: hidden; }
.yard-media { min-height: 300px; position: relative; background: linear-gradient(140deg, var(--forest-2), var(--green-deep)); }
.yard-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.yard-body { padding: clamp(1.6rem, 3vw, 2.6rem); }
.yard-body address { font-style: normal; font-family: var(--display); font-weight: 700; font-size: 1.1rem; margin-bottom: .8rem; }

/* ---------- locality index ---------- */
.locgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: .7rem; }
.locgrid a { display: block; text-decoration: none; color: var(--ink); background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius); padding: .85rem 1rem; font-weight: 600; transition: border-color .14s, transform .14s; }
.locgrid a:hover { border-color: var(--green); transform: translateY(-2px); color: var(--green-deep); }
.locgrid a span { display: block; font-weight: 400; font-size: .8rem; color: var(--muted); }

/* ---------- guide cards ---------- */
.guides { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.3rem; }
.guidecard { background: var(--white); border: 1px solid var(--rule); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; flex-direction: column; transition: transform .16s, box-shadow .16s, border-color .16s; }
.guidecard:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.guidecard h3 { font-size: 1.16rem; margin-bottom: .55rem; }
.guidecard h3 a { color: var(--ink); text-decoration: none; }
.guidecard h3 a:hover { color: var(--green-deep); }
.guidecard p { font-size: .93rem; color: var(--muted); }
.guidecard .meta { margin-top: auto; padding-top: 1rem; font-size: .8rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }

/* ---------- article body ---------- */
.article { font-size: 1.075rem; line-height: 1.72; }
.article h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-top: 2.4em; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 1.9em; }
.article table { width: 100%; border-collapse: collapse; font-size: .95rem; margin: 0 0 1.5em; }
.article th, .article td { padding: .7rem .9rem; border-bottom: 1px solid var(--rule); text-align: left; }
.article thead th { background: var(--wash); font-family: var(--display); font-weight: 700; font-size: .88rem; }
.article td { font-variant-numeric: tabular-nums; }
.article blockquote { margin: 1.6em 0; padding: 1.1rem 1.4rem; background: var(--wash); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; font-size: 1rem; }

/* ---------- breadcrumb ---------- */
.crumb { background: var(--wash); border-bottom: 1px solid var(--rule); font-size: .85rem; }
.crumb .wrap { padding: .7rem 0; color: var(--muted); }
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--green-deep); text-decoration: underline; }
.crumb strong { color: var(--ink); font-weight: 600; }

/* ---------- page header (non-home) ---------- */
.phead { background: var(--forest); color: var(--pale); position: relative; overflow: hidden; }
.phead-media { position: absolute; inset: 0; }
.phead-media img { width: 100%; height: 100%; object-fit: cover; }
.phead-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(98deg, rgba(11,34,22,.94) 0%, rgba(11,34,22,.84) 34%, rgba(12,36,24,.6) 62%, rgba(14,42,28,.34) 100%); }
.phead .wrap { position: relative; padding: clamp(2.6rem, 5.5vw, 4.4rem) 0; }
.phead h1 { color: var(--white); max-width: 18em; }
.phead-lede { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--pale); max-width: 42em; margin-bottom: 0; }
.phead-facts { display: flex; flex-wrap: wrap; gap: 1.6rem 2.6rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.18); }
.phead-facts div { min-width: 0; }
.phead-facts dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--sage); font-weight: 700; margin-bottom: .25rem; }
.phead-facts dd { margin: 0; font-size: .97rem; color: var(--white); max-width: 24em; }

/* ---------- the ask (quote form) ---------- */
.ask { background: var(--forest); color: var(--pale); padding: clamp(3rem, 6vw, 5rem) 0; }
.ask h2 { color: var(--white); }
.ask-sub { color: var(--pale); max-width: 42em; margin-bottom: 2rem; }
.ask-or { margin-top: 1.2rem; font-size: .95rem; color: var(--sage); }
.ask-or a { color: var(--white); font-weight: 650; }
.askcard { background: var(--white); color: var(--ink); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg); }
.askcard h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.askcard-note { font-size: .88rem; color: var(--muted); margin-bottom: 1.4rem; }
.qstage-h { font-family: var(--display); font-weight: 750; font-size: .95rem; margin: 1.4rem 0 .7rem; color: var(--ink); }
.qstage { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid var(--rule); }
.qgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); gap: .9rem; }
.askcard label { display: block; font-size: .84rem; font-weight: 600; color: var(--muted); margin: .7rem 0 .3rem; }
.askcard input, .askcard select, .askcard textarea { width: 100%; font-family: var(--text); font-size: 1rem; padding: .78rem .9rem; border: 1.5px solid var(--rule); border-radius: 10px; background: var(--white); color: var(--ink); }
.askcard input:focus, .askcard select:focus, .askcard textarea:focus { border-color: var(--green-deep); }
.askcard textarea { resize: vertical; }
.askcard .btn { margin-top: 1.4rem; }
.qtoggle { display: flex; gap: .6rem; }
.qtoggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.qtoggle label { flex: 1; margin: 0; text-align: center; padding: .8rem 1rem; border: 2px solid var(--rule); border-radius: 10px; font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--muted); cursor: pointer; transition: all .14s; }
.qtoggle input:checked + label { border-color: var(--green-deep); background: var(--wash); color: var(--green-deep); }
.qtoggle input:focus-visible + label { outline: 3px solid var(--amber); outline-offset: 2px; }
.qnote { font-size: .82rem; color: var(--muted); margin: .9rem 0 0; line-height: 1.5; }
/* .q-ok and .q-bad are created by app.js — the class names must match it. */
.q-ok { background: var(--wash); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; padding: 1.2rem 1.4rem; font-size: 1rem; color: var(--ink); }
.q-bad { background: #FDF0E8; border-left: 4px solid var(--amber); border-radius: 0 var(--radius) var(--radius) 0; padding: .9rem 1.1rem; margin-bottom: 1.2rem; font-size: .95rem; color: var(--ink); }

/* ---------- footer: three columns ---------- */
.foot { background: var(--forest); color: var(--pale); padding: clamp(3rem, 5vw, 4.5rem) 0 2rem; }
.foot-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.4rem; padding-bottom: 2.6rem; border-bottom: 1px solid rgba(255,255,255,.16); }
.foot-brand svg { height: 48px; width: auto; margin-bottom: 1rem; }
.foot-tag { font-size: .92rem; color: var(--pale); max-width: 30em; }
.foot-contact { margin-top: 1.2rem; display: grid; gap: .35rem; }
.foot-tel { font-family: var(--display); font-weight: 800; font-size: 1.55rem; color: var(--white); text-decoration: none; letter-spacing: -.02em; }
.foot-tel:hover { color: var(--sage); }
.foot-mail, .foot-addr { font-size: .92rem; color: var(--sage); font-style: normal; }
.foot-mail:hover { color: var(--white); }
.foot h4 { font-family: var(--display); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--sage); margin-bottom: 1rem; }
.foot ul { list-style: none; margin: 0; padding: 0; }
.foot ul li { margin-bottom: .55rem; }
.foot ul a { color: var(--pale); text-decoration: none; font-size: .93rem; }
.foot ul a:hover { color: var(--white); text-decoration: underline; }
.foot-locs { padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.foot-locs .runlinks { display: flex; flex-wrap: wrap; gap: .35rem .9rem; }
.foot-locs .runlinks a { font-size: .87rem; color: var(--sage); text-decoration: none; }
.foot-locs .runlinks a:hover { color: var(--white); text-decoration: underline; }
.foot-base { padding-top: 1.8rem; font-size: .82rem; color: var(--sage); line-height: 1.6; }

/* ---------- sticky mobile action bar ---------- */
.actionbar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 100; background: var(--white); border-top: 1px solid var(--rule); padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom)); gap: .6rem; box-shadow: 0 -6px 24px rgba(18,33,26,.1); }
.actionbar .btn { flex: 1; font-size: .95rem; padding: .85rem 1rem; }

.fineprint { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.sec-dark .fineprint, .ask .fineprint { color: var(--sage); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s cubic-bezier(.22,.61,.36,1), transform .55s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; }
  .specside { position: static; }
  .foot-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .top-say { display: none; }
  .top-rating { display: none; }
  .top .wrap { min-height: 68px; gap: 1rem; }
  .top-brand svg { height: 38px; }
  .navband .wrap { justify-content: space-between; }
  .nav-mini { display: none; }
  .burger { display: flex; }
  .menu { display: none; position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; background: var(--forest); padding: .5rem 0 1.2rem; gap: 0; box-shadow: var(--shadow-lg); max-height: 75vh; overflow-y: auto; }
  .navband { position: sticky; }
  .menu.show { display: flex; }
  .menu > li > a { padding: .9rem 1.25rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .mega { position: static; width: auto; grid-template-columns: 1fr 1fr; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-radius: 0; background: rgba(255,255,255,.04); padding: .8rem 1.25rem 1.2rem; display: grid; }
  .mega a { border-color: rgba(255,255,255,.18); }
  .mega b { color: var(--white); }
  .mega span { color: var(--sage); }
  .band { grid-template-columns: 1fr; }
  .band-alt .band-media { order: 0; }
  .band-media { min-height: 260px; }
  .yard { grid-template-columns: 1fr; }
  .actionbar { display: flex; }
  body { padding-bottom: 4.6rem; }
  .foot-top { grid-template-columns: 1fr; gap: 1.8rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  /* The identity row runs out of width at this size. Drop the button — the
     sticky action bar at the bottom carries the same call to action — and
     keep the phone number, which is the thing people are reaching for. */
  .top-act .btn { display: none; }
  .top-tel { font-size: 1.18rem; }
  .top .wrap { min-height: 60px; }
  .top-brand svg { height: 34px; }
  .navband .wrap { justify-content: flex-end; }
  .hero-cta .btn { width: 100%; }
  .rangecard-price { gap: 1.1rem; }
  .steps li { padding-left: 3.4rem; }
  .steps li::before { width: 2.3rem; height: 2.3rem; font-size: 1rem; }
  .steps li::after { left: 1.15rem; top: 2.5rem; }
}

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

@media print {
  .navband, .actionbar, .ask, .hero-media, .phead-media { display: none !important; }
  body { padding-bottom: 0; }
}
