:root {
  color-scheme: dark;
  --ink: #070908;
  --ink-soft: #0d1110;
  --petrol: #0c2625;
  --petrol-soft: #123533;
  --ivory: #f5efe4;
  --muted: #b7afa3;
  --dim: #82786b;
  --gold: #d5b06b;
  --wine: #56253b;
  --line: rgba(245, 239, 228, 0.16);
  --line-strong: rgba(245, 239, 228, 0.34);
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --gutter: 28px;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Neue Haas Grotesk Display", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(15, 40, 38, 0.38), transparent 420px),
    radial-gradient(circle at 70% 18%, rgba(86, 37, 59, 0.2), transparent 380px),
    var(--ink);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  mix-blend-mode: overlay;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 6px);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 11;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(7, 9, 8, 0.38), transparent 22%, transparent 78%, rgba(7, 9, 8, 0.38));
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.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;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--ivory);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-meter {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 140;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(245, 239, 228, 0.82), var(--petrol-soft));
  transform-origin: left center;
}

.cursor-field {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(213, 176, 107, 0.14);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) rotate(12deg);
  transition: opacity 260ms ease;
}

.cursor-field::before,
.cursor-field::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(245, 239, 228, 0.08);
}

.cursor-field::before {
  inset: 44px;
}

.cursor-field::after {
  inset: 126px;
  border-color: rgba(18, 53, 51, 0.28);
}

.content-grid {
  width: min(100% - (var(--gutter) * 2), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  min-height: var(--header);
  padding: 0 var(--gutter);
  color: var(--ivory);
  background: linear-gradient(180deg, rgba(7, 9, 8, 0.82), rgba(7, 9, 8, 0.2), transparent);
  transition: background 240ms ease, border-color 240ms ease;
}

.site-header.is-elevated {
  border-bottom: 1px solid var(--line);
  background: rgba(7, 9, 8, 0.78);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
}

.brand-lockup {
  display: inline-block;
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-lockup span {
  color: var(--gold);
  text-shadow: 0 0 28px rgba(213, 176, 107, 0.34);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(245, 239, 228, 0.13);
  background: rgba(7, 9, 8, 0.28);
  backdrop-filter: blur(12px);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: rgba(245, 239, 228, 0.76);
  font-size: 13px;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ivory);
  background: rgba(245, 239, 228, 0.08);
  outline: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 128px;
  padding: 0 18px;
  border: 1px solid rgba(213, 176, 107, 0.55);
  color: var(--ivory);
  font-size: 13px;
  background: rgba(213, 176, 107, 0.08);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(245, 239, 228, 0.8);
  background: rgba(213, 176, 107, 0.16);
  transform: translateY(-1px);
  outline: 0;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade,
.hero-lines {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(0.94) contrast(1.05);
}

.hero-shade {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.92), rgba(7, 9, 8, 0.66) 34%, rgba(7, 9, 8, 0.18) 62%),
    linear-gradient(180deg, rgba(7, 9, 8, 0.3), rgba(7, 9, 8, 0.12) 42%, rgba(7, 9, 8, 0.88));
}

