@font-face {
  font-family: Raleway;
  src: url("/assets/fonts/raleway-var.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --signal-red: #df3131;
  --resonate-yellow: #f9ec00;
  --resonate-teal: #30c5da;
  --canvas: #080808;
  --canvas-soft: #111111;
  --surface: #181818;
  --paper: #f3f0e9;
  --paper-bright: #fffdf8;
  --ink: #f8f7f2;
  --ink-dark: #171717;
  --muted: #a7a7a7;
  --muted-dark: #5e5e5e;
  --line: #313131;
  --line-light: #d8d2c7;
  --display: Raleway, "Avenir Next", Avenir, "Century Gothic", sans-serif;
  --body: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  --max: 1180px;
  --copy: 720px;
  --radius: 4px;
  --shadow: 0 22px 64px rgb(0 0 0 / 0.28);
}

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

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--resonate-yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--ink-dark);
  background: var(--resonate-yellow);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.copy-width { max-width: var(--copy); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.9rem;
  color: var(--resonate-teal);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 1.6rem; height: 3px; background: var(--signal-red); }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
h1 { max-width: 14ch; font-size: clamp(2.9rem, 7vw, 6.5rem); }
h2 { max-width: 18ch; font-size: clamp(2.15rem, 4.8vw, 4.5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.05rem; letter-spacing: -0.015em; }
p { margin: 0 0 1rem; }
.lead { max-width: 62ch; color: #d7d7d2; font-size: clamp(1.08rem, 1.8vw, 1.32rem); }
.lede-dark { color: #444; }
.kicker-mark { color: var(--resonate-yellow); }
.accent { color: var(--signal-red); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
  background: rgb(8 8 8 / 0.94);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}
.brand-pulse {
  width: 1.7rem;
  height: 1.7rem;
  border: 3px solid var(--signal-red);
  border-radius: 50%;
  position: relative;
}
.brand-pulse::after {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 50%;
  background: var(--resonate-yellow);
}
.brand-name { font-family: var(--display); font-size: 0.98rem; font-weight: 850; letter-spacing: 0.13em; text-transform: uppercase; }
.nav-toggle {
  display: none;
  min-width: 44px;
  min-height: 44px;
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a {
  padding-block: 0.45rem;
  color: #d3d3cf;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-toggle:hover { border-color: var(--ink); }
.brand { transition: opacity 0.15s ease; }
.brand:hover { opacity: 0.82; }
.nav-links a[aria-current="page"] { border-bottom: 2px solid var(--signal-red); }
.nav-links .nav-cta {
  padding: 0.72rem 1rem;
  color: #fff;
  border: 1px solid var(--signal-red);
  background: var(--signal-red);
}

.hero {
  min-height: min(820px, calc(100svh - 76px));
  display: grid;
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.hero-copy .lead { margin-top: 1.5rem; }
.hero-actions, .section-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid var(--signal-red);
  border-radius: 2px;
  background: var(--signal-red);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); background: #c82222; border-color: #c82222; }
.button-secondary { border-color: var(--resonate-teal); background: transparent; color: var(--ink); }
.button-secondary:hover { background: var(--resonate-teal); border-color: var(--resonate-teal); color: var(--ink-dark); }
.button-light { border-color: var(--ink-dark); color: var(--ink-dark); background: transparent; }
.button-light:hover { color: #fff; background: var(--ink-dark); border-color: var(--ink-dark); }
.button-small { min-height: 40px; padding: 0.55rem 0.8rem; font-size: 0.86rem; }
.cta--engaged { box-shadow: 0 0 0 5px rgb(223 49 49 / 0.18); }

.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 72%;
  right: -8%;
  bottom: -9%;
  border: 2px solid var(--resonate-teal);
}
.hero-media img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.media-tag {
  position: absolute;
  right: -0.5rem;
  bottom: 1.2rem;
  max-width: 15rem;
  padding: 0.9rem 1rem;
  color: var(--ink-dark);
  background: var(--resonate-yellow);
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1.35;
}

.page-hero { padding: clamp(5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem); border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr); gap: clamp(2.5rem, 8vw, 7rem); align-items: end; }
.page-hero h1 { max-width: 12ch; font-size: clamp(3rem, 7vw, 6.2rem); }
.page-hero .lead { margin-top: 1.4rem; }
.page-aside { padding: 1.35rem; border-top: 4px solid var(--signal-red); background: var(--surface); }
.page-aside p:last-child { margin-bottom: 0; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3.2rem, 6vw, 5rem) 0; }
.section-light { color: var(--ink-dark); background: var(--paper); }
.section-white { color: var(--ink-dark); background: var(--paper-bright); }
.section-red { background: var(--signal-red); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head > p { max-width: 54ch; margin: 0; color: var(--muted); }
.section-light .section-head > p, .section-white .section-head > p { color: #555; }

.trust-strip { border-block: 1px solid var(--line); background: #0d0d0d; }
.trust-grid { min-height: 136px; display: grid; grid-template-columns: 0.75fr 1.25fr 1.25fr; align-items: center; gap: 2rem; }
.trust-stat strong { display: block; color: var(--signal-red); font-family: var(--display); font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 0.95; }
.trust-stat span { color: var(--muted); font-size: 0.84rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.trust-line { padding-left: 2rem; border-left: 1px solid var(--line); }
.trust-line p { margin: 0; color: #d7d7d3; }

.logo-wall { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.2rem; align-items: center; }
.logo-wall img { width: 100%; max-height: 56px; object-fit: contain; filter: grayscale(1); opacity: 0.76; }

.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.four-col { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.stack { display: grid; gap: 1rem; }

.media-frame { border: 1px solid var(--line); background: var(--canvas-soft); box-shadow: var(--shadow); }
.media-frame > img, .media-frame > video { width: 100%; }
.media-caption { padding: 1.1rem 1.2rem 1.2rem; }
.media-caption p { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.92rem; }

.quote-mark { color: var(--resonate-yellow); font-family: Georgia, serif; font-size: 5rem; line-height: 0.6; }
.testimonial-copy { display: flex; flex-direction: column; justify-content: center; }
.testimonial-copy blockquote { margin: 1.2rem 0; font-family: var(--display); font-size: clamp(1.45rem, 2.8vw, 2.4rem); font-weight: 730; letter-spacing: -0.025em; line-height: 1.25; }
.attribution { color: var(--resonate-teal); font-size: 0.9rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }

.beats { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.7rem; margin-top: 2.8rem; }
.beats::before { content: ""; position: absolute; top: 1.6rem; left: 9%; right: 9%; height: 2px; background: var(--resonate-teal); opacity: 0.55; }
.beat { position: relative; z-index: 1; text-align: center; }
.beat-node { width: 3.2rem; height: 3.2rem; margin: 0 auto 0.85rem; display: grid; place-items: center; border: 2px solid var(--signal-red); border-radius: 50%; color: #fff; background: var(--canvas); font-family: var(--display); font-size: 1.2rem; font-weight: 850; }
.beat:last-child .beat-node { color: var(--ink-dark); border-color: var(--resonate-yellow); background: var(--resonate-yellow); }
.beat strong { display: block; font-size: 0.83rem; }
.beat p { margin: 0.45rem auto 0; max-width: 19ch; color: var(--muted); font-size: 0.82rem; line-height: 1.45; }
.section-light .beat-node, .section-white .beat-node { color: #fff; background: var(--ink-dark); }
.section-light .beat p, .section-white .beat p { color: #5b5b5b; }

.fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line-light); }
.fit-column { padding: clamp(1.5rem, 4vw, 2.7rem); }
.fit-column + .fit-column { border-left: 1px solid var(--line-light); background: #ebe7df; }
.fit-column h3 { margin-bottom: 1.25rem; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 0.62rem 0 0.62rem 1.65rem; border-top: 1px solid rgb(0 0 0 / 0.1); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #087b86; font-weight: 900; }
.fit-column:last-child .check-list li::before { content: "—"; color: var(--muted-dark); }

.program-card, .utility-card, .placeholder-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.program-card { min-height: 230px; display: flex; flex-direction: column; position: relative; transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease; }
.program-card:hover, .program-card:focus-within { transform: translateY(-5px); border-color: var(--signal-red); background: #1d1d1d; }
.program-card .card-number { margin-bottom: 2.8rem; color: var(--signal-red); font-family: var(--display); font-size: 1.8rem; font-weight: 850; }
.program-card p { margin: 0.8rem 0 0; color: var(--muted); }
.program-card a { margin-top: auto; padding-top: 1.3rem; color: var(--resonate-teal); font-weight: 800; text-decoration: none; }
.program-card a::after { content: ""; position: absolute; inset: 0; }
.program-card > a { transition: transform 0.18s ease, color 0.18s ease; }
.program-card:hover > a { transform: translateX(4px); color: #6fdbeb; }

.format-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line-light); background: var(--paper-bright); }
.format-table th, .format-table td { padding: 1rem; border: 1px solid var(--line-light); text-align: left; vertical-align: top; }
.format-table thead th { color: #fff; background: var(--ink-dark); }
.format-table tbody th { width: 18%; color: #333; background: #ebe7df; }
.format-table td { color: #393939; }

.facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 0;
  background: #111;
  cursor: pointer;
}
.facade { cursor: pointer; }
.facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.25s ease; }
.facade:hover img, .facade:focus-visible img { transform: scale(1.025); }
.facade:hover .facade-play, .facade:focus-visible .facade-play { background: var(--signal-red); border-color: var(--signal-red); transform: scale(1.06); }
.facade::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgb(0 0 0 / 0.58)); }
.facade-play {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: rgb(223 49 49 / 0.92);
  font-size: 1.35rem;
  box-shadow: 0 12px 34px rgb(0 0 0 / 0.4);
}
.facade-label { position: absolute; z-index: 2; right: 1rem; bottom: 0.8rem; left: 1rem; color: #fff; font-size: 0.82rem; font-weight: 800; text-align: left; }
.facade iframe { width: 100%; height: 100%; border: 0; }
.facade-embed { width: 100%; aspect-ratio: 16 / 9; background: #000; }
.facade-embed iframe { display: block; width: 100%; height: 100%; border: 0; }

.video-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 1rem; align-items: start; }
.video-stack { display: grid; gap: 1rem; }
.video-card { border: 1px solid var(--line); background: var(--surface); }
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #000; }
.video-card .media-caption { border-top: 1px solid var(--line); }

.photo-bleed { width: 100%; max-height: 720px; object-fit: cover; object-position: center; }
.portrait-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.portrait-grid img { width: 100%; max-height: 680px; object-fit: cover; object-position: center top; }

.resource-index { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem; margin-top: 2rem; }
.resource-index a { padding: 0.8rem; border: 1px solid var(--line); color: #d6d6d1; font-size: 0.82rem; font-weight: 800; text-align: center; text-decoration: none; }
.resource-index a:hover { border-color: var(--resonate-teal); color: var(--resonate-teal); }

.asset-block { padding: clamp(1.5rem, 4vw, 2.8rem); border: 1px solid var(--line-light); background: var(--paper-bright); }
.asset-block + .asset-block { margin-top: 1rem; }
.asset-block-header { display: flex; justify-content: space-between; gap: 1.5rem; align-items: start; margin-bottom: 1.4rem; }
.asset-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: flex-end; }
.asset-copy { color: #2e2e2e; }
.asset-copy p:last-child, .asset-copy ul:last-child { margin-bottom: 0; }
.asset-copy ul { padding-left: 1.2rem; }
.asset-copy li { margin-bottom: 0.45rem; }
.subasset { margin-top: 1.8rem; padding-top: 1.6rem; border-top: 1px solid var(--line-light); }
.copy-status { min-height: 1.4rem; margin-top: 0.7rem; color: #087b86; font-size: 0.84rem; font-weight: 750; }
.headshot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.headshot-card { border: 1px solid var(--line-light); background: #ebe7df; }
.headshot-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center top; }
.headshot-card.portrait img { object-position: center 26%; }
.headshot-card .headshot-meta { padding: 1rem; }
.headshot-card p { margin: 0 0 0.8rem; color: #444; font-size: 0.88rem; }

.coming-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.placeholder-card { min-height: 280px; display: flex; flex-direction: column; }
.placeholder-card .coming-mark { width: 2.4rem; height: 2.4rem; margin-bottom: 3.6rem; display: grid; place-items: center; border: 2px solid var(--resonate-teal); border-radius: 50%; color: var(--resonate-yellow); }
.placeholder-card p { color: var(--muted); }
.placeholder-card .status { margin-top: auto; color: var(--resonate-teal); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }

.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 2.4rem; }
.flow-step { position: relative; min-height: 160px; padding: 1.25rem 1rem; border: 1px solid var(--line); background: var(--surface); }
.flow-step + .flow-step { border-left: 0; }
.flow-step::after { content: "→"; position: absolute; z-index: 2; right: -0.7rem; top: 1rem; color: var(--resonate-yellow); font-size: 1.5rem; }
.flow-step:last-child::after { display: none; }
.flow-step span { color: var(--signal-red); font-family: var(--display); font-weight: 850; }
.flow-step h3 { margin: 1.4rem 0 0.6rem; font-size: 1.12rem; }
.flow-step p { margin: 0; color: var(--muted); font-size: 0.85rem; }

.inquiry-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.form-shell { border: 1px solid var(--line-light); color: var(--ink-dark); background: var(--paper-bright); box-shadow: var(--shadow); }
.form-progress { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line-light); }
.form-progress span { padding: 0.7rem 0.25rem; border-right: 1px solid var(--line-light); color: #777; font-size: 0.7rem; font-weight: 800; text-align: center; text-transform: uppercase; }
.form-progress span:last-child { border-right: 0; }
.form-progress span.is-current { color: #fff; background: var(--signal-red); }
.form-step { margin: 0; padding: clamp(1.5rem, 4vw, 2.7rem); border: 0; }
.form-step[hidden] { display: none; }
.form-step legend { width: 100%; margin-bottom: 0.6rem; font-family: var(--display); font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; }
.field-note { margin: 0 0 1.4rem; color: #666; font-size: 0.9rem; }
.field { margin-top: 1rem; }
.field label, .field-label { display: block; margin-bottom: 0.38rem; color: #333; font-size: 0.86rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  border: 1px solid #aaa59d;
  border-radius: 0;
  color: var(--ink-dark);
  background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; margin-top: 1.2rem; }
.choice { position: relative; display: flex; align-items: center; gap: 0.65rem; padding: 0.85rem; border: 1px solid #aaa59d; cursor: pointer; }
.choice:has(input:checked) { border-color: var(--signal-red); box-shadow: inset 4px 0 var(--signal-red); }
.choice input { width: 1rem; height: 1rem; accent-color: var(--signal-red); }
.form-nav { display: flex; justify-content: space-between; gap: 0.8rem; margin-top: 1.6rem; }
.route-note { margin-top: 1rem; padding: 0.85rem; border-left: 4px solid var(--resonate-teal); color: #3d3d3d; background: #e7f7f9; font-size: 0.88rem; }
.form-result { display: none; padding: 2rem; }
.form-result.is-visible { display: block; }
.form-result h3 { margin-bottom: 0.7rem; }
.preview-note { padding: 0.8rem 1rem; border-bottom: 1px solid var(--line-light); color: #565656; background: #eeeae2; font-size: 0.8rem; }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 1.15rem 2.4rem 1.15rem 0; font-family: var(--display); font-weight: 800; cursor: pointer; list-style: none; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary { transition: color 0.15s ease; }
.faq-list summary:hover { color: var(--resonate-teal); }
.section-light .faq-list summary:hover, .section-white .faq-list summary:hover { color: #087b86; }
.faq-list summary::after { content: "+"; position: absolute; right: 0.25rem; top: 1rem; color: var(--resonate-teal); font-size: 1.35rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 70ch; padding-bottom: 1.1rem; color: var(--muted); }
.section-light .faq-list { border-color: var(--line-light); }
.section-light .faq-list details { border-color: var(--line-light); }
.section-light .faq-list details p { color: #555; }

.cta-band { padding: clamp(3rem, 8vw, 6rem) 0; background: var(--signal-red); }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { max-width: 17ch; color: #fff; }
.cta-band p { max-width: 44ch; margin: 0; color: #ffe7e7; }
.cta-band .button { border-color: #fff; color: var(--ink-dark); background: #fff; flex: none; }

.site-footer { padding: 3.5rem 0 2rem; border-top: 1px solid var(--line); background: #050505; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 3rem; }
.footer-grid h2 { font-size: 1.55rem; }
.footer-grid p { max-width: 38ch; margin-top: 0.8rem; color: var(--muted); }
.footer-links { display: grid; gap: 0.55rem; }
.footer-links a { color: #d6d6d1; font-size: 0.9rem; text-decoration: none; }
.footer-links a:hover { color: var(--resonate-teal); }
.footer-label { margin-bottom: 0.8rem; color: var(--resonate-yellow); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid var(--line); color: #858585; font-size: 0.78rem; }

.error-page { min-height: calc(100svh - 76px); display: grid; place-items: center; text-align: center; }
.error-code { color: var(--signal-red); font-family: var(--display); font-size: clamp(6rem, 20vw, 14rem); font-weight: 850; line-height: 0.8; }
.error-page h1 { max-width: none; margin-top: 1rem; font-size: clamp(2rem, 5vw, 4rem); }
.error-page p { max-width: 46ch; margin: 1rem auto 0; color: var(--muted); }

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

@media (max-width: 980px) {
  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    background: var(--canvas);
  }
  .nav-links.is-open { display: grid; }
  .nav-links a { padding: 0.8rem; }
  .nav-links a[aria-current="page"] { border-bottom: 0; border-left: 3px solid var(--signal-red); }
  .hero-grid, .page-hero-grid, .portrait-grid, .inquiry-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media { max-width: 760px; }
  .page-aside { max-width: 640px; }
  .four-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-wall { grid-template-columns: repeat(3, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .resource-index { grid-template-columns: repeat(3, 1fr); }
  .coming-grid { grid-template-columns: 1fr; }
  .placeholder-card { min-height: 220px; }
  .placeholder-card .coming-mark { margin-bottom: 2rem; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .flow-step + .flow-step { border-left: 1px solid var(--line); }
  .flow-step::after { display: none; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 1.25rem), var(--max)); }
  .header-inner { min-height: 68px; }
  .nav-links { top: 68px; }
  .hero, .page-hero { padding-top: 3.6rem; }
  h1, .page-hero h1 { font-size: clamp(2.6rem, 15vw, 4.7rem); }
  .section-head, .cta-band-inner { align-items: start; flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 1.5rem; }
  .trust-line { padding: 1rem 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .two-col, .three-col, .fit-grid, .headshot-grid { grid-template-columns: 1fr; }
  .fit-column + .fit-column { border-top: 1px solid var(--line-light); border-left: 0; }
  .beats { grid-template-columns: 1fr; gap: 0; }
  .beats::before { top: 1.6rem; bottom: 1.6rem; left: 1.6rem; width: 2px; height: auto; }
  .beat { min-height: 5.3rem; display: grid; grid-template-columns: 3.2rem 1fr; gap: 0.9rem; align-items: center; text-align: left; }
  .beat-node { margin: 0; }
  .beat strong, .beat p { grid-column: 2; }
  .beat strong { align-self: end; }
  .beat p { margin: -0.3rem 0 0; align-self: start; }
  .format-table, .format-table tbody, .format-table tr, .format-table th, .format-table td { display: block; width: 100%; }
  .format-table thead { display: none; }
  .format-table tr { border-bottom: 1px solid var(--line-light); }
  .format-table td::before { content: attr(data-label); display: block; margin-bottom: 0.2rem; color: #777; font-size: 0.68rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
  .format-table tbody th { border-bottom: 0; }
  .resource-index { grid-template-columns: repeat(2, 1fr); }
  .asset-block-header { display: block; }
  .asset-actions { justify-content: flex-start; margin-top: 1rem; }
  .flow { grid-template-columns: 1fr; }
  .field-row, .choice-grid { grid-template-columns: 1fr; }
  .form-progress span { font-size: 0; }
  .form-progress span::after { content: attr(data-short); font-size: 0.69rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .hero-media img { aspect-ratio: 1 / 0.82; }
  .media-tag { right: 0.4rem; left: 0.4rem; bottom: 0.4rem; max-width: none; }
}
