/* ============================================================
   Ty Built Woodworks
   Warm. Solid. Understated. — "The Maker" direction
   ============================================================ */

:root {
  /* Brand palette */
  --ivory: #F4F0E7;
  --charcoal: #282824;
  --olive: #535B45;
  --walnut: #69503D;

  /* Working variations */
  --ink: #21201C;            /* header / footer ground */
  --ink-deep: #1B1A17;       /* footer bottom bar */
  --parchment: #E8DFC9;      /* alternate section ground */
  --walnut-deep: #4A392B;    /* closing CTA band ground */
  --paper: #FBF8F1;          /* cards, mats */
  --olive-deep: #47503B;     /* quote band */
  --walnut-soft: #8A6C52;    /* accents on dark */
  --clay: #B9BCA6;           /* kickers on dark */

  --line: rgba(40, 40, 36, 0.14);
  --line-strong: rgba(40, 40, 36, 0.32);
  --line-ivory: rgba(244, 240, 231, 0.14);

  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Fine grain texture — used sparingly (hero, dark bands, footer) */
  --grain-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  --grain-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.16'/%3E%3C/svg%3E");
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* height:auto overrides the width/height attributes (kept for layout stability)
   so CSS aspect-ratio rules control the rendered shape */
img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--charcoal); color: var(--ivory); }

a { color: var(--olive); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--walnut); }

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

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }

/* ============================================================
   Typography
   ============================================================ */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.35rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.25rem; line-height: 1.3; letter-spacing: 0; }

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.65;
  max-width: 34em;
  color: rgba(40, 40, 36, 0.78);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1.4rem;
}

.kicker::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--walnut);
  flex: none;
}

.kicker .num {
  color: var(--walnut);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.muted { color: rgba(40, 40, 36, 0.68); }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--olive);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 1.9rem;
  border: 1px solid var(--olive);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.btn::after {
  content: "\2192";
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.btn:hover {
  background: var(--walnut);
  border-color: var(--walnut);
  color: var(--ivory);
  transform: translateY(-1px);
}

.btn:hover::after { transform: translateX(4px); }

.btn.ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--line-strong);
}

.btn.ghost:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--ivory);
}

.btn.light {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--charcoal);
}

.btn.light:hover { background: var(--parchment); border-color: var(--parchment); transform: translateY(-1px); }

.btn.light-ghost {
  background: transparent;
  border-color: rgba(244, 240, 231, 0.4);
  color: var(--ivory);
}

.btn.light-ghost:hover { background: var(--ivory); border-color: var(--ivory); color: var(--charcoal); }

/* ============================================================
   Header — dark, anchored, quietly confident
   ============================================================ */

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
  border-top: 3px solid var(--walnut);
  border-bottom: 1px solid var(--line-ivory);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.site-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.15rem 0;
}

.site-logo { display: block; flex: none; }
.site-logo img { width: 158px; height: auto; }

nav.site-nav { display: flex; gap: 2.2rem; flex-wrap: wrap; }

nav.site-nav a {
  position: relative;
  color: rgba(244, 240, 231, 0.72);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

nav.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--walnut-soft);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

nav.site-nav a:hover { color: var(--ivory); }
nav.site-nav a:hover::after { transform: scaleX(1); }

nav.site-nav a[aria-current="page"] { color: var(--ivory); }
nav.site-nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--clay); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line-ivory);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ivory);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Sections — each on its own ground
   ============================================================ */

section { position: relative; padding: 6.5rem 0; }

.sec-ivory { background: var(--ivory); }

.sec-parchment {
  background-color: var(--parchment);
  background-image: var(--grain-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sec-dark {
  background-color: var(--ink);
  background-image: var(--grain-dark);
  color: var(--ivory);
}

.sec-olive {
  background-color: var(--olive-deep);
  background-image: var(--grain-dark);
  color: var(--ivory);
}

.sec-walnut {
  background-color: var(--walnut-deep);
  background-image: var(--grain-dark);
  color: var(--ivory);
}

.sec-dark .kicker, .sec-olive .kicker, .sec-walnut .kicker { color: var(--clay); }
.sec-dark .kicker::before, .sec-olive .kicker::before, .sec-walnut .kicker::before { background: var(--walnut-soft); }
.sec-dark p, .sec-olive p, .sec-walnut p { color: rgba(244, 240, 231, 0.82); }
.sec-dark h2, .sec-olive h2, .sec-walnut h2, .sec-dark h3, .sec-olive h3, .sec-walnut h3 { color: var(--ivory); }

.sec-head { max-width: 42em; margin-bottom: 3.8rem; }
.sec-head .lede { margin-top: 1.1rem; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 86vh, 820px);
  padding: 7rem 0;
  background: var(--ink);
  color: var(--ivory);
  border-bottom: 3px solid var(--walnut);
}

.hero-bg, .hero-bg picture { position: absolute; inset: 0; z-index: -2; }

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(27, 26, 23, 0.55), rgba(27, 26, 23, 0) 30%),
    linear-gradient(97deg, rgba(27, 26, 23, 0.92) 0%, rgba(27, 26, 23, 0.78) 42%, rgba(27, 26, 23, 0.35) 78%, rgba(27, 26, 23, 0.25) 100%);
}