.hero-lines {
  z-index: -2;
  opacity: 0.34;
  background:
    linear-gradient(115deg, transparent 0 32%, rgba(213, 176, 107, 0.38) 32.08%, transparent 32.22%),
    linear-gradient(115deg, transparent 0 59%, rgba(245, 239, 228, 0.18) 59.08%, transparent 59.22%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 180px 0 132px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 640;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 0.94;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(245, 239, 228, 0.82);
  font-size: 19px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 154px;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  font-weight: 640;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.button-primary {
  color: #0b0d0c;
  border-color: rgba(213, 176, 107, 0.76);
  background: linear-gradient(135deg, #f2dcc0, #d4ad6a 56%, #8f6f38);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: rgba(245, 239, 228, 0.92);
}

.button-ghost {
  color: var(--ivory);
  background: rgba(245, 239, 228, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(245, 239, 228, 0.72);
  background: rgba(245, 239, 228, 0.1);
}

.button-minimal {
  min-width: 128px;
  color: rgba(245, 239, 228, 0.82);
  border-color: transparent;
  background: transparent;
}

.button-minimal:hover,
.button-minimal:focus-visible {
  color: var(--ivory);
  border-color: var(--line-strong);
}

.hero-footer {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform: translateX(-50%);
  border-top: 1px solid var(--line);
  background: rgba(7, 9, 8, 0.44);
  backdrop-filter: blur(16px);
}

.hero-footer p {
  min-height: 70px;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  color: rgba(245, 239, 228, 0.76);
  font-size: 13px;
  border-left: 1px solid var(--line);
}

.hero-footer p:first-child {
  border-left: 0;
}

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

.statement-section {
  background:
    linear-gradient(180deg, rgba(18, 53, 51, 0.32), transparent 50%),
    var(--ink);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 76px;
}

.section-title {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.02;
}

.statement-copy {
  color: rgba(245, 239, 228, 0.78);
  font-size: 18px;
}

.statement-copy p {
  margin: 0;
}

.statement-copy p + p {
  margin-top: 24px;
}

.event-index {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(86, 37, 59, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(7, 9, 8, 0), rgba(12, 38, 37, 0.28));
}

.section-kicker {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 52px;
}

.category-stage {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  min-height: 640px;
  border-top: 1px solid var(--line);
}

.category-media {
  position: sticky;
  top: 96px;
  height: 580px;
  align-self: start;
  overflow: hidden;
  background: #101312;
}

.category-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(7, 9, 8, 0.62));
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: opacity 260ms ease, transform 700ms var(--ease);
}

.category-media img.is-switching {
  opacity: 0;
  transform: scale(1.06);
}

.category-list {
  border-left: 1px solid var(--line);
}

.category-row {
  display: grid;
  grid-template-columns: 72px minmax(180px, 0.52fr) minmax(240px, 1fr);
  gap: 24px;
  width: 100%;
  min-height: 146px;
  padding: 32px 0 32px 38px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.category-row:hover,
.category-row:focus-visible,
.category-row.is-active {
  color: var(--ivory);
  background: rgba(245, 239, 228, 0.055);
  outline: 0;
}

.category-row span {
  color: var(--gold);
  font-size: 13px;
}

.category-row strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.04;
}

.category-row em {
  max-width: 420px;
  color: rgba(245, 239, 228, 0.68);
  font-size: 15px;
  font-style: normal;
}

.experience-section {
  background:
    linear-gradient(115deg, rgba(7, 9, 8, 0.6), rgba(18, 53, 51, 0.24)),
    var(--ink-soft);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: start;
}

.experience-lead {
  position: sticky;
  top: 124px;
}

.experience-lead p:not(.eyebrow) {
  max-width: 440px;
  margin: 28px 0 0;
  color: rgba(245, 239, 228, 0.72);
  font-size: 17px;
}

.process-lines {
  border-top: 1px solid var(--line);
}

.process-line {
  display: grid;
  grid-template-columns: 70px minmax(190px, 0.55fr) minmax(240px, 1fr);
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.process-line span {
  color: var(--gold);
  font-size: 13px;
}

.process-line h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
}

.process-line p {
  margin: 0;
  color: rgba(245, 239, 228, 0.66);
}

.atmosphere-section {
  padding-top: 0;
  overflow: clip;
  background: var(--ink);
}

.wide-media {
  position: relative;
  height: 640px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.wide-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 9, 8, 0.22), rgba(7, 9, 8, 0.78)),
    linear-gradient(90deg, rgba(7, 9, 8, 0.74), transparent 46%);
}

.wide-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  transform: translate3d(0, var(--media-shift, 0), 0);
  filter: saturate(0.98) contrast(1.04);
  will-change: transform;
}

.atmosphere-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  padding-top: 76px;
}

.production-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.production-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.modes-section {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(86, 37, 59, 0.15), transparent 42%),
    #090b0a;
}

.mode-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mode-panel {
  min-height: 320px;
  padding: 34px 30px;
  border-left: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(245, 239, 228, 0.035), transparent);
}

.mode-panel:first-child {
  border-left: 0;
}

.mode-panel span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.mode-panel h3 {
  max-width: 280px;
  margin: 84px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.02;
}

.mode-panel p {
  margin: 0;
  color: rgba(245, 239, 228, 0.67);
}

.gallery-section {
  overflow: hidden;
  background: linear-gradient(180deg, #090b0a, #0c1110);
}

.gallery-grid {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: minmax(260px, 360px) minmax(260px, 360px);
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 46%, rgba(7, 9, 8, 0.82));
}

.gallery-item figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: rgba(245, 239, 228, 0.82);
  font-size: 13px;
}

