@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Noto+Sans+Mono:wght@400;500&family=Sora:wght@400;500;600&display=swap');

:root {
  --gallery: #FAFBFC;
  --linen: #F0F2F0;
  --wash: #F4F5F4;
  --ink: #1A1F1C;
  --sienna: #C46B3A;
  --sienna-soft: rgba(196, 107, 58, 0.12);
  --stone: #6B7370;
  --link: #9A5230;
  --border: rgba(26, 31, 28, 0.08);
  --shadow-sm: 0 4px 20px rgba(26, 31, 28, 0.05);
  --shadow-md: 0 12px 40px rgba(26, 31, 28, 0.08);
  --shadow-lg: 0 20px 60px rgba(26, 31, 28, 0.1);
  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Sora', sans-serif;
  --font-m: 'Noto Sans Mono', monospace;
  --max: 1280px;
  --pad: clamp(64px, 8vw, 120px);
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--gallery);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s; }
a:hover { color: var(--sienna); }
h1, h2, h3 { font-family: var(--font-d); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; margin: 0 0 0.6em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-m);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1rem;
}
.lead { font-size: 1.12rem; line-height: 1.75; color: var(--stone); max-width: 62ch; }

.surface-gallery { background: var(--gallery); color: var(--ink); }
.surface-linen { background: var(--linen); color: var(--ink); position: relative; }
.surface-linen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 107, 58, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.surface-wash { background: var(--wash); color: var(--ink); }
.surface-sienna { background: var(--sienna); color: var(--gallery); }
.surface-sienna a { color: var(--gallery); }
.surface-sienna .btn-outline { color: var(--gallery); border-color: rgba(250, 251, 252, 0.6); }