.hero .kicker { color: var(--clay); }
.hero .kicker::before { background: var(--walnut-soft); }

.hero h1 { margin: 0 0 1.6rem; text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35); }

.hero .lede { color: rgba(244, 240, 231, 0.88); margin-bottom: 2.6rem; }

.hero-content { max-width: 620px; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  right: 2rem;
  bottom: 1.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, 0.55);
  writing-mode: vertical-rl;
}

/* Interior-page photo banner — same language, shorter statement */
.hero.sub { min-height: clamp(320px, 46vh, 460px); padding: 5.5rem 0 4.5rem; }

.hero.sub h1 { margin: 0; }

.hero.sub .lede { margin: 1.3rem 0 0; }

/* Fact strip — its own quiet band under the hero */
.facts {
  background-color: var(--ivory);
  background-image: var(--grain-light);
  border-bottom: 1px solid var(--line);
  padding: 2.6rem 0;
}

/* Sub-page hero */
.page-hero {
  background-color: var(--parchment);
  background-image: var(--grain-light);
  padding: 5.5rem 0 4.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero .lede { margin-top: 1.4rem; }

/* ============================================================
   Framed photo — the mat-and-frame motif from the mark
   ============================================================ */

.framed {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 0.9rem;
  box-shadow: 0 30px 60px -30px rgba(33, 32, 28, 0.55);
}

.framed img { width: 100%; }

.framed.portrait img { aspect-ratio: 4 / 5; object-fit: cover; }
.framed.square img { aspect-ratio: 1 / 1; object-fit: cover; }

.framed figcaption {
  padding: 0.85rem 0.3rem 0.15rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(40, 40, 36, 0.55);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* ============================================================
   Fact strip — quiet proof under the hero
   ============================================================ */

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fact-strip div {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(40, 40, 36, 0.6);
}

.fact-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}

/* ============================================================
   Work cards
   ============================================================ */

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem 2.2rem;
}

.work-grid.wide { grid-template-columns: repeat(2, 1fr); }

.work-card { text-decoration: none; color: inherit; display: block; }

.work-card .ph {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  padding: 0.6rem;
}

.work-card .ph img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.work-card.tall .ph img { aspect-ratio: 3 / 4; }

.work-grid.wide .work-card .ph img { aspect-ratio: 1 / 1; }

.work-card .ph img.crop-low { object-position: 50% 72%; }

.work-card:hover .ph img { transform: scale(1.045); }

.work-card .meta {
  border-top: 2px solid var(--charcoal);
  margin-top: 1.15rem;
  padding-top: 0.9rem;
}

.sec-parchment .work-card .ph { background: var(--ivory); }

.work-card h3 { margin-bottom: 0.3rem; }

.work-card .meta p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(40, 40, 36, 0.62);
}

.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  border: 1px solid rgba(105, 80, 61, 0.5);
  padding: 0.15rem 0.5rem;
  margin-left: 0.55rem;
  vertical-align: 3px;
}

/* ============================================================
   Quote band
   ============================================================ */

.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 24em;
  color: var(--ivory);
}

.quote-band blockquote::before {
  content: "\201C";
  display: block;
  font-size: 4.5rem;
  line-height: 0.6;
  margin-bottom: 1.4rem;
  color: var(--clay);
  font-style: normal;
}

.quote-band cite {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 2.2rem;
}

.quote-band cite::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--walnut-soft);
}

/* ============================================================
   Process — three numbered steps
   ============================================================ */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.step {
  border-top: 1px solid var(--line-strong);
  padding-top: 1.6rem;
}

.step .n {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--walnut);
  display: block;
  margin-bottom: 1rem;
}

.step h3 { margin-bottom: 0.5rem; }

.step p { font-size: 0.98rem; color: rgba(40, 40, 36, 0.7); }

/* ============================================================
   Story split (About)
   ============================================================ */

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}

.about-grid .framed { position: sticky; top: 7rem; }

.value-list { list-style: none; margin-top: 2.6rem; counter-reset: value; }

.value-list li {
  counter-increment: value;
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  border-top: 1px solid var(--line);
}

.value-list li:last-child { border-bottom: 1px solid var(--line); }

.value-list li::before {
  content: "0" counter(value);
  position: absolute;
  left: 0;
  top: 1.7rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--walnut);
}

.value-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.value-list li p { font-size: 0.98rem; color: rgba(40, 40, 36, 0.7); }

/* ============================================================
   CTA band
   ============================================================ */

.cta-band { text-align: left; }

.cta-band .inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
}

.cta-band .actions { display: flex; justify-content: flex-end; }