.contact-section {
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--ink);
  isolation: isolate;
}

.contact-media,
.contact-media img {
  position: absolute;
  inset: 0;
}

.contact-media {
  z-index: -3;
  opacity: 0.44;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(0.82);
  transform: scale(1.05);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(7, 9, 8, 0.7) 50%, rgba(7, 9, 8, 0.86)),
    linear-gradient(180deg, rgba(7, 9, 8, 0.2), rgba(7, 9, 8, 0.96));
}

.contact-content {
  padding: 96px 0;
}

.contact-title {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 0.98;
}

.contact-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(245, 239, 228, 0.76);
  font-size: 18px;
}

.contact-address {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  margin-top: 42px;
  color: rgba(245, 239, 228, 0.7);
  font-style: normal;
}

.contact-address a {
  color: var(--ivory);
  border-bottom: 1px solid rgba(213, 176, 107, 0.54);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #060707;
}

.footer-grid {
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(240px, 1.15fr) auto;
  gap: 24px;
  align-items: center;
  color: rgba(245, 239, 228, 0.64);
  font-size: 13px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a:last-child {
  justify-self: end;
  color: var(--ivory);
  border-bottom: 1px solid rgba(213, 176, 107, 0.42);
}

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

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

@media (max-width: 980px) {
  :root {
    --gutter: 22px;
    --header: 68px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-column,
  .section-kicker,
  .experience-layout,
  .atmosphere-copy {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-title {
    font-size: 40px;
  }

  .category-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .category-media {
    position: relative;
    top: 0;
    height: 420px;
  }

  .category-list {
    border-left: 0;
  }

  .category-row {
    grid-template-columns: 52px minmax(160px, 0.6fr) minmax(220px, 1fr);
    padding-left: 0;
  }

  .experience-lead {
    position: relative;
    top: 0;
  }

  .process-line {
    grid-template-columns: 54px 1fr;
  }

  .process-line p {
    grid-column: 2;
  }

  .wide-media {
    height: 480px;
  }

  .mode-strip {
    grid-template-columns: 1fr;
  }

  .mode-panel {
    min-height: 230px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .mode-panel:first-child {
    border-top: 0;
  }

  .mode-panel h3 {
    margin-top: 52px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .gallery-item-large {
    grid-row: auto;
  }

  .contact-title {
    font-size: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .footer-grid a:last-child {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 15px;
  }

  body::after,
  .cursor-field {
    display: none;
  }

  .site-header {
    min-height: 64px;
    padding: 0 var(--gutter);
  }

  .brand-lockup {
    font-size: 12px;
  }

  .header-cta {
    min-width: 110px;
    min-height: 38px;
    padding: 0 12px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    padding: 132px 0 150px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(7, 9, 8, 0.55), rgba(7, 9, 8, 0.34) 32%, rgba(7, 9, 8, 0.95)),
      linear-gradient(90deg, rgba(7, 9, 8, 0.86), rgba(7, 9, 8, 0.32));
  }

  .hero h1 {
    font-size: 43px;
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-footer {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-footer p {
    min-height: 48px;
    padding: 0 14px;
    font-size: 12px;
  }

  .section {
    padding: 82px 0;
  }

  .section-title {
    font-size: 34px;
  }

  .statement-copy {
    font-size: 16px;
  }

  .category-media {
    height: 330px;
  }

  .category-row {
    grid-template-columns: 44px 1fr;
    gap: 10px 18px;
    min-height: 0;
    padding: 24px 0;
  }

  .category-row em {
    grid-column: 2;
  }

  .category-row strong {
    font-size: 25px;
  }

  .process-line {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .process-line h3 {
    font-size: 24px;
  }

  .wide-media {
    height: 360px;
  }

  .atmosphere-copy {
    padding-top: 58px;
  }

  .mode-panel {
    padding: 28px 0;
    background: transparent;
  }

  .mode-panel h3 {
    margin-top: 42px;
    font-size: 30px;
  }

  .gallery-grid {
    width: min(100% - 24px, 1380px);
    gap: 12px;
  }

  .gallery-item {
    min-height: 310px;
  }

  .contact-section {
    min-height: 660px;
  }

  .contact-title {
    font-size: 38px;
    line-height: 1.02;
  }

  .contact-copy {
    font-size: 16px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .wide-media img {
    transform: none;
  }
}
