/* ==========================================================================
   AV Landscape Pty Ltd — avlandscapetec.site
   Art direction: "Site plan"
   Sector read : landscape construction, Perth WA — limestone, jarrah, sand,
                 waterwise natives. The vernacular is the survey drawing:
                 contours, levels, hairlines, mono annotation.
   Shape        : SHARP — radius 0-3px, hairline rules, tight tracking.
   Palette      : eucalypt canopy green + limestone sand neutrals +
                  banksia ochre accent used sparingly.
   ========================================================================== */

/* 1. TOKENS ---------------------------------------------------------------
   Nothing below this block may use a raw colour, or an ad-hoc length that
   is not part of a scale.                                                  */

:root {
  /* brand */
  --primary:        #2c5140;
  --primary-deep:   #1e3a2c;
  --forest:         #14261e;
  --forest-2:       #1b3126;

  /* accent (banksia / limestone-at-dusk ochre) */
  --accent:         #d98c21;
  --accent-ink:     #8a5510;
  --accent-wash:    #f6e7cf;

  /* neutrals — warm limestone ramp */
  --bg:             #f6f5f0;
  --surface:        #ffffff;
  --sand:           #eae6da;
  --sand-deep:      #ded8c7;
  --border:         #d9d4c6;

  /* text */
  --ink:            #1a2420;
  --text:           #2a342e;
  --muted:          #5a6560;
  --on-dark:        #c9cfc7;
  --on-dark-strong: #f2f4ef;

  /* translucent / effects */
  --hairline-dark:  rgba(20, 38, 30, .12);
  --hairline-soft:  rgba(20, 38, 30, .07);
  --hairline-light: rgba(242, 244, 239, .16);
  --grid-line:      rgba(44, 81, 64, .09);
  --grid-line-dark: rgba(242, 244, 239, .07);
  --glow-primary:   rgba(44, 81, 64, .16);
  --glow-accent:    rgba(217, 140, 33, .20);
  --nav-glass:      rgba(246, 245, 240, .84);
  --focus-ring:     rgba(217, 140, 33, .55);
  --wash-primary:   rgba(44, 81, 64, .06);

  --shadow-sm: 0 1px 2px rgba(20, 38, 30, .05);
  --shadow-md: 0 1px 2px rgba(20, 38, 30, .04), 0 10px 28px rgba(20, 38, 30, .07);
  --shadow-lg: 0 2px 4px rgba(20, 38, 30, .05), 0 18px 44px rgba(20, 38, 30, .12);

  /* type */
  --font-display: "Gill Sans", "Gill Sans MT", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Mono", Consolas, "SF Mono", Menlo, monospace;

  --fs-hero:    clamp(2.25rem, 5vw, 4rem);
  --fs-h1:      clamp(2rem, 4vw, 3rem);
  --fs-h2:      clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3:      1.15rem;
  --fs-lead:    clamp(1.05rem, 1.5vw, 1.25rem);
  --fs-body:    1.0625rem;
  --fs-small:   .875rem;
  --fs-eyebrow: .78rem;
  --measure:    66ch;

  /* spacing scale */
  --s0: .25rem;
  --s1: .5rem;
  --s2: .75rem;
  --s3: 1rem;
  --s4: 1.5rem;
  --s5: 2.5rem;
  --s6: 4rem;
  --s7: 6rem;

  /* structure */
  --container: 1140px;
  --pad:       1.375rem;
  --band:      clamp(3.5rem, 8vw, 7rem);
  --radius:    2px;
  --radius-lg: 3px;
  --grid:      34px;
  --hair:      1px;
  --nav-h:     68px;
  --speed:     170ms;
}

/* 2. RESET / BASE --------------------------------------------------------- */

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  font-weight: 600;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

a { color: var(--accent-ink); text-decoration-thickness: var(--hair); text-underline-offset: 3px; }
a:hover { color: var(--primary); }

img, svg { max-width: 100%; }
svg { display: block; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: var(--s3); top: calc(var(--s3) * -4);
  z-index: 60; background: var(--forest); color: var(--on-dark-strong);
  padding: var(--s2) var(--s3); border-radius: var(--radius);
  font-size: var(--fs-small); text-decoration: none;
  transition: top var(--speed) ease;
}
.skip-link:focus { top: var(--s3); color: var(--on-dark-strong); }

