:root {
  --charcoal: #0f0f0c;
  --ink: #202119;
  --olive: #243020;
  --deep-olive: #151d13;
  --bone: #eee7da;
  --ivory: #f8f2e8;
  --paper: #d8c9ae;
  --brass: #9b7b45;
  --clay: #8e563d;
  --stone: #b7ad9b;
  --muted: rgba(32, 33, 25, 0.68);
  --muted-light: rgba(248, 242, 232, 0.72);
  --line-dark: rgba(248, 242, 232, 0.18);
  --line-light: rgba(32, 33, 25, 0.15);
  --max: 1180px;
  --narrow: 840px;
  --ease: cubic-bezier(0.22, 0.9, 0.25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: "IBM Plex Sans", "Aptos", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

body::selection {
  color: var(--ivory);
  background: var(--olive);
}

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
h4,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
.serif {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 7.25rem;
  line-height: 0.9;
}

h2 {
  margin-bottom: 24px;
  font-size: 5.25rem;
  line-height: 0.95;
}

h3 {
  margin-bottom: 14px;
  font-size: 2.75rem;
  line-height: 1;
}

h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

p {
  color: var(--muted);
}

address {
  font-style: normal;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--charcoal);
  background: var(--paper);
  transform: translateY(-140%);
  transition: transform 160ms var(--ease);
}

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

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(var(--max), calc(100% - 44px));
  min-height: 62px;
  padding: 0 18px;
  color: var(--ivory);
  background: rgba(15, 15, 12, 0.42);
  border: 1px solid rgba(248, 242, 232, 0.2);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

.site-header.on-light {
  color: var(--ink);
  background: rgba(248, 242, 232, 0.84);
  border-color: rgba(32, 33, 25, 0.14);
}

.brand,
.site-nav,
.header-actions,
.eyebrow,
.kicker,
.meta,
.chapter-rail,
.button,
.form-label,
.footer-heading,
.legal-list dt,
.network-index span,
.product-step span,
.status-pill {
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  letter-spacing: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  font-weight: 600;
}

.brand-mark {
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 46%, currentColor 47% 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, currentColor 47% 53%, transparent 54%);
  opacity: 0.82;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 28px;
  color: currentColor;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.74;
}

.site-nav a,
.header-actions a,
.footer-link,
.text-link {
  transition: color 160ms var(--ease), opacity 160ms var(--ease);
}

.site-nav a:hover,
.header-actions a:hover,
.footer-link:hover,
.text-link:hover {
  color: var(--brass);
  opacity: 1;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.header-actions a:first-child {
  opacity: 0.76;
}

.header-actions .request-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid currentColor;
  opacity: 1;
}

.nav-toggle {
  justify-self: end;
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

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

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

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

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  padding: 108px 24px 28px;
  color: var(--ivory);
  background: rgba(15, 15, 12, 0.96);
}

.nav-open .mobile-panel {
  display: grid;
  align-content: space-between;
}

.mobile-panel nav {
  display: grid;
  gap: 22px;
}

.mobile-panel nav a {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 3.4rem;
  line-height: 0.98;
}

.mobile-actions {
  display: grid;
  gap: 12px;
}

.chapter-rail {
  position: fixed;
  left: 24px;
  top: 50%;
  z-index: 35;
  display: grid;
  gap: 12px;
  color: rgba(248, 242, 232, 0.36);
  font-size: 10px;
  transform: translateY(-50%);
}

.chapter-rail span {
  width: 22px;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.chapter-rail span.is-active {
  color: var(--paper);
  transform: translateX(5px);
}

.eyebrow,
.kicker,
.meta {
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
}

.eyebrow.light {
  color: var(--paper);
}

.section {
  padding: 128px max(24px, calc((100vw - var(--max)) / 2));
}

.section.tight {
  padding-top: 96px;
  padding-bottom: 96px;
}

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

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

.section.bone {
  background: var(--bone);
}

.chapter {
  position: relative;
  scroll-margin-top: 110px;
}

.film-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: var(--charcoal);
}

.film-hero {
  min-height: 112svh;
}

.page-hero {
  min-height: 76svh;
}

.hero-photo,
.page-hero-photo {
  position: absolute;
  inset: -5% 0;
  width: 100%;
  height: 110%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0) scale(1.03);
  will-change: transform;
}

.hero-photo {
  object-position: 57% center;
}

.page-hero-photo {
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 12, 0.84) 0%, rgba(15, 15, 12, 0.56) 42%, rgba(15, 15, 12, 0.16) 78%),
    linear-gradient(0deg, rgba(15, 15, 12, 0.44), rgba(15, 15, 12, 0.14));
}

