:root {
  --ink: #171913;
  --muted: #686b65;
  --paper: #f8f7f3;
  --white: #ffffff;
  --line: #dfded8;
  --gold: #b7955d;
  --gold-dark: #8a6b3f;
  --green: #132019;
  --green-soft: #1d2c23;
  --shadow: 0 24px 65px rgba(22, 25, 19, .14);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --nav-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open, body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 16px; background: var(--white); border-radius: 3px; }
.skip-link:focus { transform: none; }

.container { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.section { padding: 108px 0; }
.eyebrow { margin: 0 0 14px; color: var(--gold-dark); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow.light { color: #d9bf91; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, .feature-copy h3, .contact-copy h2 { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h2 { margin-bottom: 22px; font-size: clamp(2.25rem, 4vw, 4rem); letter-spacing: -.035em; }
h3 { line-height: 1.28; }
p { color: var(--muted); }
.lead { font-size: 1.1rem; }
.centred { max-width: 720px; margin-inline: auto; text-align: center; }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid transparent; border-radius: 0; font-size: .73rem; font-weight: 700; letter-spacing: .1em; text-align: center; text-transform: uppercase; cursor: pointer; transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(183, 149, 93, .55); outline-offset: 4px; }
.button-gold { color: var(--white); background: var(--gold); }
.button-gold:hover { background: var(--gold-dark); }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.7); background: rgba(0,0,0,.1); }
.button-outline-light:hover { border-color: var(--white); background: var(--white); color: var(--ink); }
.button-dark { color: var(--white); background: var(--green); }
.button-dark:hover { background: var(--gold-dark); }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header { position: relative; min-height: 760px; height: 100svh; max-height: 940px; color: var(--white); background-image: linear-gradient(90deg, rgba(8, 10, 8, .63), rgba(8, 10, 8, .19) 55%, rgba(8, 10, 8, .42)), url("../assets/hero/hero-main.webp"); background-position: center; background-size: cover; overflow: hidden; }
.site-header::after { content: ""; position: absolute; inset: auto 0 0; height: 220px; background: linear-gradient(transparent, rgba(8, 10, 8, .42)); pointer-events: none; }
.navbar { position: fixed; z-index: 50; top: 0; left: 0; width: 100%; min-height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 9px clamp(22px, 5vw, 72px); border-bottom: 1px solid rgba(255,255,255,.15); transition: background .3s ease, box-shadow .3s ease, min-height .3s ease; }
.navbar.scrolled { min-height: 72px; background: rgba(17, 26, 20, .96); box-shadow: 0 10px 35px rgba(0,0,0,.2); backdrop-filter: blur(12px); }
.brand { position: relative; z-index: 3; width: 145px; height: 68px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 100%; height: auto; }
.nav-panel { display: flex; align-items: center; gap: clamp(24px, 4vw, 56px); }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); margin: 0; padding: 0; list-style: none; }
.nav-links a { position: relative; padding: 8px 0; font-size: .78rem; color: rgba(255,255,255,.9); }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-quote { min-height: 46px; padding-inline: 20px; white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: 6px 0; background: #fff; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-content { position: relative; z-index: 2; width: min(880px, calc(100% - 44px)); margin: 0 auto; padding-top: calc(var(--nav-height) + 16vh); text-align: center; }
.hero-content h1 {
  margin-bottom: 0;
  font-family: Baskerville, "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.018em;
  text-shadow: 0 3px 28px rgba(0,0,0,.28);
}
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.scroll-cue { position: absolute; z-index: 3; bottom: 34px; left: 50%; display: flex; flex-direction: column; align-items: center; gap: 7px; color: rgba(255,255,255,.76); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; animation: float 1.8s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(6px); } }

