@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("./assets/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/playfair-display-700-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --navy-dark: #0d1b2a;
  --navy-mid: #1b3a4b;
  --gold-primary: #c9a84c;
  --gold-light: #e2c47a;
  --warm-light: #f8f5ef;
  --text-dark: #2d3748;
  --text-muted: #64748b;
  --white: #ffffff;
  --line: rgba(13, 27, 42, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --text: var(--text-dark);
  --muted: var(--text-muted);
  --accent: var(--gold-primary);
  --accent-soft: rgba(201, 168, 76, 0.18);
  --shadow: 0 24px 80px rgba(13, 27, 42, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --content-width: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.1), transparent 18%),
    linear-gradient(180deg, var(--navy-dark) 0, var(--navy-dark) 38rem, var(--warm-light) 38rem, var(--warm-light) 100%);
  color: var(--text);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.28;
  z-index: -1;
}

.site-shell::before {
  top: -10rem;
  right: -8rem;
  background: rgba(27, 58, 75, 0.24);
}

.site-shell::after {
  bottom: -12rem;
  left: -8rem;
  background: rgba(201, 168, 76, 0.12);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  margin-top: 18px;
  margin-bottom: 28px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(13, 27, 42, 0.88);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(13, 27, 42, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
}

.brand-wordmark {
  width: 250px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
  box-shadow: 0 16px 36px rgba(201, 168, 76, 0.24);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

main {
  width: var(--content-width);
  margin: 0 auto;
}

section {
  position: relative;
}

.hero {
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  align-items: start;
  gap: 34px;
  padding: 24px 0 48px;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-city,
.hero-justice,
.hero-grid {
  position: absolute;
  inset: 0;
  border-radius: 18px;
}

.hero-city {
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.34), rgba(13, 27, 42, 0.92)),
    url("./assets/skyline.jpeg") center/cover no-repeat;
  opacity: 0.72;
  transform: scale(1.04);
}

.hero-justice {
  inset: 6% 20% 8% 20%;
  background: url("./assets/justice.jpeg") center/contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.5;
  filter: drop-shadow(0 24px 80px rgba(0, 0, 0, 0.38));
}

.hero-grid {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 140px 140px;
  mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 100%);
  opacity: 0.18;
}

.hero-copy,
.hero-panel,
.statement,
.approach-section,
.process-section,
.advantage-stage,
.focus-section,
.contact-section,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 760px;
  margin-top: 110px;
  padding: 44px 36px 36px 32px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(13, 27, 42, 0.94) 0%, rgba(13, 27, 42, 0.9) 52%, rgba(13, 27, 42, 0.62) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.eyebrow,
.panel-label,
.card-kicker,
.meta-label {
  margin: 0 0 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--gold-primary);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.8rem, 7vw, 6.2rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  letter-spacing: -0.025em;
}

p,
li {
  line-height: 1.75;
  font-size: 1.02rem;
  color: var(--muted);
}

.hero p,
.hero li,
.hero .panel-card strong,
.advantage-stage p,
.advantage-stage h2,
.advantage-stage h3,
.advantage-stage .eyebrow,
.site-footer p {
  color: var(--white);
}

.hero .hero-text,
.hero .hero-points li,
.hero .panel-card p,
.site-footer .footer-note {
  color: rgba(255, 255, 255, 0.78);
}

.hero-text {
  max-width: 44rem;
  margin: 28px 0 0;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 36px 0 30px;
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), #8aa7c1);
  box-shadow: 0 0 0 6px rgba(201, 168, 76, 0.08);
  flex: none;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
}

.hero-facts article {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 1.02rem;
  color: var(--white);
}

.hero-facts span {
  margin-top: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.45;
}

.hero-panel {
  margin-top: 210px;
  align-self: center;
  display: grid;
  gap: 16px;
  padding-bottom: 26px;
}

.panel-card,
.statement,
.comparison-card,
.process-step,
.advantage-card,
.focus-list article,
.contact-card,
.contact-meta article {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 26px;
  border-radius: var(--radius-sm);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 27, 42, 0.88);
}

.panel-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.36rem;
  color: var(--text);
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 28px;
  margin-top: 32px;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
}

.statement-copy p:last-child,
.section-heading p:last-child,
.contact-copy > p:last-of-type {
  margin-bottom: 0;
}

.statement-metrics {
  display: grid;
  gap: 18px;
}

.statement-metrics article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.statement-metrics article:first-child {
  border-top: 0;
  padding-top: 0;
}

.statement-metrics span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.section-heading {
  max-width: 840px;
}

.section-heading h2 {
  color: var(--navy-dark);
}

.section-heading::after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.section-heading.light p,
.section-heading.light h2 {
  color: var(--white);
}

.approach-section,
.process-section,
.focus-section,
.contact-section {
  padding: 120px 0 0;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.comparison-card {
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.comparison-card-highlight {
  background:
    linear-gradient(180deg, rgba(27, 58, 75, 0.96), rgba(13, 27, 42, 0.96)),
    radial-gradient(circle at top right, rgba(226, 196, 122, 0.18), transparent 36%);
  border-color: rgba(255, 255, 255, 0.12);
}

.comparison-card-highlight h3,
.comparison-card-highlight li,
.comparison-card-highlight p {
  color: var(--white);
}

.comparison-card ul {
  padding-left: 20px;
  margin: 20px 0 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.process-step {
  position: relative;
  padding: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
}

.process-step::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.92), transparent);
}

