:root {
  --bg: #ffffff;
  --bg-soft: #f8f4ea;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: rgba(248, 244, 234, 0.94);
  --surface-border: rgba(212, 175, 55, 0.18);
  --surface-border-strong: rgba(212, 175, 55, 0.34);
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.72);
  --muted-soft: rgba(17, 17, 17, 0.54);
  --gold: #d4af37;
  --gold-soft: rgba(212, 175, 55, 0.18);
  --shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
  --radius: 24px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fcfaf5 58%, #ffffff 100%);
  color: var(--text);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(20px);
  transition:
    background-color 220ms ease,
    backdrop-filter 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
  border-bottom: 1px solid rgba(212, 175, 55, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --muted-soft: rgba(255, 255, 255, 0.56);
  color: var(--text);
}

.site-header.is-scrolled,
.site-header-solid {
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(20px);
  border-color: rgba(212, 175, 55, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.submission-banner {
  margin-top: var(--header-height);
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.08)),
    #f8f4ea;
  border-bottom: 1px solid rgba(212, 175, 55, 0.24);
}

.submission-banner-shell {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  color: #111111;
  font-size: 0.95rem;
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: clamp(145px, 15vw, 205px);
  height: auto;
  object-fit: contain;
}

.brand-logo-footer {
  width: clamp(140px, 14vw, 190px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-cta {
  min-height: 46px;
  padding: 0 18px;
  margin-left: 8px;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  transition: color 200ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

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

.nav-toggle {
  display: none;
  border: 0;
  padding: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 220ms ease, opacity 220ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
  --muted-soft: rgba(255, 255, 255, 0.6);
  color: var(--text);
}

.page-hero,
.bottom-video-region,
.modal-dialog {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --muted-soft: rgba(255, 255, 255, 0.6);
}

.page-hero,
.modal-dialog,
.site-footer-video {
  color: var(--text);
}

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

.hero-video-element,
.hero-image-element,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.78) 0%, rgba(12, 12, 12, 0.48) 46%, rgba(12, 12, 12, 0.6) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.58) 100%);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(212, 175, 55, 0.18), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 28%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 88px;
}

.hero-content-left {
  max-width: 760px;
}

.eyebrow,
.section-kicker,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 300;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.feature-copy h2,
.editorial-panel h2,
.cta-shell h2,
.narrative-copy h2,
.contact-copy h2,
.service-card h2 {
  margin: 18px 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.4vw, 5.2rem);
  max-width: 9ch;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  max-width: 12ch;
}

.lead,
.section-heading p,
.feature-copy p,
.editorial-panel p,
.cta-shell p,
.narrative-copy p,
.contact-copy p,
.service-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.75;
}

.hero .lead {
  max-width: 640px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 300;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--gold);
  color: #111111;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0), 0 12px 30px rgba(212, 175, 55, 0.24);
}

.button-primary:hover {
  box-shadow:
    0 0 24px rgba(212, 175, 55, 0.45),
    0 18px 34px rgba(212, 175, 55, 0.26);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  border-color: rgba(212, 175, 55, 0.46);
  background: rgba(255, 255, 255, 0.14);
}

.section {
  position: relative;
  padding: 112px 0;
}

.page-home .feature-band {
  padding-top: 72px;
}

.page-home .editorial {
  padding-top: 72px;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.feature-copy h2,
.editorial-panel h2,
.cta-shell h2,
.narrative-copy h2,
.contact-copy h2,
.service-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.bento-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.bento-card,
.service-card,
.narrative-card,
.editorial-panel,
.editorial-quote,
.cta-shell,
.contact-form,
.contact-copy {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--surface-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 234, 0.96)),
    #ffffff;
  box-shadow: var(--shadow);
}

.bento-card {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  grid-column: span 4;
}

.bento-card-wide {
  grid-column: span 8;
  min-height: 400px;
  padding: 0;
  justify-content: stretch;
  color: #ffffff;
  --muted: rgba(255, 255, 255, 0.86);
}

