:root {
  --color-chalk: #f7f5f1;
  --color-ivory: #f3efe6;
  --color-teal: #5f9e90;
  --color-teal-deep: #3d7a6e;
  --color-beige: #d4c4a8;
  --color-dune: #c9b896;
  --color-navy: #1e3a4c;
  --color-navy-deep: #152a38;
  --color-coral: #e07a5f;
  --color-text: #243542;
  --color-muted: #5a6b76;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --radius-card: 18px;
  --shadow-paper: 0 10px 28px rgba(30, 58, 76, 0.08);
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(95, 158, 144, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 90% 5%, rgba(212, 196, 168, 0.25), transparent 45%),
    linear-gradient(180deg, var(--color-chalk) 0%, #efe9df 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--color-navy);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.85rem, 3vw, 2.55rem); margin: 0 0 0.5em; }
h3 { font-size: 1.35rem; margin: 0 0 0.4em; }

p { margin: 0 0 1em; }

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container--narrow {
  width: min(740px, calc(100% - 2.5rem));
}

.container--wide {
  width: min(1240px, calc(100% - 2.5rem));
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin: 0 0 0.75rem;
}

.lede {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 36rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section--ivory {
  background: var(--color-ivory);
}

.section--navy {
  background: var(--color-navy);
  color: var(--color-chalk);
}

.section--navy h2,
.section--navy h3 {
  color: var(--color-chalk);
}

.section--cta {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(95, 158, 144, 0.18), rgba(212, 196, 168, 0.35)),
    var(--color-ivory);
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-header {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-header p {
  color: var(--color-muted);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.45rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-navy);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-navy-deep);
  color: #fff;
}

.btn--teal {
  background: var(--color-teal);
  color: #fff;
}

.btn--teal:hover {
  background: var(--color-teal-deep);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
  letter-spacing: 0.08em;
}

.btn--ghost:hover {
  background: var(--color-navy);
  color: #fff;
}

.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
}

.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 245, 241, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 58, 76, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.site-header__wordmark {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--color-navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-header__brand {
  text-decoration: none;
}

.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav a {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  position: relative;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 0;
  height: 1px;
  background: var(--color-teal);
  transition: width 0.3s var(--ease);
}

.site-header__nav a:hover::after {
  width: 100%;
}

.site-header__cta {
  background: var(--color-navy);
  color: #fff !important;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
}

.site-header__cta::after {
  display: none !important;
}

.site-header__cta:hover {
  background: var(--color-navy-deep);
  color: #fff !important;
}

.site-header__toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}

.site-header__toggle span {
  display: block;
  height: 2px;
  width: 1.4rem;
  background: var(--color-navy);
  margin-inline: auto;
  transition: transform 0.25s var(--ease);
}

/* Hero home — asymmetric editorial */
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
}

.home-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 42, 56, 0.72) 0%, rgba(21, 42, 56, 0.35) 48%, rgba(21, 42, 56, 0.15) 100%),
    linear-gradient(0deg, rgba(21, 42, 56, 0.55) 0%, transparent 45%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 10vw, 7rem) 0 clamp(3.5rem, 8vw, 5.5rem);
  color: var(--color-chalk);
  max-width: 34rem;
}

.home-hero__content .eyebrow {
  color: var(--color-beige);
}

.home-hero__content h1 {
  color: var(--color-chalk);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-style: italic;
  font-weight: 500;
}

.home-hero__content .lede {
  color: rgba(247, 245, 241, 0.88);
}

.home-hero__content .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.home-hero__content .btn--ghost:hover {
  background: #fff;
  color: var(--color-navy);
}

/* Offset band */
.offset-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.offset-band--reverse {
  direction: rtl;
}

.offset-band--reverse > * {
  direction: ltr;
}

.offset-band__media {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
  border: 1px solid rgba(30, 58, 76, 0.1);
}

.offset-band__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.offset-band__body {
  padding: 1rem 0;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--color-ivory);
  border: 1px solid rgba(30, 58, 76, 0.12);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-paper);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(30, 58, 76, 0.12);
}

.card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.35rem 1.4rem 1.55rem;
  border-top: 1px solid rgba(30, 58, 76, 0.1);
}

.card__body h3 {
  margin-bottom: 0.45rem;
}

.card__body h3 a {
  color: var(--color-navy);
  text-decoration: none;
}

.card__body h3 a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-teal);
  transition: width 0.3s var(--ease);
  margin-top: 0.15rem;
}

.card__body h3 a:hover::after {
  width: 3rem;
}

.card__meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.35rem;
}

.card__body p {
  color: var(--color-muted);
  font-size: 0.98rem;
  margin-bottom: 0;
}

/* Quote strip */
.quote-strip {
  border-left: 2px solid var(--color-coral);
  padding: 0.5rem 0 0.5rem 1.75rem;
  max-width: 40rem;
}

.quote-strip blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--color-navy);
}

.quote-strip cite {
  font-style: normal;
  font-size: 0.92rem;
  color: var(--color-muted);
}

/* Split / process */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.scope-panel {
  background: var(--color-chalk);
  border: 1px solid rgba(30, 58, 76, 0.12);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-paper);
}

.scope-panel ul {
  margin-bottom: 0;
  color: var(--color-muted);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.process-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--color-ivory);
  border: 1px solid rgba(30, 58, 76, 0.1);
  border-radius: var(--radius-card);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-paper);
}

.process-list__num {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--color-teal);
  line-height: 1;
}

/* Page heroes */
.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
}

.page-hero--media {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero--media .page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero--media .page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--media .page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21, 42, 56, 0.7), rgba(21, 42, 56, 0.25));
}