/* 3. LAYOUT PRIMITIVES ---------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.band { padding-block: var(--band); }
.band-tight { padding-block: calc(var(--band) * .6); }

.band-sand { background: var(--sand); }

.band-dark {
  background: var(--forest);
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.band-dark::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(to right, var(--grid-line-dark) 0 var(--hair), transparent var(--hair) var(--grid)),
    repeating-linear-gradient(to bottom, var(--grid-line-dark) 0 var(--hair), transparent var(--hair) var(--grid));
  pointer-events: none;
}
.band-dark > .container { position: relative; }
.band-dark h2, .band-dark h3 { color: var(--on-dark-strong); }

.rule { height: var(--hair); background: var(--hairline-dark); border: 0; margin: 0; }

.eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: var(--s2);
}
.band-dark .eyebrow { color: var(--accent); }

.section-head { max-width: var(--measure); margin-bottom: var(--s5); }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { margin-top: var(--s3); color: var(--muted); font-size: var(--fs-lead); }
.band-dark .section-head p { color: var(--on-dark); }

.measure { max-width: var(--measure); }
.lead { font-size: var(--fs-lead); color: var(--muted); max-width: var(--measure); }

/* 4. NAV ------------------------------------------------------------------ */

.navbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--nav-glass);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: var(--hair) solid var(--hairline-dark);
}

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s3);
  min-height: var(--nav-h);
}

.brand {
  display: inline-flex; align-items: center; gap: var(--s2);
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: -0.01em;
  font-size: 1.0625rem;
}
.brand:hover { color: var(--primary); }

.brand-mark {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  background: var(--primary);
  color: var(--surface);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: .8125rem; letter-spacing: .04em;
  font-weight: 600;
}
.brand-text { line-height: 1.1; }
.brand-sub {
  display: block;
  font-family: var(--font-mono);
  font-size: .625rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); font-weight: 400;
}

.nav-menu {
  display: flex; align-items: center; gap: var(--s4);
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding-block: var(--s1);
  color: var(--text);
  text-decoration: none;
  font-size: .9375rem;
  transition: color var(--speed) ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--ink); font-weight: 600; }
.nav-link.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: calc(var(--s1) * -1);
  height: 2px; background: var(--accent);
}

.nav-cta {
  display: inline-block;
  padding: var(--s1) var(--s3);
  background: var(--primary);
  color: var(--surface);
  border-radius: var(--radius);
  font-size: .9375rem;
  text-decoration: none;
  transition: background var(--speed) ease, transform var(--speed) ease;
}
.nav-cta:hover { background: var(--primary-deep); color: var(--surface); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 42px; height: 38px;
  padding: 0;
  background: transparent;
  border: var(--hair) solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 18px; height: 2px;
  margin: 3px auto;
  background: var(--ink);
}

/* 5. BUTTONS -------------------------------------------------------------- */

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-top: var(--s4); }

.btn {
  display: inline-flex; align-items: center; gap: var(--s1);
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  border: var(--hair) solid transparent;
  font-family: var(--font-body);
  font-size: .9375rem; font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--speed) ease, background var(--speed) ease,
              color var(--speed) ease, box-shadow var(--speed) ease,
              border-color var(--speed) ease;
}

.btn-primary { background: var(--primary); color: var(--surface); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--primary-deep); color: var(--surface); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-1px); }

.btn-ghost { background: var(--accent); color: var(--forest); }
.btn-ghost:hover { background: var(--surface); color: var(--forest); transform: translateY(-1px); }

.btn-quiet { background: transparent; color: var(--on-dark-strong); border-color: var(--hairline-light); }
.btn-quiet:hover { border-color: var(--on-dark); color: var(--on-dark-strong); transform: translateY(-1px); }

/* 6. HERO ----------------------------------------------------------------- */

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 88% -10%, var(--glow-accent) 0%, transparent 55%),
    radial-gradient(90% 70% at 8% 100%, var(--glow-primary) 0%, transparent 60%),
    linear-gradient(176deg, var(--surface) 0%, var(--bg) 58%, var(--sand) 100%);
  border-bottom: var(--hair) solid var(--hairline-dark);
}
.hero::before, .page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(to right, var(--grid-line) 0 var(--hair), transparent var(--hair) var(--grid)),
    repeating-linear-gradient(to bottom, var(--grid-line) 0 var(--hair), transparent var(--hair) var(--grid));
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 78%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 78%);
  pointer-events: none;
}

