:root {
  --ink: #132834;
  --ink-deep: #0d202a;
  --ink-soft: #2f4650;
  --paper: #f6f1e8;
  --paper-deep: #ece5da;
  --white: #fffdf8;
  --copper: #bd6c3e;
  --copper-deep: #9c522e;
  --sage: #55766f;
  --line: rgba(19, 40, 52, 0.17);
  --line-light: rgba(255, 253, 248, 0.2);
  --shadow: 0 28px 65px rgba(13, 32, 42, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: rgba(189, 108, 62, 0.22); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.site-header.scrolled {
  background: rgba(246, 241, 232, 0.91);
  border-color: var(--line);
  box-shadow: 0 8px 35px rgba(13, 32, 42, 0.07);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark path:first-child { fill: var(--ink); }
.brand-mark path:last-child {
  fill: none;
  stroke: var(--paper);
  stroke-width: 2.2;
  stroke-linecap: round;
}
.brand-copy { display: grid; line-height: 1.2; }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--copper);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}
.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-cta {
  padding: 11px 17px;
  color: var(--white) !important;
  background: var(--ink);
  border-radius: 999px;
  transition: background-color 160ms ease, transform 160ms ease;
}
.nav-cta:hover { background: var(--copper-deep); transform: translateY(-1px); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 860px;
  padding: 166px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 28%, rgba(85, 118, 111, 0.22), transparent 28%),
    radial-gradient(circle at 14% 20%, rgba(189, 108, 62, 0.12), transparent 24%),
    var(--paper);
}
.hero::before {
  position: absolute;
  top: 103px;
  right: -118px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(19, 40, 52, 0.14);
  border-radius: 50%;
  content: "";
}
.hero::after {
  position: absolute;
  top: 161px;
  right: -59px;
  width: 404px;
  height: 404px;
  border: 1px solid rgba(19, 40, 52, 0.1);
  border-radius: 50%;
  content: "";
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(19, 40, 52, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 40, 52, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent 0, #000 21%, #000 70%, transparent 98%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(340px, 0.76fr);
  gap: 74px;
  align-items: center;
}
.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--copper-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-label.light { color: #e3a57f; }
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(54px, 6.2vw, 91px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.052em;
}
.hero h1 span { color: var(--copper-deep); }
.hero-lede {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 38px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--ink); }
.button-primary:hover { background: var(--copper-deep); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--copper); }
.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.text-link span { margin-left: 6px; transition: margin 160ms ease; }
.text-link:hover span { margin-left: 11px; }
.hero-panel {
  position: relative;
  padding: 38px 36px 32px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel::before {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 9px;
  height: 9px;
  background: var(--copper);
  border-radius: 50%;
  box-shadow: -18px 0 0 rgba(255, 253, 248, 0.28), -36px 0 0 rgba(255, 253, 248, 0.14);
  content: "";
}
.panel-kicker {
  color: #e3a57f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.panel-statement {
  margin: 24px 0 30px;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
}
.panel-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}
.panel-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-light);
  color: rgba(255, 253, 248, 0.86);
  font-size: 14px;
}
.panel-list li span { color: #e3a57f; font-size: 11px; font-weight: 800; letter-spacing: 0.08em; }
.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 86px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}
.proof-strip > div:first-child { padding-left: 0; }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong { font-family: var(--serif); font-size: 39px; font-weight: 500; line-height: 1; }
.proof-strip span { color: var(--ink-soft); font-size: 12px; font-weight: 700; line-height: 1.35; text-transform: uppercase; letter-spacing: 0.08em; }