.bento-card-wide .card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 100%;
  padding: 30px;
  max-width: 52%;
}

.bento-card-image-only {
  background: #ffffff;
}

.bento-card-wide-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.card-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.bento-stat {
  grid-column: span 6;
  min-height: 240px;
}

.bento-card h3,
.narrative-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.28;
}

.bento-card p,
.narrative-card p,
.editorial-quote span,
.footer-copy,
.form-note,
.contact-points strong,
.contact-points .card-label {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bento-stat strong {
  font-size: 1.7rem;
  font-weight: 300;
}

.footer-copy {
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 8px;
  color: var(--text);
  font-weight: 300;
}

.text-link::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.feature-band {
  padding-top: 60px;
}

.feature-shell,
.narrative-shell,
.contact-shell,
.editorial-shell {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: stretch;
}

.feature-copy,
.narrative-copy,
.contact-copy {
  grid-column: span 6;
  display: grid;
  align-content: center;
  gap: 18px;
}

.feature-visual,
.narrative-card,
.contact-form {
  grid-column: span 6;
}

.feature-image-shell {
  position: relative;
  height: 100%;
  min-height: 520px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.14);
  box-shadow: var(--shadow);
}

.feature-image-shell::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 140px;
  height: 140px;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.16), rgba(212, 175, 55, 0));
  backdrop-filter: blur(10px);
}

.feature-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.48);
}

.editorial-shell {
  grid-template-columns: 1.2fr 0.8fr;
}

.editorial-panel,
.editorial-quote,
.narrative-card,
.cta-shell,
.contact-form,
.contact-copy,
.service-card {
  padding: 32px;
}

.narrative-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.narrative-card-image-shell {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.14);
  min-height: 240px;
}

.narrative-card-image-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-quote {
  display: grid;
  align-content: center;
  gap: 18px;
}

.editorial-quote p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
}

.cta-panel {
  padding-top: 36px;
  padding-bottom: 112px;
}

.bottom-video-region {
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.bottom-video-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0d0d0d;
}

.bottom-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  min-height: 100%;
  height: 56.25vw;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: saturate(0.9) brightness(0.42);
  opacity: 0.34;
}

.bottom-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.9) 0%, rgba(11, 11, 11, 0.76) 28%, rgba(11, 11, 11, 0.92) 100%),
    radial-gradient(circle at top, rgba(212, 175, 55, 0.09), transparent 42%);
}

.bottom-video-region > .section,
.site-footer-video {
  position: relative;
  z-index: 1;
}

.cta-shell {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.cta-shell-video {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.24);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  --muted: rgba(255, 255, 255, 0.82);
}

.cta-shell-media {
  position: absolute;
  inset: 0;
}

.cta-shell-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  min-height: 100%;
  height: 56.25vw;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: saturate(0.92) brightness(0.52);
  opacity: 0.78;
}

.cta-shell-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.46) 0%, rgba(10, 10, 10, 0.58) 100%),
    radial-gradient(circle at top, rgba(212, 175, 55, 0.18), transparent 45%);
}

.cta-shell-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.site-footer {
  padding: 30px 0 60px;
  background: #0a0a0a;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.74);
  --muted-soft: rgba(255, 255, 255, 0.56);
  color: var(--text);
}

.site-footer-video {
  background: transparent;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  color: var(--muted);
}

.footer-links a {
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  overflow: clip;
}

.page-hero-short {
  min-height: 60svh;
}

.narrative-copy p + p {
  margin-top: -6px;
}

.contact-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.contact-points > div {
  border-radius: 20px;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.96);
  padding: 20px;
  display: grid;
  gap: 8px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(10px);
}

.modal-dialog {
  position: relative;
  width: min(760px, calc(100vw - 28px));
  max-height: min(88svh, 900px);
  overflow: auto;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.14);
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(16, 16, 16, 0.98)),
    rgba(20, 20, 20, 0.98);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  padding: 32px;
}

.modal-copy {
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
  padding-right: 40px;
}