.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: .8fr 1.65fr; gap: clamp(56px, 9vw, 130px); align-items: start; }
.about-heading { position: sticky; top: 120px; }
.about-heading h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.25vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.about-copy { columns: 2; column-gap: 48px; }
.about-copy p { break-inside: avoid; margin-bottom: 24px; }
.about-copy strong { color: var(--ink); }
.benefits-grid { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 84px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefit { min-height: 270px; padding: 34px 24px; text-align: center; border-right: 1px solid var(--line); }
.benefit:last-child { border-right: 0; }
.icon-wrap { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 20px; color: var(--gold-dark); }
.icon-wrap svg { width: 48px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.4; }
.benefit h3 { margin-bottom: 10px; font-size: 1rem; }
.benefit p { margin-bottom: 0; font-size: .9rem; }

.projects-section { background: var(--paper); }
.section-heading > p:last-child { max-width: 590px; margin-inline: auto; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.project-card { position: relative; min-width: 0; height: 390px; padding: 0; overflow: hidden; border: 0; background: #252821; cursor: pointer; box-shadow: 0 18px 42px rgba(18,20,16,.08); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 40%, rgba(7,9,7,.82)); }
.project-card:hover img { transform: scale(1.055); }
.project-overlay { position: absolute; z-index: 2; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: flex-end; justify-content: space-between; gap: 14px; color: var(--white); text-align: left; }
.project-overlay small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.72); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.project-overlay strong { display: block; font-family: var(--serif); font-size: 1.42rem; font-weight: 400; line-height: 1.15; }
.round-arrow { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: rgba(255,255,255,.93); transition: transform .25s ease, background .25s ease; }
.project-card:hover .round-arrow { transform: translateX(3px); background: var(--gold); color: var(--white); }
.project-feature { display: grid; grid-template-columns: .72fr 1.5fr; min-height: 480px; margin-top: 90px; background: var(--white); box-shadow: var(--shadow); }
.feature-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(36px, 6vw, 74px); }
.feature-copy h3 { margin: 0 0 20px; font-size: clamp(2rem, 3.2vw, 3.5rem); }
.feature-copy .button { margin-top: 12px; }
.feature-image { position: relative; min-height: 480px; padding: 0; overflow: hidden; border: 0; background: #333; cursor: pointer; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s ease; }
.feature-image:hover img { transform: scale(1.035); }
.feature-image span { position: absolute; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; padding: 12px 16px; color: var(--white); background: rgba(15,22,17,.86); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.services-section { color: var(--white); background: var(--green); }
.services-section p { color: rgba(255,255,255,.68); }
.services-layout { display: grid; grid-template-columns: .8fr 1.25fr; gap: clamp(70px, 10vw, 150px); }
.services-layout .section-heading { position: sticky; top: 120px; align-self: start; }
.services-layout h2 { color: var(--white); }
.service-list { border-top: 1px solid rgba(255,255,255,.18); }
.service-item { display: grid; grid-template-columns: 72px 1fr; gap: 22px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.service-item > span { color: var(--gold); font-family: var(--serif); font-size: 1.5rem; }
.service-item h3 { margin-bottom: 8px; color: var(--white); font-size: 1.22rem; }
.service-item p { margin-bottom: 0; }

.process-section { background: var(--white); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 48px; padding: 0; list-style: none; counter-reset: steps; }
.process-step { position: relative; min-height: 270px; padding: 20px 28px 28px; border-left: 1px solid var(--line); }
.process-step:last-child { border-right: 1px solid var(--line); }
.process-step:not(:last-child)::after { content: "→"; position: absolute; top: 59px; right: -11px; z-index: 2; width: 22px; color: #a9aaa6; background: var(--white); text-align: center; }
.step-number { display: block; margin-bottom: 12px; color: var(--gold); font-family: var(--serif); font-size: 2.8rem; line-height: 1; }
.step-icon { display: block; min-height: 33px; margin-bottom: 14px; color: var(--gold-dark); font-size: 1.35rem; }
.process-step h3 { margin-bottom: 10px; font-size: 1rem; }
.process-step p { margin-bottom: 0; font-size: .88rem; }

.contact-section { position: relative; padding: 78px 0; color: var(--white); background: linear-gradient(105deg, rgba(12,21,16,.97), rgba(19,32,25,.93)), url("../assets/hero/hero-main.webp") center/cover; }
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(42px, 6vw, 88px); align-items: center; }
.contact-copy h2 { margin-bottom: 20px; color: var(--white); font-size: clamp(2.45rem, 4.1vw, 4.35rem); }
.contact-copy > p:not(.eyebrow) { max-width: 570px; color: rgba(255,255,255,.72); font-size: 1.05rem; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 34px; }
.contact-details > a, .contact-details > div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-details > a { transition: color .2s ease; }
.contact-details > a:hover { color: #e6c998; }
.contact-details > * > span:first-child { color: var(--gold); font-size: 1.25rem; }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { margin-bottom: 2px; color: rgba(255,255,255,.55); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.contact-details strong { color: inherit; font-size: .9rem; font-weight: 600; }
.contact-socials {
  margin-top: 28px;
}

.contact-socials > small {
  display: block;
  margin-bottom: 12px;
  color: #c9a15f;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #d7bd87;
  border: 1px solid rgba(215, 189, 135, 0.5);
  border-radius: 50%;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.contact-social-links a:hover,
.contact-social-links a:focus-visible {
  color: #f1dfb2;
  border-color: #f1dfb2;
  background-color: rgba(215, 189, 135, 0.1);
  transform: translateY(-2px);
}

.contact-social-links a:focus-visible {
  outline: 2px solid #f1dfb2;
  outline-offset: 3px;
}

.contact-social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-social-links .social-dot {
  fill: currentColor;
  stroke: none;
}
.quote-form { width: 100%; max-width: 680px; justify-self: end; padding: clamp(26px, 3vw, 40px); color: var(--ink); background: var(--white); box-shadow: 0 28px 80px rgba(0,0,0,.25); }
.form-heading { margin-bottom: 20px; }
.form-heading > p:last-child { margin: 8px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.48; }
.form-heading h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.1vw, 1.85rem); font-weight: 400; line-height: 1.15; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label:not(.consent) { display: block; margin-bottom: 14px; color: #464942; font-size: .67rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; margin-top: 6px; padding: 11px 12px; border: 1px solid #d6d5cf; border-radius: 0; color: var(--ink); background: #fff; font-size: .9rem; letter-spacing: 0; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease; }
.quote-form textarea { min-height: 118px; resize: vertical; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(183,149,93,.15); outline: 0; }
.quote-form .invalid { border-color: #a83b32; box-shadow: 0 0 0 3px rgba(168,59,50,.10); }
.field-help { display: block; margin-top: 5px; color: #777a73; font-size: .68rem; font-weight: 500; letter-spacing: 0; line-height: 1.4; text-transform: none; }
.field-error { display: none; margin-top: 5px; color: #a83b32; font-size: .7rem; font-weight: 600; letter-spacing: 0; line-height: 1.35; text-transform: none; }
.field-error:not(:empty) { display: block; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 4px 0 22px; color: var(--muted); font-size: .76rem; }
.consent input { width: 17px; height: 17px; flex: 0 0 auto; margin: 3px 0 0; accent-color: var(--gold-dark); }
.form-status { min-height: 0; margin: 10px 0 0; color: #31643c; font-size: .8rem; font-weight: 600; }
.form-status.error { color: #a83b32; }
.form-status.success { padding: 12px 14px; border-left: 3px solid #31643c; background: #f0f6f1; }
.quote-form button[disabled] { opacity: .68; cursor: wait; transform: none; }
.form-note { margin: 10px 0 0; font-size: .67rem; line-height: 1.45; }
.form-note a { color: var(--gold-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.site-footer { padding: 54px 0 24px; color: rgba(255,255,255,.76); background: #0c1510; }
.footer-main { display: grid; grid-template-columns: 160px 1.4fr 1.5fr auto; gap: 38px; align-items: center; }
.footer-brand { display: block; width: 150px; height: auto; overflow: visible; }
.footer-brand img { width: 100%; height: auto; object-fit: contain; }
.footer-main > p { margin: 0; color: rgba(255,255,255,.55); font-size: .85rem; }
.footer-main nav { display: flex; flex-wrap: wrap; gap: 16px 26px; font-size: .78rem; }
.footer-main nav a:hover { color: #e1c491; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.4); font-size: .7rem; }
.legal-page { background: var(--paper); }
.legal-header { padding: 18px 0; color: var(--white); background: var(--green); }
.legal-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.legal-brand { width: 145px; display: block; }
.legal-brand img { width: 100%; height: auto; }
.legal-nav .text-link { color: var(--white); border-color: rgba(255,255,255,.65); }
.legal-main { padding: 78px 0 100px; }
.legal-content { width: min(820px, calc(100% - 44px)); margin-inline: auto; }
.legal-content h1 { margin-bottom: 14px; font-size: clamp(2.5rem, 6vw, 4.8rem); }
.legal-updated { margin-bottom: 44px; color: var(--gold-dark); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.legal-content section { padding: 28px 0; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 14px; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.legal-content h3 { margin: 22px 0 8px; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: var(--gold-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-contact-box { padding: 20px 22px; border-left: 3px solid var(--gold); background: var(--white); box-shadow: 0 12px 34px rgba(22,25,19,.08); }

.gallery-modal { width: min(1180px, calc(100% - 34px)); max-width: none; height: min(880px, calc(100% - 34px)); max-height: none; padding: 0; border: 0; color: var(--white); background: #0b100d; box-shadow: 0 35px 100px rgba(0,0,0,.55); }
.gallery-modal::backdrop { background: rgba(4,7,5,.84); backdrop-filter: blur(7px); }
.gallery-shell { height: 100%; display: grid; grid-template-rows: auto minmax(0,1fr) auto; }
.gallery-topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 28px; border-bottom: 1px solid rgba(255,255,255,.12); }
.gallery-topbar .eyebrow { margin-bottom: 4px; color: #d5b77e; }
.gallery-topbar h2 { margin: 0; color: var(--white); font-size: clamp(1.5rem, 3vw, 2.5rem); }
.gallery-close { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: var(--white); background: transparent; font-size: 2rem; line-height: 1; cursor: pointer; }
.gallery-stage { position: relative; min-height: 0; display: grid; place-items: center; overflow: hidden; background: #050706; }
.gallery-stage img {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}
.gallery-control { position: absolute; z-index: 2; top: 50%; width: 48px; height: 64px; border: 0; color: var(--white); background: rgba(12,18,14,.76); font-size: 2.5rem; line-height: 1; transform: translateY(-50%); cursor: pointer; }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
.gallery-counter { position: absolute; right: 18px; bottom: 18px; padding: 6px 10px; color: var(--white); background: rgba(0,0,0,.62); font-size: .75rem; }
.gallery-thumbs { display: flex; gap: 10px; padding: 14px; overflow-x: auto; border-top: 1px solid rgba(255,255,255,.12); }
.gallery-thumbs button { flex: 0 0 96px; height: 68px; padding: 0; overflow: hidden; border: 2px solid transparent; opacity: .55; background: #222; cursor: pointer; }
.gallery-thumbs button.active { border-color: var(--gold); opacity: 1; }
.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #111713;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .nav-panel { gap: 22px; }
  .nav-links { gap: 18px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card { height: 420px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .process-step:nth-child(3) { border-right: 1px solid var(--line); }
  .process-step:nth-child(3)::after { display: none; }
  .footer-main { grid-template-columns: 150px 1fr auto; }
  .footer-main > p { grid-column: 2 / 3; }
  .footer-main nav { grid-column: 2 / 3; }
  .footer-main > .button { grid-column: 3; grid-row: 1 / span 2; }
}

@media (max-width: 900px) {
  :root { --nav-height: 76px; }
  .section { padding: 84px 0; }
  .menu-toggle { position: relative; z-index: 61; display: block; }
  .nav-panel { position: fixed; z-index: 60; inset: 0; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 34px; padding: 90px 32px 42px; background: rgba(12,21,16,.98); transform: translateX(100%); transition: transform .35s ease; }
  .nav-panel.open { transform: none; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-links a { display: block; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-family: var(--serif); font-size: 1.75rem; }
  .nav-links a::after { display: none; }
  .nav-quote { align-self: flex-start; }
  .about-grid, .services-layout, .contact-grid { grid-template-columns: 1fr; }
  .about-heading, .services-layout .section-heading { position: static; }
  .about-copy { columns: 1; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(even) { border-right: 0; }
  .benefit:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .benefit:last-child { grid-column: 1 / -1; border-right: 0; }
  .project-feature { grid-template-columns: 1fr; }
  .feature-image { min-height: 420px; }
  .contact-copy { text-align: center; }
  .contact-copy > p:not(.eyebrow) { margin-inline: auto; }
  .contact-details { text-align: left; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 30px, 1180px); }
  .site-header { min-height: 700px; height: 100svh; max-height: none; background-image: linear-gradient(rgba(7,9,7,.45), rgba(7,9,7,.63)), url("../assets/hero/hero-mobile.webp"); background-position: center; }
  .navbar { padding-inline: 17px; }
  .brand { width: 124px; height: 58px; }
  .hero-content { width: min(100% - 30px, 620px); padding-top: calc(var(--nav-height) + 15vh); }
  .hero-content h1 { font-size: clamp(2.35rem, 10.5vw, 3.65rem); }
  .hero-actions { flex-direction: column; align-items: stretch; width: min(100%, 330px); margin-inline: auto; }
  .scroll-cue { bottom: 22px; }
  h2 { font-size: clamp(2.15rem, 10vw, 3.25rem); }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { grid-column: auto; border-bottom: 0; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { height: 410px; }
  .project-feature { margin-top: 58px; }
  .feature-copy { padding: 38px 26px; }
  .feature-image { min-height: 330px; }
  .service-item { grid-template-columns: 48px 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step:nth-child(3) { min-height: 0; padding: 24px 22px; border: 1px solid var(--line); border-bottom: 0; }
  .process-step:last-child { border-bottom: 1px solid var(--line); }
  .process-step::after { display: none !important; }
  .step-number { display: inline-block; margin-right: 16px; font-size: 2.2rem; }
  .step-icon { display: inline-block; }
  .contact-details { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { max-width: none; justify-self: stretch; padding: 28px 22px; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { margin-inline: auto; }
  .footer-main > p, .footer-main nav, .footer-main > .button { grid-column: auto; grid-row: auto; }
  .footer-main nav { justify-content: center; }
  .footer-main > .button { justify-self: center; }
 .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; }
 .footer-bottom > p:last-child { text-align: center; }
  .gallery-modal { width: 100%; height: 100%; }
  .gallery-topbar { padding: 17px; }
  .gallery-control { width: 42px; height: 56px; }
  .gallery-prev { left: 6px; }
  .gallery-next { right: 6px; }
  .gallery-thumbs button { flex-basis: 78px; height: 56px; }
}

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