/* ============================================================
   Contact / form
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: start;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-top: 3px solid var(--olive);
  padding: 2.8rem;
  box-shadow: 0 30px 60px -35px rgba(33, 32, 28, 0.5);
}

.field { margin-bottom: 1.5rem; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(40, 40, 36, 0.75);
  margin-bottom: 0.5rem;
}

label .opt { text-transform: none; font-weight: 400; letter-spacing: 0.02em; }

input, select, textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: #FFFEFA;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.8rem 0.9rem;
  transition: border-color 0.2s ease;
}

input:hover, select:hover, textarea:hover { border-color: rgba(40, 40, 36, 0.5); }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 1px var(--olive);
}

textarea { min-height: 140px; resize: vertical; }

.aside-panel { border-top: 2px solid var(--charcoal); padding-top: 1.8rem; }

.aside-panel h3 { margin-bottom: 1.4rem; }

.next-steps { list-style: none; counter-reset: ns; }

.next-steps li {
  counter-increment: ns;
  position: relative;
  padding: 0 0 1.4rem 3.2rem;
  font-size: 0.96rem;
  color: rgba(40, 40, 36, 0.72);
}

.next-steps li::before {
  content: "0" counter(ns);
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--walnut);
}

.next-steps strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--charcoal); }

/* ============================================================
   Footer — the maker's mark, stamped in the dark
   ============================================================ */

footer.site {
  background-color: var(--ink);
  background-image: var(--grain-dark);
  color: rgba(244, 240, 231, 0.72);
  border-top: 3px solid var(--walnut);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 3.5rem;
  padding: 5.25rem 0 4.25rem;
}

.footer-top .brand img { width: 210px; height: auto; margin-bottom: 1.4rem; }

.footer-top .brand p { font-size: 0.95rem; line-height: 1.7; max-width: 24em; }

.footer-head {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.3rem;
}

.footer-nav { list-style: none; }

.footer-nav li { margin-bottom: 0.65rem; }

.footer-nav a {
  color: rgba(244, 240, 231, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-nav a:hover { color: var(--ivory); border-bottom-color: var(--walnut-soft); }

.footer-cta p { font-size: 0.95rem; margin-bottom: 1.5rem; }

.footer-bottom { background: var(--ink-deep); border-top: 1px solid var(--line-ivory); }

.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(244, 240, 231, 0.45);
}

.footer-bottom .phrase { font-family: var(--serif); font-style: italic; font-size: 0.9rem; }

/* ============================================================
   Lightbox (work page)
   ============================================================ */

div.work-card .ph img { cursor: zoom-in; }

.gallery-trigger { display: block; }
.gallery-trigger:focus-visible { outline: 3px solid var(--olive); outline-offset: 4px; }

.lightbox:not([open]) { display: none; }
.lightbox {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  border: 0;
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 3rem 1.5rem;
  background: rgba(27, 26, 23, 0.95);
  cursor: zoom-out;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 82vh;
  object-fit: contain;
  border: 1px solid rgba(244, 240, 231, 0.2);
  background: var(--paper);
  padding: 0.5rem;
}

.lightbox-caption {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
}

.lightbox .close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: 1px solid rgba(244, 240, 231, 0.3);
  color: var(--ivory);
  font-size: 1.4rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.lightbox .close:hover { background: rgba(244, 240, 231, 0.12); }

/* Honeypot — visually removed, still in the form for bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   Reveal animation — subtle rise on scroll
   ============================================================ */

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

.reveal.in { animation: reveal-rise 0.7s ease; }
@keyframes reveal-rise { from { transform: translateY(18px); } to { transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal.in { animation: none; }
  .work-card .ph img { transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 900px) {
  section { padding: 4.5rem 0; }
  .hero { padding: 5rem 0 4rem; min-height: 520px; }
  .hero-scroll-hint { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid .framed { position: static; max-width: 420px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .cta-band .actions { justify-content: flex-start; }
  .steps { grid-template-columns: 1fr; gap: 1.8rem; }
  .fact-strip { grid-template-columns: 1fr; gap: 1.4rem; }
}

@media (max-width: 720px) {
  header.site.nav-ready .nav-toggle { display: flex; }
  .site-bar { flex-wrap: wrap; }
  header.site.nav-ready nav.site-nav { display: none; }
  nav.site-nav {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line-ivory);
    margin-top: 0.9rem;
    padding-top: 0.4rem;
  }
  header.site.nav-open nav.site-nav { display: flex; }
  nav.site-nav a { padding: 0.85rem 0; }
  nav.site-nav a::after { display: none; }
  nav.site-nav a[aria-current="page"] { color: var(--ivory); border-left: 2px solid var(--walnut-soft); padding-left: 0.8rem; }
}

@media (max-width: 600px) {
  .wrap { padding: 0 1.3rem; }
  .work-grid, .work-grid.wide { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-card { padding: 1.8rem 1.4rem; }
  .lightbox { padding: 2rem 0.8rem; }
}