.modal-copy h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.modal-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

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

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

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.contact-form:not(.modal-form) input,
.contact-form:not(.modal-form) select,
.contact-form:not(.modal-form) textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.98);
  color: #111111;
  padding: 15px 16px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-form:not(.modal-form) input:focus,
.contact-form:not(.modal-form) select:focus,
.contact-form:not(.modal-form) textarea:focus {
  border-color: rgba(212, 175, 55, 0.72);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
  background: #ffffff;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  padding: 15px 16px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: rgba(212, 175, 55, 0.72);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.form-note.is-success {
  color: #f1d98c;
}

.service-card {
  grid-column: span 4;
  display: grid;
  gap: 16px;
  min-height: 100%;
}

.feature-shell-reverse .feature-copy {
  order: 2;
}

.feature-shell-reverse .feature-visual {
  order: 1;
}

.compact {
  gap: 10px;
}

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

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

.reveal-delay-3 {
  transition-delay: 320ms;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

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

  .reveal,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3 {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .site-header,
  .site-nav a::after,
  .nav-toggle span {
    transition: none;
  }

  .hero-video-element {
    display: none;
  }

  .bottom-video-iframe {
    display: none;
  }
}

@media (max-width: 1024px) {
  .bento-card,
  .service-card {
    grid-column: span 6;
  }

  .bento-card-wide {
    grid-column: 1 / -1;
  }

  .bento-card-wide .card-copy {
    max-width: 70%;
  }

  .feature-copy,
  .feature-visual,
  .narrative-copy,
  .narrative-card,
  .contact-copy,
  .contact-form {
    grid-column: 1 / -1;
  }

  .editorial-shell {
    grid-template-columns: 1fr;
  }

  .feature-shell-reverse .feature-copy,
  .feature-shell-reverse .feature-visual {
    order: initial;
  }
}

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

  .nav-shell {
    gap: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
      rgba(10, 10, 10, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  }

  .brand-logo {
    width: min(175px, 48vw);
  }

  .brand-logo-footer {
    width: min(170px, 54vw);
  }

  .submission-banner-shell {
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    width: min(100%, 680px);
    margin: 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(212, 175, 55, 0.16);
    background:
      linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(10, 10, 10, 0.98)),
      rgba(12, 12, 12, 0.96);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .site-nav::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 4px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.54), transparent);
  }

  .site-nav a {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.86);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.22);
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    width: 100%;
    margin-left: 0;
    min-height: 56px;
  }

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

  .nav-open .nav-toggle span:first-child {
    transform: translateY(3.8px) rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    transform: translateY(-3.8px) rotate(-45deg);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content,
  .page-hero-content {
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .page-hero h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .hero .lead,
  .page-hero .lead {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section {
    padding: 84px 0;
  }

  .bento-grid,
  .service-grid,
  .contact-points,
  .modal-form-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .service-card {
    grid-column: 1 / -1;
  }

  .bento-card-wide .card-copy {
    max-width: 100%;
  }

  .feature-image-shell {
    min-height: 380px;
  }

  .editorial-quote p {
    font-size: clamp(1.55rem, 7vw, 2.2rem);
  }

  .modal-dialog {
    width: min(100vw - 20px, 760px);
    padding: 24px 18px;
    border-radius: 24px;
  }

  .modal-copy {
    padding-right: 28px;
  }

  .footer-shell {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-nav {
    top: calc(100% + 12px);
    padding: 16px;
    border-radius: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .bento-card,
  .service-card,
  .editorial-panel,
  .editorial-quote,
  .narrative-card,
  .cta-shell,
  .contact-form,
  .contact-copy {
    padding: 24px;
  }

  .feature-image-shell {
    min-height: 300px;
    border-radius: 26px;
  }

  .feature-image-shell::after {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    inset: auto 14px 14px auto;
  }

  .narrative-card-image-shell {
    min-height: 190px;
  }

  .contact-points > div {
    padding: 16px;
  }

  .modal-copy h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }
}