.section { padding: 116px 0; }
.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.8vw, 65px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.section h3 { line-height: 1.2; }
.section-intro { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 0.37fr 1fr;
  gap: 70px;
  align-items: start;
}
.intro-grid p:not(.section-label) {
  max-width: 810px;
  margin: 31px 0 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.65;
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading > p {
  margin: 0 0 7px;
  color: var(--ink-soft);
  font-size: 17px;
}
.section-work { background: var(--paper-deep); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 355px;
  padding: 35px 36px 30px;
  background: rgba(255, 253, 248, 0.66);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}
.service-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: 0 24px 45px rgba(13, 32, 42, 0.1);
  transform: translateY(-5px);
}
.service-number {
  color: var(--copper-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.service-card h3 {
  margin: 54px 0 18px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.service-card p { max-width: 510px; margin: 0; color: var(--ink-soft); font-size: 17px; }
.service-output {
  position: absolute;
  right: 36px;
  bottom: 28px;
  left: 36px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.principle-callout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  margin-top: 18px;
  padding: 49px 52px;
  color: var(--white);
  background: var(--ink);
  border-radius: 14px;
}
.principle-callout h3 { margin: 0; font-family: var(--serif); font-size: 36px; font-weight: 500; letter-spacing: -0.025em; }
.principle-callout > p { margin: 0; color: rgba(255, 253, 248, 0.76); font-size: 17px; }

.section-moments { background: var(--white); }
.moments-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.moment-list { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 12px; }
.moment-list span {
  padding: 12px 17px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.section-deliverables { background: var(--paper); }
.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.deliverable-card {
  min-height: 292px;
  padding: 31px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.deliverable-icon {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--copper-deep);
  background: rgba(189, 108, 62, 0.1);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}
.deliverable-card h3 { margin: 48px 0 13px; font-family: var(--serif); font-size: 27px; font-weight: 500; letter-spacing: -0.02em; }
.deliverable-card p { margin: 0; color: var(--ink-soft); font-size: 15px; }

.section-approach { color: var(--white); background: var(--ink-deep); }
.approach-intro { max-width: 820px; }
.approach-intro p:last-child { max-width: 710px; margin: 27px 0 0; color: rgba(255, 253, 248, 0.68); font-size: 19px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.process-step {
  min-height: 340px;
  padding: 29px 25px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.process-step > span { color: #e3a57f; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; }
.process-step h3 { margin: 84px 0 18px; font-family: var(--serif); font-size: 28px; font-weight: 500; }
.process-step p { margin: 0; color: rgba(255, 253, 248, 0.65); font-size: 15px; }
.anti-fluff { margin: 37px 0 0; color: #e3a57f; font-family: var(--serif); font-size: 23px; font-style: italic; }

.section-about { background: var(--white); }
.about-layout { display: grid; grid-template-columns: 0.37fr 1fr; gap: 80px; align-items: start; }
.about-marker {
  position: sticky;
  top: 135px;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 25px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.about-marker::before {
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(19, 40, 52, 0.19);
  border-radius: 50%;
  content: "";
}
.about-marker span { font-family: var(--serif); font-size: clamp(72px, 8vw, 120px); font-weight: 500; line-height: 0.8; }
.about-marker small { max-width: 145px; margin-top: 16px; color: var(--ink-soft); font-size: 11px; font-weight: 800; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.12em; }
.about-copy > p:not(.section-label) { max-width: 800px; margin: 27px 0 0; color: var(--ink-soft); font-size: 19px; }
.about-copy > p strong { color: var(--ink); font-weight: 800; }
.credential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}
.credential-grid > div {
  display: grid;
  min-height: 122px;
  align-content: start;
  gap: 10px;
  padding: 23px 24px;
  background: var(--paper);
}
.credential-grid strong {
  color: var(--copper-deep);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.credential-grid span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
}
.about-copy blockquote {
  max-width: 820px;
  margin: 50px 0 0;
  padding: 30px 0 0 34px;
  border-top: 1px solid var(--line);
  border-left: 4px solid var(--copper);
  font-family: var(--serif);
  font-size: 27px;
  font-style: italic;
  line-height: 1.45;
}

.section-contact { color: var(--white); background: var(--copper-deep); }
.contact-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 90px; align-items: start; }
.contact-copy > p:not(.section-label) { max-width: 520px; margin: 27px 0 0; color: rgba(255, 253, 248, 0.78); font-size: 19px; }
.contact-detail { display: grid; gap: 5px; margin-top: 48px; }
.contact-detail span { color: rgba(255, 253, 248, 0.57); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.14em; }
.contact-detail a { font-family: var(--serif); font-size: 22px; text-underline-offset: 5px; }
.contact-form {
  padding: 36px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: 0 28px 65px rgba(73, 31, 14, 0.24);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; margin-bottom: 18px; }
.contact-form label > span { font-size: 12px; font-weight: 800; letter-spacing: 0.05em; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(19, 40, 52, 0.22);
  border-radius: 9px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.contact-form input { height: 50px; padding: 0 13px; }
.contact-form textarea { min-height: 135px; padding: 13px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 4px rgba(189, 108, 62, 0.12); }
.contact-form .button { width: 100%; margin-top: 4px; color: var(--white); background: var(--ink); }
.contact-form .button:hover { background: var(--copper-deep); }
.form-note { margin: 13px 0 0; color: var(--ink-soft); font-size: 11px; text-align: center; }

.site-footer { padding: 38px 0; color: var(--white); background: #08171e; }
.footer-inner { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.footer-brand { display: grid; gap: 4px; }
.footer-brand strong { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.footer-brand span, .footer-meta { color: rgba(255, 253, 248, 0.57); font-size: 12px; }
.footer-meta { display: flex; gap: 22px; }
.footer-meta a { color: var(--white); text-decoration: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid rgba(189, 108, 62, 0.68); outline-offset: 4px; }

@media (max-width: 1000px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 13px; }
  .hero { padding-top: 145px; }
  .hero-layout { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 820px; }
  .hero-panel { max-width: 650px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); margin-top: 66px; }
  .proof-strip > div { border-bottom: 1px solid var(--line); }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div:nth-child(n + 3) { border-bottom: 0; }
  .proof-strip > div:nth-child(3) { padding-left: 0; }
  .section { padding: 94px 0; }
  .intro-grid, .about-layout { grid-template-columns: 0.3fr 1fr; gap: 50px; }
  .section-heading { gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { min-height: 300px; }
  .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { gap: 55px; }
}

@media (max-width: 820px) {
  .header-inner { min-height: 74px; }
  .brand-copy small { display: none; }
  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .nav-toggle span:not(.sr-only) { width: 18px; height: 2px; background: var(--ink); transition: transform 160ms ease, opacity 160ms ease; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 80px 32px;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { font-family: var(--serif); font-size: 34px; font-weight: 500; }
  .site-nav .nav-cta { margin-top: 10px; padding: 13px 19px; font-family: var(--sans); font-size: 14px; }
  .hero { min-height: auto; padding-top: 125px; }
  .hero::before, .hero::after { opacity: 0.45; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 17px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip > div, .proof-strip > div:first-child, .proof-strip > div:nth-child(n + 3) { padding: 19px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip > div:last-child { border-bottom: 0; }
  .intro-grid, .section-heading, .moments-layout, .about-layout, .contact-layout, .principle-callout { grid-template-columns: 1fr; gap: 34px; }
  .intro-grid .section-label { margin-bottom: 0; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .principle-callout { padding: 38px 34px; }
  .about-marker { position: relative; top: auto; width: min(270px, 75vw); }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-grid > div { min-height: auto; }
  .contact-form { padding: 29px 24px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 16px; }
  .hero { padding-bottom: 38px; }
  .hero h1 { font-size: clamp(46px, 15vw, 67px); }
  .hero-lede { font-size: 20px; }
  .hero-panel { padding: 32px 25px 24px; }
  .panel-statement { font-size: 21px; }
  .section { padding: 78px 0; }
  .section h2 { font-size: clamp(39px, 12vw, 52px); }
  .intro-grid p:not(.section-label) { font-size: 20px; }
  .service-card { min-height: 360px; padding: 30px 26px 26px; }
  .service-card h3 { margin-top: 42px; font-size: 31px; }
  .service-output { right: 26px; left: 26px; }
  .principle-callout { padding: 34px 25px; }
  .principle-callout h3 { font-size: 31px; }
  .deliverable-grid, .process-grid { grid-template-columns: 1fr; }
  .deliverable-card { min-height: 265px; }
  .process-step { min-height: 275px; }
  .process-step h3 { margin-top: 60px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-detail a { font-size: 18px; overflow-wrap: anywhere; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
}

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