.container { width: min(var(--max), 92vw); margin: 0 auto; position: relative; z-index: 1; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.section { padding: var(--pad) 0; position: relative; }
.section-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 680px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section .eyebrow { display: inline-block; }
.section .eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--sienna);
  margin-top: 10px;
}
.section-head.centered .eyebrow::after { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: filter 0.25s, box-shadow 0.25s, transform 0.2s;
}
.btn-sienna { background: var(--sienna); color: var(--gallery); border-color: var(--sienna); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn:hover { filter: brightness(1.05); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

/* Top strip */
.terrace-strip {
  text-align: center;
  font-family: var(--font-m);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
  color: var(--stone);
  border-bottom: 1px solid var(--border);
  background: var(--linen);
}

/* Header — compact horizontal bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, background 0.3s;
  background: rgba(250, 251, 252, 0.94);
  backdrop-filter: blur(14px);
}
.site-header.is-sticky { box-shadow: var(--shadow-sm); }
.masthead-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  position: relative;
}
.masthead-centre {
  position: relative;
  text-align: center;
  padding: 10px 0;
}
.wordmark {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.wordmark:hover { color: var(--sienna); }
.under-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 4px 18px;
}
.under-nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.under-nav a:hover { color: var(--sienna); border-bottom-color: var(--sienna); }
.nav-cta { color: var(--sienna) !important; font-weight: 600; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px 0; transition: background 0.2s; }

/* Hero */
.hero-stacked {
  min-height: auto;
  padding: clamp(28px, 4vw, 48px) 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-stacked::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  background: radial-gradient(circle, var(--sienna-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-stack-head {
  padding: clamp(20px, 3vw, 40px) 0 24px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-stack-head .lead,
.hero-stack-head > p:not(.eyebrow) {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--stone);
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-stack-head h1 span { color: var(--sienna); font-style: italic; }
.terrace-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 18px 0 22px;
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.08em;
}
.terrace-steps .lit { color: var(--sienna); font-weight: 500; }
.hero-trust-plate {
  max-width: 460px;
  margin: 0 auto 28px;
  padding: 24px 28px;
  background: var(--gallery);
  border: 1px solid var(--border);
  border-left: 3px solid var(--sienna);
  box-shadow: var(--shadow-md);
  text-align: left;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.hero-trust-plate p { margin-bottom: 1.1rem; font-size: 0.96rem; line-height: 1.65; }
.hero-photo-band {
  position: relative;
  margin-top: 8px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.hero-photo-band img {
  width: 100%;
  height: clamp(280px, 42vh, 480px);
  object-fit: cover;
  display: block;
}
.hero-photo-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 251, 252, 0.15) 0%, rgba(250, 251, 252, 0.65) 100%);
  pointer-events: none;
}
.trust-strip {
  text-align: center;
  padding: 12px 16px;
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--stone);
  letter-spacing: 0.08em;
  background: var(--linen);
  border-top: 1px solid var(--border);
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(32px, 5vw, 56px) 0 clamp(20px, 3vw, 36px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(32px, 5vw, 48px);
}
.page-hero h1 { margin-bottom: 0.45em; }
.page-hero .lead { margin-top: 0.5rem; color: var(--stone); }

/* Terrace motif */
.growth-terrace-motif {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  padding: 20px 24px;
  font-family: var(--font-m);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.1em;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.growth-terrace-motif span { position: relative; padding: 4px 0; }
.growth-terrace-motif span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sienna);
  transition: width 0.3s;
}
.growth-terrace-motif .step-lit { color: var(--sienna); }
.growth-terrace-motif .step-lit::after { width: 100%; }

/* Terrace grid */
.terrace-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.plate {
  grid-column: span 4;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--gallery);
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.plate:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plate:nth-child(2) { grid-column: span 4; margin-top: 28px; }
.plate:nth-child(3) { grid-column: span 4; margin-top: 56px; }
.plate-num {
  font-family: var(--font-m);
  font-size: 10px;
  color: var(--sienna);
  margin-bottom: 0;
  letter-spacing: 0.12em;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(250, 251, 252, 0.92);
  padding: 4px 8px;
  border-radius: 2px;
}
.plate img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  display: block;
}
.plate h3,
.plate p { padding-left: 24px; padding-right: 24px; }
.plate h3 { padding-top: 20px; margin-bottom: 0.45em; }
.plate p { padding-bottom: 24px; font-size: 0.94rem; color: var(--stone); line-height: 1.65; }

/* Mezzanine / capabilities */
.mezzanine { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.capability-plate {
  padding: 0;
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.capability-plate:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.capability-plate img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  margin-bottom: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  display: block;
}
.capability-plate h3,
.capability-plate p,
.capability-plate .plate-num { padding-left: 28px; padding-right: 28px; }
.capability-plate .plate-num { padding-top: 20px; margin-bottom: 8px; }
.capability-plate h3 { padding-top: 0; margin-bottom: 0.45em; }
.capability-plate p { padding-bottom: 28px; }

/* Metrics */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.metric-plate {
  text-align: center;
  padding: 36px 24px;
  background: var(--gallery);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 2px solid var(--sienna);
  transition: transform 0.25s, box-shadow 0.25s;
}
.metric-plate:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.metric-plate strong {
  font-family: var(--font-m);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--sienna);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.metric-plate { font-size: 0.92rem; color: var(--stone); line-height: 1.5; }

/* Work plates */
.work-plates { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.nested-plate {
  border: 1px solid var(--border);
  padding: 0;
  background: var(--gallery);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.nested-plate:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.nested-plate img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.nested-plate figcaption { padding: 24px 26px; }
.nested-plate figcaption h2,
.nested-plate figcaption h3 { margin-bottom: 0.5em; }
.nested-plate figcaption p { font-size: 0.95rem; color: var(--stone); }

/* Grid 2 (about, contact) */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.grid-2 img,
.grid-2 .img-stack img,
.statement-block img,
.contact-visual img,
.faq-image {
  width: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.grid-2 img,
.grid-2 .img-stack img,
.statement-block img { aspect-ratio: 4/3; }
.grid-2 .img-stack img + img { margin-top: 20px; aspect-ratio: 3/4; }
.contact-visual img { aspect-ratio: 5/6; }
.faq-image { margin-top: 32px; }

/* Services */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  padding: clamp(40px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.service-row:first-of-type { padding-top: 0; }
.service-row:last-of-type { border-bottom: none; }
.service-row:nth-child(even) img { order: -1; }
.service-row img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}
.service-row h2 { margin-bottom: 0.75em; }
.service-row p { color: var(--stone); font-size: 0.98rem; }
.service-row .service-text { padding: 8px 0; }

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 24px) clamp(20px, 3vw, 28px);
  margin-bottom: 16px;
  background: var(--gallery);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.faq-item:hover { box-shadow: var(--shadow-md); border-color: rgba(196, 107, 58, 0.2); }
.faq-item:last-of-type { margin-bottom: 0; }
.faq-item h3 {
  font-family: var(--font-b);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.45;
}
.faq-item p { font-size: 0.97rem; color: var(--stone); }

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(48px, 7vw, 80px) 0;
}
.cta-band h2 { margin-bottom: 0.75em; }
.cta-band.surface-sienna h2,
.cta-band.surface-sienna p { color: var(--gallery); }
.cta-band .btn-outline:hover { background: rgba(250, 251, 252, 0.1); }

/* Legal / prose */
.prose { max-width: 720px; }
.prose h2 { margin-top: 2em; font-size: 1.4rem; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1em; }
.prose li { margin-bottom: 0.5em; color: var(--stone); }
.legal-note {
  margin-top: 2.5rem;
  padding: 20px 24px;
  background: var(--linen);
  border-left: 3px solid var(--sienna);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.65;
}

/* Contact form */
.contact-form { display: grid; gap: 18px; margin-top: 28px; }
.contact-form label { display: grid; gap: 6px; font-weight: 500; font-size: 0.92rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 12px 14px;
  border: 1px solid rgba(26, 31, 28, 0.14);
  border-radius: var(--radius);
  font: inherit;
  background: var(--gallery);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--sienna);
  box-shadow: 0 0 0 3px var(--sienna-soft);
}
.contact-form .checkbox { display: flex; align-items: flex-start; gap: 10px; font-weight: 400; font-size: 0.9rem; }
.hp { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.contact-details { margin-bottom: 0.5em; }
.contact-details p { margin-bottom: 0.35em; }

/* Footer */
.site-footer {
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: none;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sienna), rgba(196, 107, 58, 0.2), var(--sienna));
  z-index: 2;
}
.footer-accent {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 100%, rgba(196, 107, 58, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 0%, rgba(196, 107, 58, 0.04) 0%, transparent 40%);
  pointer-events: none;
}
.footer-watermark {
  position: absolute;
  right: 0;
  bottom: 10%;
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 12vw, 8rem);
  color: var(--ink);
  opacity: 0.04;
  pointer-events: none;
  line-height: 1;
  letter-spacing: 0.02em;
}
.footer-inner {
  padding: clamp(48px, 7vw, 72px) 0 clamp(28px, 4vw, 40px);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  padding-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 600;
  margin-bottom: 0.35em;
}
.footer-tagline {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1.25rem;
}
.footer-meta p {
  margin-bottom: 0.45em;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.55;
}
.footer-meta a {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s;
}
.footer-meta a:hover { color: var(--sienna); }
.footer-hours {
  font-family: var(--font-m);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-top: 0.75rem !important;
}
.footer-nav-title {
  font-family: var(--font-m);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 1rem;
}
.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-col nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.88rem;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, padding-left 0.2s;
}
.footer-col nav a:hover {
  color: var(--sienna);
  border-bottom-color: var(--sienna-soft);
  padding-left: 4px;
}
.footer-bottom { padding-top: clamp(24px, 4vw, 32px); }
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--stone);
  line-height: 1.65;
  margin: 0 0 20px;
  padding: 18px 22px;
  background: rgba(250, 251, 252, 0.7);
  border-left: 2px solid var(--sienna);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.footer-copy {
  font-family: var(--font-m);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 0;
  text-align: center;
  opacity: 0.8;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.4s;
  z-index: 2000;
  background: rgba(240, 242, 240, 0.97);
  backdrop-filter: blur(8px);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0; font-size: 0.9rem; max-width: 640px; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.statement-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.statement-block .statement-copy h2 { margin-bottom: 0.65em; }
.statement-block .statement-copy p { color: var(--stone); font-size: 1.02rem; line-height: 1.75; }

.cta-band .btn-outline {
  margin-top: 0.5rem;
  border-color: rgba(250, 251, 252, 0.7);
  color: var(--gallery);
}
.cta-band .btn-outline:hover {
  background: rgba(250, 251, 252, 0.15);
  color: var(--gallery);
}

.img-stack { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.img-stack img { width: 100%; max-width: 100%; display: block; object-fit: cover; }
.img-stack img:first-child { aspect-ratio: 4/3; }
.img-stack img:last-child { aspect-ratio: 3/4; }

.work-page .nested-plate { margin-bottom: 32px; }
.work-page .nested-plate:last-of-type { margin-bottom: 0; }
.work-page .work-plates { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

@media (max-width: 900px) {
  .statement-block { grid-template-columns: 1fr; }
  .statement-block img { order: -1; max-height: 320px; }
}
.js .fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .fade-up.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js .fade-up { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .terrace-grid .plate,
  .terrace-grid .plate:nth-child(n) { grid-column: span 12; margin-top: 0 !important; }
  .mezzanine, .grid-3, .work-plates, .service-row, .footer-grid, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { gap: 28px; }
  .service-row:nth-child(even) img { order: 0; }
}

@media (max-width: 768px) {
  .masthead-bar { flex-wrap: wrap; padding: 8px 0 10px; }
  .masthead-centre { padding: 8px 0 10px; }
  .nav-toggle { display: block; order: 2; }
  .wordmark { order: 1; flex: 1; }
  .under-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    padding: 12px 0 4px;
    border-top: 1px solid var(--border);
    gap: 8px;
  }
  .under-nav.is-open { display: flex; }
  .hero-trust-plate { margin-left: 16px; margin-right: 16px; }
}