.hero { padding-block: clamp(3rem, 7vw, 5.5rem); }
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(var(--s5), 5vw, var(--s7));
  align-items: center;
  min-height: 58vh;
}
.hero-copy { max-width: 34rem; }
.hero-title {
  font-size: var(--fs-hero);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.hero-title .accent-word { color: var(--primary); }
.hero-lead {
  margin-top: var(--s3);
  font-size: var(--fs-lead);
  color: var(--muted);
  max-width: 34rem;
}
.hero-note {
  margin-top: var(--s4);
  padding-top: var(--s3);
  border-top: var(--hair) solid var(--hairline-dark);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: .04em;
  color: var(--muted);
}

.hero-figure { position: relative; }
.plan-svg {
  width: 100%; height: auto;
  background: var(--surface);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* inline-SVG site plan */
.plan-frame  { fill: none; stroke: var(--border); stroke-width: 1; stroke-dasharray: 6 4; }
.plan-contour{ fill: none; stroke: var(--primary); stroke-width: 1; opacity: .3; }
.plan-wall   { fill: none; stroke: var(--accent-ink); stroke-width: 3; stroke-linecap: square; }
.plan-lawn   { fill: var(--wash-primary); stroke: var(--primary); stroke-width: 1; opacity: .9; }
.plan-bed    { fill: var(--accent-wash); stroke: var(--accent-ink); stroke-width: 1; }
.plan-plant  { fill: none; stroke: var(--primary); stroke-width: 1.2; }
.plan-deck   { fill: none; stroke: var(--muted); stroke-width: 1; }
.plan-hatch  { stroke: var(--muted); stroke-width: 1; opacity: .5; }
.plan-label  {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: .14em;
  fill: var(--muted);
}
.plan-label-key { fill: var(--accent-ink); }
.plan-north  { fill: none; stroke: var(--ink); stroke-width: 1.2; }
.plan-north-fill { fill: var(--ink); }

/* page hero (inner pages) */
.page-hero { padding-block: clamp(2.5rem, 5vw, 4rem); }
.page-hero-inner { position: relative; max-width: var(--measure); }
.page-title { font-size: var(--fs-h1); }
.page-lead { margin-top: var(--s3); font-size: var(--fs-lead); color: var(--muted); }

/* 7. VALUE PROPS (hairline-divided, not cards) ---------------------------- */

.props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  list-style: none;
  border-top: var(--hair) solid var(--hairline-dark);
}
.prop {
  padding: var(--s5) var(--s4);
  border-bottom: var(--hair) solid var(--hairline-dark);
  border-right: var(--hair) solid var(--hairline-dark);
}
.prop:first-child { padding-left: 0; }
.prop:last-child { border-right: 0; padding-right: 0; }
.prop-title {
  font-size: var(--fs-h3);
  margin-bottom: var(--s2);
}
.prop-body { color: var(--muted); font-size: var(--fs-small); line-height: 1.7; }

/* 8. SERVICES ------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s4);
  list-style: none;
}

.service-card {
  display: flex; flex-direction: column;
  padding: var(--s4);
  background: var(--surface);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius-lg);
  border-top: 2px solid var(--primary);
  transition: transform var(--speed) ease, box-shadow var(--speed) ease, border-top-color var(--speed) ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent);
}

.icon-tile {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  margin-bottom: var(--s3);
  background: var(--accent-wash);
  color: var(--accent-ink);
  border-radius: var(--radius);
}
.service-card:hover .icon-tile { background: var(--sand); color: var(--primary); }

.service-title { font-size: var(--fs-h3); margin-bottom: var(--s2); }
.service-body { color: var(--muted); font-size: var(--fs-small); line-height: 1.7; }
.service-meta {
  margin-top: var(--s3);
  padding-top: var(--s2);
  border-top: var(--hair) solid var(--hairline-soft);
  font-family: var(--font-mono);
  font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}

.card-link {
  display: inline-flex; align-items: center; gap: var(--s1);
  margin-top: var(--s4);
  font-size: .9375rem; font-weight: 600;
  color: var(--accent-ink); text-decoration: none;
}
.card-link:hover { color: var(--primary); text-decoration: underline; }

/* 9. SPLIT BAND ----------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s5), 5vw, var(--s7));
  align-items: center;
}
.split-copy { max-width: 34rem; }
.split-copy h2 { font-size: var(--fs-h2); }
.split-copy p { margin-top: var(--s3); }
.split-figure { width: 100%; }

.profile-svg { width: 100%; height: auto; }
.prof-band-mulch { fill: var(--accent-ink); opacity: .55; }
.prof-band-soil  { fill: var(--primary); opacity: .5; }
.prof-band-sand  { fill: var(--sand-deep); opacity: .35; }
.prof-stone      { fill: var(--sand); opacity: .55; stroke: var(--on-dark); stroke-width: 1; }
.prof-line       { fill: none; stroke: var(--hairline-light); stroke-width: 1; }
.prof-drip       { fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 5 4; }
.prof-plant      { fill: none; stroke: var(--on-dark); stroke-width: 1.4; }
.prof-label {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: .12em;
  fill: var(--on-dark);
}
.prof-tick { fill: none; stroke: var(--on-dark); stroke-width: 1; opacity: .5; }

.list-check { list-style: none; margin-top: var(--s4); display: grid; gap: var(--s2); }
.list-check li {
  position: relative;
  padding-left: var(--s4);
  font-size: var(--fs-small);
  line-height: 1.7;
}
.list-check li::before {
  content: "";
  position: absolute; left: 0; top: .62em;
  width: 10px; height: var(--hair);
  background: var(--accent);
}

/* 10. CREDENTIALS (factual only) ------------------------------------------ */

.creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  list-style: none;
  padding: var(--s5) 0 0;
  border-top: var(--hair) solid var(--hairline-dark);
}
.cred { border-left: 2px solid var(--accent); padding-left: var(--s3); }
.cred-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s0);
}
.cred-value {
  display: block;
  font-family: var(--font-mono);
  font-size: .9375rem;
  color: var(--ink);
  letter-spacing: .02em;
}