.film-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
  background-image: repeating-radial-gradient(circle at 30% 30%, rgba(248, 242, 232, 0.18) 0 1px, transparent 1px 4px);
  mix-blend-mode: soft-light;
}

.hero-script,
.page-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(var(--max), calc(100% - 48px));
  min-height: inherit;
  padding: 180px 0 110px;
  margin: 0 auto;
}

.hero-script p:not(.eyebrow),
.page-hero-inner p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 28px;
  margin-bottom: 0;
  color: var(--muted-light);
  font-size: 1.35rem;
}

.word-shell {
  position: relative;
  display: inline-block;
  min-width: 0;
  color: var(--ivory);
}

.word-shell.dark-word {
  color: var(--olive);
}

.hero-word {
  display: inline-block;
  transition: opacity 480ms var(--ease), transform 480ms var(--ease);
}

.hero-word.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 160ms var(--ease), background 160ms var(--ease), border-color 160ms var(--ease), opacity 160ms var(--ease);
}

.button:hover {
  color: var(--ivory);
  background: var(--ink);
}

.button.light {
  color: var(--ivory);
  border-color: rgba(248, 242, 232, 0.42);
}

.button.light:hover {
  color: var(--charcoal);
  background: var(--paper);
  border-color: var(--paper);
}

.button.filled {
  color: var(--ivory);
  background: var(--ink);
}

.button.filled:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.58;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 76px;
  align-items: center;
}

.split.start {
  align-items: start;
}

.narrow-copy {
  max-width: var(--narrow);
}

.narrow-copy p {
  font-size: 1.2rem;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.35rem;
}

.dark .lead,
.olive .lead,
.dark p,
.olive p {
  color: var(--muted-light);
}

.recognition {
  min-height: 112svh;
}

.sub-hero {
  background:
    linear-gradient(180deg, rgba(248, 242, 232, 0.98), rgba(238, 231, 218, 0.56)),
    var(--ivory);
}

.recognition-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.image-composition {
  position: relative;
  min-height: 820px;
}

.image-frame {
  position: absolute;
  overflow: hidden;
  margin: 0;
  background: var(--charcoal);
}

.image-frame img,
.media-block img,
.story-card img,
.large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame img,
.media-block img,
.large-image img {
  transform: translate3d(0, calc(var(--parallax, 0) * 1px), 0) scale(1.06);
  will-change: transform;
}

.image-frame.tall {
  top: 0;
  right: 22%;
  width: 58%;
  height: 620px;
}

.image-frame.wide {
  right: 0;
  bottom: 0;
  width: 76%;
  height: 430px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 660px;
  margin-top: 34px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.proof-strip p {
  min-height: 94px;
  margin: 0;
  padding: 18px;
  color: rgba(32, 33, 25, 0.72);
  background: rgba(248, 242, 232, 0.68);
  font-size: 0.98rem;
  line-height: 1.35;
}

.concierge {
  background: var(--ivory);
}

.concierge-intro {
  max-width: 760px;
  margin: 0 auto 76px;
  text-align: center;
}

.concierge-intro .lead {
  margin: 0 auto;
  color: rgba(32, 33, 25, 0.84);
  font-style: italic;
}

.concierge-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
  gap: 34px;
  align-items: end;
  max-width: 1060px;
  margin: 0 auto;
}

.concierge-column {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 32px;
}

.concierge-column + .concierge-column {
  border-left: 1px solid var(--line-light);
}

.concierge-column.muted {
  opacity: 0.58;
}

.concierge-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--brass);
  font-family: "IBM Plex Mono", "SFMono-Regular", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.search-mark,
.shield-mark {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
  color: currentColor;
  flex: 0 0 auto;
}

.search-mark::before {
  position: absolute;
  inset: 1px 5px 5px 1px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
}

.search-mark::after {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center;
}

.shield-mark::before {
  position: absolute;
  inset: 1px 3px 2px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 8px 8px 10px 10px;
  clip-path: polygon(50% 0, 100% 20%, 86% 76%, 50% 100%, 14% 76%, 0 20%);
}

.concierge-column article {
  min-height: 72px;
  padding: 24px;
  background: rgba(238, 231, 218, 0.48);
  border: 1px solid rgba(32, 33, 25, 0.08);
}