.page-hero--media .page-hero__content {
  position: relative;
  z-index: 1;
  color: var(--color-chalk);
  padding-bottom: 3rem;
}

.page-hero--media h1 {
  color: var(--color-chalk);
}

.page-hero--media .lede {
  color: rgba(247, 245, 241, 0.88);
}

/* Pricing */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-ivory);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
  border: 1px solid rgba(30, 58, 76, 0.1);
}

.fee-table th,
.fee-table td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(30, 58, 76, 0.08);
}

.fee-table th {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  background: var(--color-navy);
  color: var(--color-chalk);
}

.fee-table tr:last-child td {
  border-bottom: none;
}

.fee-note {
  margin-top: 1.5rem;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* Reviews */
.review-grid {
  display: grid;
  gap: 1.5rem;
}

.review-card {
  background: var(--color-ivory);
  border: 1px solid rgba(30, 58, 76, 0.1);
  border-left: 3px solid var(--color-teal);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.65rem;
  box-shadow: var(--shadow-paper);
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.review-card cite {
  font-style: normal;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.story-block {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.story-block img {
  border-radius: var(--radius-card);
  border: 1px solid rgba(30, 58, 76, 0.1);
  box-shadow: var(--shadow-paper);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.5rem;
  align-items: start;
}

.form-card {
  background: var(--color-ivory);
  border: 1px solid rgba(30, 58, 76, 0.12);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-paper);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: var(--color-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(30, 58, 76, 0.22);
  border-radius: 10px;
  font: inherit;
  background: var(--color-chalk);
  color: var(--color-text);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-teal);
  outline-offset: 1px;
}

.field-error {
  color: var(--color-coral);
  font-size: 0.85rem;
  margin-top: 0.3rem;
  display: none;
}

.form-group.is-invalid .field-error {
  display: block;
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: var(--color-coral);
}

.form-status {
  margin-top: 0.85rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
}

.form-status.is-success {
  background: rgba(95, 158, 144, 0.18);
  color: var(--color-teal-deep);
}

.form-status.is-error {
  background: rgba(224, 122, 95, 0.15);
  color: #a04530;
}

.contact-aside {
  padding: 0.5rem 0;
}

.contact-aside address {
  font-style: normal;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Legal prose */
.page-prose {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 4rem;
}

.page-prose__header {
  margin-bottom: 2rem;
}

.page-prose__date {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.page-prose__cover {
  margin: 0 0 2rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
}

.page-prose__cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.prose h2 {
  margin-top: 2rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  border: 1px solid rgba(30, 58, 76, 0.15);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.prose th {
  background: var(--color-ivory);
}

/* Footer */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(247, 245, 241, 0.85);
  padding: 3.5rem 0 0;
  margin-top: 2rem;
}

.site-footer a {
  color: rgba(247, 245, 241, 0.82);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.site-footer__name {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--color-chalk);
  margin-bottom: 0.65rem;
}

.site-footer__tag {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  max-width: 22rem;
}

.site-footer__address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer__heading {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-beige);
  margin-bottom: 0.85rem;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__col li {
  margin-bottom: 0.45rem;
}

.newsletter-form {
  display: grid;
  gap: 0.65rem;
}

.newsletter-form input {
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 241, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(247, 245, 241, 0.5);
}

.site-footer__bar {
  border-top: 1px solid rgba(247, 245, 241, 0.12);
  padding: 1.1rem 0;
  font-size: 0.85rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 640px;
  margin-inline: auto;
}

.cookie-banner__inner {
  background: var(--color-navy);
  color: var(--color-chalk);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  display: grid;
  gap: 1rem;
}

.cookie-banner__inner a {
  color: var(--color-beige);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Team / about */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.team-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.15rem;
  background: var(--color-ivory);
  border: 1px solid rgba(30, 58, 76, 0.1);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.team-card__body {
  padding: 1.15rem 1.15rem 1.15rem 0;
}

.team-card__role {
  color: var(--color-coral);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* Timeline process page */
.timeline {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-beige);
  display: grid;
  gap: 2rem;
}

.timeline__item {
  position: relative;
  padding-left: 1rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -1.95rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-coral);
  border: 2px solid var(--color-chalk);
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Service detail hero */
.service-detail__hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 1rem;
}

.service-detail__hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.service-detail__figure {
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-paper);
  border: 1px solid rgba(30, 58, 76, 0.1);
}

.service-detail__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.factor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.factor-item {
  background: var(--color-ivory);
  border: 1px solid rgba(30, 58, 76, 0.1);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  box-shadow: var(--shadow-paper);
}

.factor-item h3 {
  font-size: 1.2rem;
}

/* Horizontal rhythm strip */
.hz-strip {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.hz-strip__item {
  flex: 0 0 min(280px, 75vw);
  scroll-snap-align: start;
  background: var(--color-ivory);
  border: 1px solid rgba(30, 58, 76, 0.1);
  border-radius: var(--radius-card);
  padding: 1.35rem;
  box-shadow: var(--shadow-paper);
}

@media (max-width: 960px) {
  .card-grid,
  .offset-band,
  .offset-band--reverse,
  .split-grid,
  .contact-layout,
  .site-footer__grid,
  .service-detail__hero-grid,
  .story-block,
  .team-grid,
  .factor-list {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .team-card {
    grid-template-columns: 120px 1fr;
  }

  .site-header__toggle {
    display: flex;
  }

  .site-header__nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(247, 245, 241, 0.97);
    border-bottom: 1px solid rgba(30, 58, 76, 0.1);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .site-header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-header__nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-hero__media img {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