/* 11. PROCESS STEPS (a genuine sequence) ---------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  list-style: none;
  counter-reset: step;
}
.step { padding-top: var(--s3); border-top: 2px solid var(--primary); }
.step-num {
  display: block;
  font-family: var(--font-mono);
  font-size: .6875rem; letter-spacing: .16em;
  color: var(--accent-ink);
  margin-bottom: var(--s2);
}
.band-dark .step { border-top-color: var(--accent); }
.band-dark .step-num { color: var(--accent); }
.step-title { font-size: 1rem; margin-bottom: var(--s1); }
.step-body { color: var(--muted); font-size: var(--fs-small); line-height: 1.7; }
.band-dark .step-body { color: var(--on-dark); }

/* 12. CTA STRIP ----------------------------------------------------------- */

.cta {
  background: var(--primary-deep);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 140% at 90% 10%, var(--glow-accent) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s5); flex-wrap: wrap;
}
.cta-title { color: var(--on-dark-strong); font-size: var(--fs-h2); max-width: 22ch; }
.cta-text { color: var(--on-dark); margin-top: var(--s2); max-width: 44ch; font-size: var(--fs-small); }
.cta .btn-row { margin-top: 0; }

/* 13. CONTACT ------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--s5), 5vw, var(--s6));
  align-items: start;
}
.contact-panel {
  padding: var(--s5);
  background: var(--surface);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.contact-panel h2 { font-size: var(--fs-h3); }

.contact-list { list-style: none; display: grid; gap: var(--s4); margin-top: var(--s4); }
.contact-item { padding-left: var(--s3); border-left: 2px solid var(--accent); }
.contact-item-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--s0);
}
.contact-item-value { display: block; color: var(--ink); word-break: break-word; }
.contact-item-value a { font-weight: 600; }

.form { margin-top: var(--s4); display: grid; gap: var(--s3); }
.field { display: grid; gap: var(--s1); }
.label {
  font-family: var(--font-mono);
  font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted);
}
.input, .textarea {
  width: 100%;
  padding: var(--s2) var(--s3);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--ink);
  background: var(--bg);
  border: var(--hair) solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--speed) ease, background var(--speed) ease;
}
.input:focus, .textarea:focus { background: var(--surface); border-color: var(--primary); }
.textarea { min-height: 8rem; resize: vertical; }
.form-note { font-size: .8125rem; color: var(--muted); }

/* 14. PROSE (legal pages) ------------------------------------------------- */