.concierge-column article.primary {
  color: var(--ivory);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.concierge-column article p {
  margin: 0;
  color: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.cinema-strip {
  display: flex;
  gap: 18px;
  width: 100%;
  overflow-x: auto;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2)) 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.story-card {
  position: relative;
  flex: 0 0 min(520px, 82vw);
  height: 680px;
  overflow: hidden;
  background: var(--deep-olive);
  scroll-snap-align: center;
}

.story-card img {
  position: absolute;
  inset: 0;
  filter: saturate(0.82) contrast(1.03);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.story-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(15, 15, 12, 0.86), transparent 62%),
    linear-gradient(90deg, rgba(15, 15, 12, 0.2), transparent);
}

.story-card:hover img {
  filter: saturate(0.92) contrast(1.04);
  transform: scale(1.035);
}

.story-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
}

.story-card .kicker,
.product-card .kicker,
.network-panel .kicker {
  display: block;
  margin-bottom: 18px;
}

.story-card h3 {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--ivory);
  font-size: 3rem;
}

.network-strip .story-card h3 {
  font-size: 3.45rem;
  line-height: 1.02;
}

.story-card p {
  max-width: 430px;
  margin: 14px 0 0;
  color: rgba(248, 242, 232, 0.74);
  font-size: 1.03rem;
  line-height: 1.45;
}

.network-strip .story-copy {
  bottom: 30px;
}

.before-after,
.product-grid,
.network-grid,
.journal-grid,
.signal-grid,
.footer-grid,
.legal-grid,
.contact-grid {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.before-after article,
.product-card,
.network-panel,
.journal-item,
.signal,
.legal-panel,
.contact-panel {
  background: var(--ivory);
}

.before-after article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 30px;
}

.before-after p {
  margin-bottom: 0;
  color: rgba(32, 33, 25, 0.76);
  font-size: 1.45rem;
  line-height: 1.25;
}

.product-grid,
.network-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  position: relative;
  min-height: 640px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.product-card.discover {
  background:
    linear-gradient(rgba(238, 231, 218, 0.48), rgba(238, 231, 218, 0.95)),
    url("./assets/charta-workshop-fabric.jpg") center / cover;
}

.product-card.private {
  color: var(--ivory);
  background:
    linear-gradient(rgba(15, 15, 12, 0.08), rgba(15, 15, 12, 0.86)),
    url("./assets/charta-private-physician.jpg") center / cover;
}

.product-card.private p {
  color: var(--muted-light);
}

.product-card h3 {
  max-width: 540px;
}

.product-card p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(32, 33, 25, 0.74);
  font-size: 1.08rem;
}

.product-points {
  display: grid;
  gap: 10px;
  max-width: 470px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(32, 33, 25, 0.74);
  list-style: none;
}

.product-points li {
  position: relative;
  padding-left: 20px;
}

.product-points li::before {
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 1px;
  content: "";
  background: currentColor;
}

.product-card.private .product-points {
  color: var(--muted-light);
}

.product-step {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-top: 1px solid var(--line-light);
}

.product-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.product-step span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-step h3 {
  margin-bottom: 8px;
  font-size: 2rem;
}

.product-step p {
  max-width: 620px;
  margin-bottom: 0;
}

.network-panel,
.journal-item,
.signal,
.legal-panel,
.contact-panel {
  padding: 30px;
}

.network-panel {
  min-height: 320px;
}

.network-panel h3,
.journal-item h3,
.signal h3 {
  font-size: 2.15rem;
}

.network-panel p,
.journal-item p,
.signal p {
  margin-bottom: 0;
}