.process-index {
  display: inline-flex;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--accent);
}

.advantage-stage {
  margin-top: 120px;
  padding: 96px 0;
  border-radius: 16px;
  overflow: hidden;
}

.stage-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 27, 42, 0.14), rgba(13, 27, 42, 0.9)),
    linear-gradient(90deg, rgba(13, 27, 42, 0.88), rgba(13, 27, 42, 0.42)),
    url("./assets/chamber.jpeg") center/cover no-repeat;
}

.stage-content {
  position: relative;
  width: min(1120px, calc(100vw - 64px));
  margin: 0 auto;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.advantage-card {
  min-height: 220px;
  padding: 30px;
  border-radius: var(--radius);
  border-color: rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(27, 58, 75, 0.52), rgba(13, 27, 42, 0.68));
}

.focus-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
}

.focus-list {
  display: grid;
  gap: 18px;
}

.focus-list article {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 22px;
  padding-bottom: 110px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 0.55fr);
  gap: 0;
  border-radius: 32px;
  overflow: hidden;
}

.contact-portrait {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(203, 166, 112, 0.1), rgba(255, 255, 255, 0));
}

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

.contact-copy {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.9);
}

.contact-person {
  display: grid;
  gap: 6px;
  margin-top: 28px;
}

.contact-person strong {
  font-size: 1.18rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-links a {
  padding: 12px 18px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.contact-form {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-mid);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(13, 27, 42, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-dark);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
}

.form-field textarea {
  resize: vertical;
  min-height: 160px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.form-status {
  margin: 0;
  min-height: 1.5em;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.form-status.is-success {
  color: #21653d;
}

.form-status.is-error {
  color: #9d2d2d;
}

.button[disabled] {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.contact-meta {
  display: grid;
  gap: 18px;
}

.contact-meta article {
  padding: 28px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
}

.site-footer {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 48px calc((100vw - var(--content-width)) / 2) 56px;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
}

.footer-note {
  color: rgba(184, 191, 208, 0.8);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms 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);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 19;
  flex-direction: column;
  gap: 12px;
  padding: 110px 24px 40px;
  background: rgba(13, 27, 42, 0.97);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  padding: 16px 20px;
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 150ms ease, color 150ms ease;
}

.mobile-nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.mobile-nav .button-primary {
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-nav a:hover {
  color: var(--white);
}

.legal-section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 80px 0 120px;
}

.legal-section h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--navy-dark);
  margin-bottom: 48px;
  line-height: 1.08;
  max-width: none;
  text-wrap: balance;
}

.legal-section h2 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--navy-dark);
  margin: 48px 0 14px;
  line-height: 1.12;
}

.legal-section p,
.legal-section li {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-section p {
  margin: 0 0 16px;
}

.legal-section ul,
.legal-section ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 8px;
}

.legal-section a {
  color: var(--navy-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--navy-dark);
}

.legal-placeholder {
  background: rgba(201, 168, 76, 0.15);
  border: 1px dashed var(--gold-primary);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.9em;
  color: #7a5c1e;
}

@media (max-width: 1080px) {
  .site-header {
    padding: 16px 18px;
    border-radius: 12px;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .brand-wordmark {
    width: 190px;
  }

  .hero,
  .statement,
  .focus-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 8px;
    min-height: auto;
  }

  .hero-copy {
    margin-top: 96px;
  }

  .hero-panel {
    margin-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .process-timeline,
  .comparison,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 28px, 100%);
  }

  .site-header {
      margin-top: 10px;
      gap: 12px;
    }

  .header-cta {
    display: none;
  }

  .brand-mark {
    width: 34px;
  }

  .brand-wordmark {
    width: 154px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(2.4rem, 11vw, 3.1rem);
  }

  .hero {
    align-items: start;
    min-height: auto;
    padding-top: 4px;
    padding-bottom: 14px;
  }

  .hero-justice {
    inset: auto 8% 7% 8%;
    height: 38%;
    background-position: bottom center;
    opacity: 0.18;
  }

  .hero-copy {
    margin-top: 66px;
    padding: 28px 20px 20px;
    border-radius: 10px;
    background: rgba(13, 27, 42, 0.96);
  }

  h1 {
    max-width: none;
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-panel {
    margin-top: 0;
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .panel-card {
    background: rgba(13, 27, 42, 0.94);
  }

  .statement,
  .comparison-card,
  .process-step,
  .advantage-card,
  .contact-copy,
  .contact-meta article {
    padding: 24px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .advantage-stage {
    margin-top: 90px;
    padding: 74px 0;
  }

  .stage-content {
    width: min(100vw - 28px, 100%);
  }

  .approach-section,
  .process-section,
  .focus-section,
  .contact-section {
    padding-top: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
