/*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button))  or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer utilities {
  .static {
    position: static;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
}
:root {
  --ember: #ff5a13;
  --ember-light: #ffb164;
  --black: #050505;
  --white: #f4eee8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--black);
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Georgia, 'Times New Roman', serif;
}
a {
  color: inherit;
}
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: end;
  padding: 1.4rem clamp(1.25rem, 5vw, 5rem) clamp(2rem, 6vw, 5rem);
  background: radial-gradient(circle at 68% 70%, #341006 0, #100907 28%, #050505 65%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,5,5,.98) 0%, rgba(5,5,5,.78) 38%, rgba(5,5,5,.08) 72%), linear-gradient(0deg, #050505 0%, transparent 25%);
}
.site-header {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem clamp(1.25rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand-mark img {
  display: block;
  width: clamp(150px, 18vw, 260px);
  height: auto;
}
nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-family: Arial, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
nav a {
  text-decoration: none;
  color: #c8bdb3;
}
nav a:hover, nav a:focus-visible {
  color: var(--ember-light);
}
.hero-mascot {
  position: absolute;
  z-index: -2;
  right: max(-8rem, -5vw);
  bottom: -3rem;
  width: min(67vw, 920px);
  max-height: 93vh;
  object-fit: contain;
  object-position: bottom right;
  filter: contrast(1.06) saturate(.95);
}
.hero-glow {
  position: absolute;
  z-index: -3;
  right: 8vw;
  bottom: 2vh;
  width: 35vw;
  height: 55vh;
  background: #ff3b00;
  filter: blur(130px);
  opacity: .17;
}
.hero-copy {
  z-index: 2;
  max-width: 720px;
  padding-top: 8rem;
}
.eyebrow {
  margin: 0 0 .8rem;
  color: var(--ember-light);
  font-family: Arial, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  text-transform: uppercase;
  line-height: .88;
  text-wrap: balance;
}
h1 {
  max-width: 800px;
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: clamp(4rem, 11vw, 10rem);
  letter-spacing: -.035em;
  text-shadow: 0 0 45px rgba(255,74,10,.2);
}
h2 {
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  letter-spacing: -.035em;
}
.hero-statement {
  margin: 1.3rem 0 .8rem;
  max-width: 620px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.25;
}
.hero-detail {
  max-width: 560px;
  margin: 0;
  color: #bdb4ac;
  font-family: Arial, sans-serif;
  font-size: clamp(.95rem, 1.4vw, 1.12rem);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.button {
  padding: .95rem 1.3rem;
  border: 1px solid #4d4038;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: 160ms ease;
}
.button-primary {
  border-color: var(--ember);
  background: var(--ember);
  color: #090604;
}
.button-primary:hover, .button-primary:focus-visible {
  background: var(--ember-light);
  border-color: var(--ember-light);
}
.button-secondary:hover, .button-secondary:focus-visible {
  border-color: var(--ember-light);
  color: var(--ember-light);
}
.disclosure {
  position: absolute;
  right: clamp(1.25rem, 5vw, 5rem);
  bottom: 1.6rem;
  margin: 0;
  color: #817870;
  font-family: Arial, sans-serif;
  font-size: .68rem;
  letter-spacing: .08em;
}
.first-signal, .lore-tease, .transmission {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 8vw, 8rem);
}
.first-signal {
  display: grid;
  grid-template-columns: minmax(260px, 540px) minmax(280px, 620px);
  gap: clamp(2.5rem, 8vw, 8rem);
  align-items: center;
  background: #0a0908;
}
.first-signal img {
  width: 100%;
  box-shadow: 0 2rem 7rem rgba(255,65,0,.14);
}
.first-signal p:not(.eyebrow), .lore-tease p:not(.eyebrow), .transmission p:not(.eyebrow) {
  color: #a9a098;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}
.status {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--ember-light);
  font-family: Arial, sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.shorts-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background: radial-gradient(ellipse at top, #281006, #050505 65%);
  scroll-margin-top: 1rem;
}
.shorts-intro {
  max-width: 960px;
  margin: 0 auto 3rem;
  text-align: center;
}
.shorts-intro > p:last-child, .short-card p {
  color: #bdb4ac;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 405px));
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}
.short-card {
  min-width: 0;
}
.short-card iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  border: 1px solid #493126;
  background: #000;
}
.short-card h3 {
  margin: 1.25rem 0 .5rem;
  font-size: 1.7rem;
}
.short-card p {
  margin: 0 0 .8rem;
}
.short-card > a {
  color: var(--ember-light);
  font-family: Arial, sans-serif;
  font-size: .9rem;
  text-underline-offset: .25rem;
}
.shorts-follow {
  margin: 3rem 0 0;
  text-align: center;
}
.shorts-follow .button {
  display: inline-block;
}
@media (max-width: 600px) {
  .shorts-grid {
    grid-template-columns: minmax(0, 405px);
    gap: 3rem;
  }
}
.lore-tease {
  min-height: 70vh;
  display: grid;
  align-content: center;
  background: linear-gradient(rgba(5,5,5,.65), #050505), radial-gradient(circle at center, #3a1004, #050505 60%);
  text-align: center;
}
.lore-tease p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.transmission {
  text-align: center;
  background: #0b0a09;
  border-block: 1px solid #211b17;
}
.transmission p {
  max-width: 620px;
  margin-inline: auto;
}
.transmission button {
  margin-top: 1.5rem;
  padding: .95rem 1.25rem;
  border: 1px solid #3d3631;
  background: transparent;
  color: #746c65;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: not-allowed;
}
footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 2rem;
  color: #756d66;
  font-family: Arial, sans-serif;
  font-size: .7rem;
  text-align: center;
}
footer img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
}
footer a {
  color: #a99d94;
  text-underline-offset: .25rem;
}
@media (max-width: 760px) {
  nav {
    display: none;
  }
  .hero {
    align-items: end;
    padding-bottom: 3rem;
  }
  .hero::after {
    background: linear-gradient(0deg, #050505 8%, rgba(5,5,5,.48) 62%, #050505 100%);
  }
  .hero-mascot {
    right: -28vw;
    bottom: 22vh;
    width: 125vw;
    opacity: .72;
  }
  .hero-copy {
    padding-top: 22rem;
  }
  .hero-detail {
    max-width: 88%;
  }
  .disclosure {
    display: none;
  }
  .first-signal {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition-duration: .01ms !important;
  }
}
.listening-test {
  min-height: 100vh;
  background: radial-gradient(circle at 78% 18%, #2c0d04 0, #0b0807 30%, #050505 65%);
}
.listening-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid #2a211c;
}
.listening-header img {
  display: block;
  width: clamp(150px, 18vw, 250px);
}
.listening-header span {
  color: #9a8f86;
  font-family: Arial, sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.listening-intro {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(240px, 480px);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem) 3rem;
}
.listening-intro h1 {
  font-size: clamp(4rem, 9vw, 8rem);
}
.listening-intro > img {
  width: 100%;
  box-shadow: 0 2rem 7rem rgba(255,65,0,.18);
}
.test-instruction {
  max-width: 650px;
  margin: 1.5rem 0 .7rem;
  color: #d1c7be;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.55;
}
.test-warning {
  color: #8e8279;
  font-family: Arial, sans-serif;
  font-size: .8rem;
  line-height: 1.5;
}
.video-chamber {
  max-width: 1180px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
  border: 1px solid #3b2b22;
  background: rgba(14, 10, 8, .92);
  box-shadow: 0 1.5rem 5rem rgba(0,0,0,.55);
}
.video-chamber video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}
.video-chamber > p {
  margin: .8rem 0 0;
  color: #766d66;
  font-family: Arial, sans-serif;
  font-size: .72rem;
}
.story-context {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(300px, 1.3fr);
  gap: clamp(2rem, 7vw, 7rem);
  max-width: 1080px;
  margin: 0 auto clamp(4rem, 8vw, 7rem);
  padding: 0 clamp(1.25rem, 5vw, 4rem);
}
.story-context h2 {
  margin-top: .5rem;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}
.story-context-copy {
  color: #c2b7ae;
  font-family: Arial, sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  line-height: 1.8;
}
.story-context-copy p {
  margin: 0 0 1.4rem;
}
.audio-chamber {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
  border: 1px solid #3b2b22;
  background: rgba(14, 10, 8, .88);
  box-shadow: 0 1.5rem 5rem rgba(0,0,0,.45);
}
.audio-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.25rem;
}
.audio-title span {
  color: var(--ember-light);
  font-family: Arial, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.audio-title strong {
  margin-top: .35rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.audio-chamber audio {
  display: block;
  width: 100%;
  accent-color: var(--ember);
}
.audio-chamber > p {
  margin: .8rem 0 0;
  color: #766d66;
  font-family: Arial, sans-serif;
  font-size: .72rem;
}
.listener-form {
  max-width: 860px;
  margin: clamp(4rem, 9vw, 8rem) auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  font-family: Arial, sans-serif;
}
.form-heading {
  margin-bottom: 3rem;
}
.form-heading h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.form-heading > p:last-child {
  color: #9f958d;
  line-height: 1.7;
}
.listener-form > label, .listener-form fieldset {
  display: block;
  margin: 0 0 2.2rem;
  padding: 0;
  border: 0;
  color: #e3d9d1;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.5;
}
.listener-form label > span {
  color: #857a72;
  font-size: .78rem;
  font-weight: 400;
}
.listener-form input[type='text'], .listener-form input:not([type]), .listener-form textarea {
  width: 100%;
  margin-top: .65rem;
  padding: .9rem 1rem;
  border: 1px solid #44372f;
  border-radius: 0;
  outline: none;
  background: #0d0b0a;
  color: #f2eae4;
  font: inherit;
  font-weight: 400;
}
.listener-form input:focus-visible, .listener-form textarea:focus-visible {
  border-color: var(--ember-light);
  box-shadow: 0 0 0 3px rgba(255,177,100,.14);
}
.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: .85rem;
}
.choice-row label {
  cursor: pointer;
}
.choice-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-row label span {
  display: grid;
  min-width: 4.5rem;
  min-height: 2.9rem;
  place-items: center;
  padding: .65rem .9rem;
  border: 1px solid #493b33;
  color: #bdb2aa;
  font-weight: 700;
  transition: 140ms ease;
}
.choice-row input:checked + span {
  border-color: var(--ember);
  background: var(--ember);
  color: #090604;
}
.choice-row input:focus-visible + span {
  outline: 3px solid rgba(255,177,100,.35);
  outline-offset: 2px;
}
.five-choices label, .rating-row label {
  flex: 1 1 3rem;
}
.five-choices label span, .rating-row label span {
  min-width: 2.8rem;
}
.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-top: .5rem;
  color: #776e67;
  font-size: .7rem;
  font-weight: 400;
}
.submit-feedback {
  width: 100%;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--ember);
  background: var(--ember);
  color: #090604;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.submit-feedback:hover, .submit-feedback:focus-visible {
  background: var(--ember-light);
  border-color: var(--ember-light);
}
.submit-feedback:disabled {
  cursor: wait;
  opacity: .65;
}
.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: #b8ada5;
  font-size: .85rem;
  text-align: center;
}
.form-status.success {
  color: #d6b58c;
}
.form-status.error {
  color: #ff8b76;
}
.privacy-note {
  color: #6f6660;
  font-size: .7rem;
  text-align: center;
}
.honeypot {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.listening-footer {
  border-top: 1px solid #211b17;
}
.contact-page {
  min-height: 100vh;
  background: #050505;
}
.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid #2a211c;
  background: #080706;
}
.contact-header img {
  display: block;
  width: clamp(150px, 18vw, 250px);
}
.contact-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 520px);
  align-items: end;
  min-height: 68vh;
  overflow: hidden;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 7vw, 7rem) 0;
  background: radial-gradient(circle at 78% 62%, #3a1206 0, #100907 29%, #050505 66%);
}
.contact-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,5,5,.98), rgba(5,5,5,.68) 47%, rgba(5,5,5,.06));
}
.contact-hero-copy {
  align-self: center;
  max-width: 720px;
  padding-bottom: clamp(4rem, 8vw, 8rem);
}
.contact-hero h1 {
  font-size: clamp(4rem, 11vw, 10rem);
}
.contact-hero-copy > p:last-child {
  max-width: 620px;
  color: #bbb0a7;
  font-family: Arial, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}
.contact-hero > img {
  align-self: end;
  width: min(55vw, 650px);
  max-height: 66vh;
  object-fit: contain;
  object-position: bottom center;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: #2d241f;
}
.contact-card {
  min-height: 360px;
  padding: clamp(2rem, 5vw, 4.5rem);
  background: #0b0908;
}
.contact-card h2 {
  overflow-wrap: anywhere;
  font-size: clamp(1.5rem, 2.8vw, 2.7rem);
  text-transform: none;
}
.contact-card > p:not(.eyebrow) {
  min-height: 5.5rem;
  color: #9f958d;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}
.contact-card .button {
  display: inline-block;
  margin-top: 1.4rem;
}
.privacy-contact {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 620px);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: center;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 8vw, 8rem);
  background: radial-gradient(circle at 20% 50%, #2b0c04, #080706 45%);
}
.privacy-contact h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}
.privacy-contact > p {
  color: #b2a69d;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
}
.privacy-contact a {
  color: var(--ember-light);
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    min-height: 0;
  }
  .contact-card > p:not(.eyebrow) {
    min-height: 0;
  }
}
@media (max-width: 700px) {
  .listening-header span {
    display: none;
  }
  .listening-intro {
    grid-template-columns: 1fr;
  }
  .listening-intro > img {
    grid-row: 1;
  }
  .story-context {
    grid-template-columns: 1fr;
  }
  .rating-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .contact-header nav {
    display: block;
  }
  .contact-hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
  }
  .contact-hero-copy {
    padding-bottom: 1rem;
  }
  .contact-hero > img {
    width: 100%;
    max-height: 48vh;
    opacity: .78;
  }
  .privacy-contact {
    grid-template-columns: 1fr;
  }
}