.network-index {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.network-index a {
  display: grid;
  grid-template-columns: 130px 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 92px;
  padding: 20px 26px;
  background: var(--ivory);
  transition: background 160ms var(--ease), color 160ms var(--ease);
}

.network-index a:hover {
  color: var(--ivory);
  background: var(--olive);
}

.network-index span {
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.network-index strong {
  font-family: "Libre Caslon Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.media-block,
.large-image {
  overflow: hidden;
  background: var(--charcoal);
}

.media-block {
  height: 720px;
}

.large-image {
  height: 540px;
}

.journal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-item {
  min-height: 360px;
}

.journal-item time {
  display: block;
  margin-bottom: 28px;
  color: var(--brass);
}

.signal-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal {
  min-height: 240px;
}

.request-form {
  display: grid;
  gap: 22px;
  padding: 34px;
  background: var(--bone);
  border: 1px solid var(--line-light);
}

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

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

.form-label {
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(248, 242, 232, 0.72);
  border: 1px solid var(--line-light);
  border-radius: 0;
}

.request-form textarea {
  min-height: 142px;
  resize: vertical;
}

.form-note,
.form-status {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.form-status {
  display: none;
  padding: 14px;
  color: var(--ink);
  background: rgba(216, 201, 174, 0.44);
  border: 1px solid rgba(155, 123, 69, 0.28);
}

.form-status.is-visible {
  display: block;
}

.legal-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-panel h2,
.contact-panel h2 {
  font-size: 2.6rem;
}

.legal-list {
  display: grid;
  gap: 24px;
  margin: 0;
}

.legal-list dt {
  color: var(--brass);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.legal-list dd {
  margin: 6px 0 0;
  color: var(--muted);
}

.status-table {
  display: grid;
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.status-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  background: var(--ivory);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--deep-olive);
  background: rgba(36, 48, 32, 0.12);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.enterprise {
  background:
    linear-gradient(180deg, rgba(238, 231, 218, 0.68), rgba(248, 242, 232, 1)),
    var(--ivory);
}

.enterprise-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 76px;
  align-items: end;
  padding: 56px;
  background: var(--bone);
  border: 1px solid var(--line-light);
}

.enterprise-panel h2 {
  margin-bottom: 0;
}

.enterprise-panel .lead {
  margin-bottom: 0;
}

.site-footer {
  padding: 72px max(24px, calc((100vw - var(--max)) / 2)) 36px;
  color: var(--ivory);
  background: var(--charcoal);
}

.footer-grid {
  grid-template-columns: minmax(260px, 1.4fr) repeat(5, minmax(92px, 1fr));
  background: transparent;
  border: 0;
  gap: 36px;
}

.footer-brand p {
  max-width: 320px;
  color: var(--muted-light);
}

.footer-heading {
  margin-bottom: 16px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link {
  color: rgba(248, 242, 232, 0.74);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(248, 242, 232, 0.52);
  font-size: 0.9rem;
}

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

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

.text-link {
  color: var(--brass);
}

@media (max-width: 1120px) {
  h1 {
    font-size: 5.8rem;
  }

  h2 {
    font-size: 4.4rem;
  }

  .site-nav,
  .header-actions,
  .chapter-rail {
    display: none;
  }

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

  .nav-toggle {
    display: block;
  }

  .split,
  .concierge-board,
  .enterprise-panel,
  .product-grid,
  .network-grid,
  .journal-grid,
  .signal-grid,
  .legal-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .recognition-copy {
    position: static;
  }

  .image-composition {
    min-height: 760px;
  }

  .image-frame.tall {
    right: auto;
    left: 0;
    width: 70%;
  }

  .image-frame.wide {
    width: 80%;
  }

  .concierge-board {
    max-width: 760px;
  }

  .concierge-column {
    padding-left: 0;
  }

  .concierge-column + .concierge-column {
    padding-top: 34px;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  h3 {
    font-size: 2.2rem;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 56px;
    padding: 0 14px;
  }

  .mobile-panel nav a {
    font-size: 2.8rem;
  }

  .film-hero {
    min-height: 104svh;
  }

  .hero-photo {
    object-position: 60% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 15, 12, 0.84), rgba(15, 15, 12, 0.26)),
      linear-gradient(0deg, rgba(15, 15, 12, 0.52), rgba(15, 15, 12, 0.18));
  }

  .hero-script,
  .page-hero-inner {
    width: calc(100% - 36px);
    padding-top: 132px;
    padding-bottom: 80px;
  }

  .hero-script p:not(.eyebrow),
  .page-hero-inner p:not(.eyebrow),
  .lead,
  .narrow-copy p {
    font-size: 1.1rem;
  }

  .section,
  .section.tight {
    padding: 84px 18px;
  }

  .image-composition {
    min-height: 640px;
  }

  .image-frame.tall {
    width: 82%;
    height: 420px;
  }

  .image-frame.wide {
    width: 88%;
    height: 330px;
  }

  .cinema-strip {
    padding: 0 18px 18px;
  }

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

  .concierge-intro {
    margin-bottom: 48px;
    text-align: left;
  }

  .concierge-column article {
    padding: 20px;
  }

  .story-card {
    height: 560px;
  }

  .story-card h3 {
    font-size: 2.35rem;
  }

  .network-strip .story-card h3 {
    font-size: 2.65rem;
  }

  .before-after article,
  .product-step,
  .network-index a,
  .status-row,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .before-after p {
    font-size: 1.15rem;
  }

  .media-block {
    height: 520px;
  }

  .large-image {
    height: 420px;
  }

  .product-card {
    min-height: 520px;
    padding: 28px;
  }

  .enterprise-panel {
    padding: 28px;
  }

  .request-form {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .mobile-panel nav a {
    font-size: 2.4rem;
  }
}

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

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