.prose { max-width: 72ch; }
.prose h2 {
  font-size: 1.35rem;
  margin-top: var(--s5);
  margin-bottom: var(--s2);
  padding-top: var(--s3);
  border-top: var(--hair) solid var(--hairline-dark);
}
.prose h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.prose h3 { font-size: 1.05rem; margin-top: var(--s4); margin-bottom: var(--s1); }
.prose p { margin-top: var(--s3); }
.prose ul { list-style: none; margin-top: var(--s3); display: grid; gap: var(--s2); }
.prose ul li { position: relative; padding-left: var(--s4); }
.prose ul li::before {
  content: "";
  position: absolute; left: 0; top: .65em;
  width: 10px; height: var(--hair);
  background: var(--accent);
}

.legal-meta {
  display: flex; flex-wrap: wrap; gap: var(--s1) var(--s4);
  margin-bottom: var(--s5);
  padding: var(--s3);
  background: var(--sand);
  border-left: 2px solid var(--primary);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: .75rem; letter-spacing: .06em;
  color: var(--muted);
}

/* 15. FOOTER -------------------------------------------------------------- */

.footer {
  background: var(--forest);
  color: var(--on-dark);
  border-top: var(--hair) solid var(--hairline-dark);
  font-size: var(--fs-small);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--s5);
  padding-block: var(--s6);
}
.footer-col .brand { color: var(--on-dark-strong); margin-bottom: var(--s3); }
.footer-col .brand:hover { color: var(--accent); }
.footer-col .brand-sub { color: var(--on-dark); }
.footer-title {
  font-family: var(--font-mono);
  font-size: .6875rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
  font-weight: 400;
}
.footer-blurb { color: var(--on-dark); max-width: 32ch; line-height: 1.7; }
.footer-legal-line {
  margin-top: var(--s3);
  font-family: var(--font-mono);
  font-size: .75rem; letter-spacing: .04em;
  color: var(--on-dark);
}
.footer-list { list-style: none; display: grid; gap: var(--s2); }
.footer-link { color: var(--on-dark); text-decoration: none; }
.footer-link:hover { color: var(--accent); text-decoration: underline; }
.footer-contact { display: grid; gap: var(--s2); color: var(--on-dark); word-break: break-word; }

.footer-bottom {
  border-top: var(--hair) solid var(--hairline-light);
  background: var(--forest-2);
}
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s2);
  padding-block: var(--s3);
  font-size: .8125rem;
  color: var(--on-dark);
}
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--s4); list-style: none; }

/* 16. RESPONSIVE ---------------------------------------------------------- */

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .creds { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-menu {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s2) var(--pad) var(--s4);
    background: var(--bg);
    border-bottom: var(--hair) solid var(--hairline-dark);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: var(--hair) solid var(--hairline-soft); }
  .nav-menu li:last-child { border-bottom: 0; padding-top: var(--s3); }
  .nav-link { display: block; padding-block: var(--s2); }
  .nav-link.active::after { bottom: var(--s1); right: auto; width: 22px; }
  .nav-cta { display: block; text-align: center; padding-block: var(--s2); }
  .nav-inner { position: relative; }

  .hero-inner { grid-template-columns: 1fr; min-height: 0; gap: var(--s5); }
  .hero-copy { max-width: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }

  .props { grid-template-columns: 1fr; }
  .prop { padding: var(--s4) 0; border-right: 0; }
  .prop:first-child { padding-top: var(--s4); }

  .creds, .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--s5); padding-block: var(--s5); }
  .contact-panel { padding: var(--s4); }
  .cta-inner { flex-direction: column; align-items: flex-start; gap: var(--s4); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 380px) {
  .brand { font-size: 1rem; }
  .btn { width: 100%; justify-content: center; }
}

/* 17. MOTION / PRINT ------------------------------------------------------ */

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

@media print {
  .navbar, .cta, .hero-figure { display: none; }
  body { background: var(--surface); color: var(--ink); }
}
