/* ===========================================================================
   TOP FRIENDS — "After Dark"
   Chic + vintage members-club system. Deep espresso ground, cream type, a
   single gold accent, Fraunces serif with italic gold accent words, Space Mono
   eyebrows, and a quiet film grain over everything.
   Design direction LOCKED (see plan: warm/dark hybrid).
   =========================================================================== */

:root {
  /* Ground + ink */
  --espresso:      #2c1811;  /* primary section ground */
  --espresso-deep: #17100b;  /* page + darker panels */
  --panel:         #341f16;  /* raised card / alt band */
  --panel-2:       #3a2419;  /* lighter card face */

  --cream:      #f4ebcd;  /* primary text + emblem tile */
  --cream-dim:  #c4b090;  /* secondary / body copy on dark */
  --cream-mute: #9c876a;  /* tertiary, captions */

  --gold:       #cba24a;  /* accent, eyebrows, stars, CTA */
  --gold-light: #e6c98f;  /* italic accent word, hovers */
  --gold-deep:  #a8823a;  /* pressed / borders */

  --rule:      rgba(203, 162, 74, 0.22);  /* gold hairline */
  --rule-soft: rgba(244, 235, 205, 0.10); /* cream hairline */

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body:  'Work Sans', system-ui, -apple-system, sans-serif;
  --mono:  'Space Mono', ui-monospace, monospace;

  --maxw: 1080px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--espresso-deep);
  color: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* Site-wide film grain — a fixed, low-opacity noise over everything. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Shared building blocks ─────────────────────────────────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 760px; }

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.rule-lead {
  width: 58px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 20px 0 0;
}
.rule-lead--center { margin-left: auto; margin-right: auto; }

.h-serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.006em;
  color: var(--cream);
}
.h-serif em { font-style: italic; color: var(--gold-light); }

.section { padding: 88px 0; position: relative; }
.section--tight { padding: 64px 0; }
.section--panel { background: var(--espresso); }
.section--deep  { background: var(--espresso-deep); }
.divider { border: 0; border-top: 1px solid var(--rule); margin: 0; }

/* Star rating */
.stars { color: var(--gold); letter-spacing: 3px; font-size: 18px; line-height: 1; }
.stars--dim { color: var(--gold-deep); }

/* Primary gold CTA */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--espresso);
  padding: 15px 34px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease;
}
.btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--ghost:hover { background: var(--gold); color: var(--espresso); }

/* ── Nav (injected partial) ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 28px;
  background: rgba(23, 16, 11, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-decoration: none;
}
.nav__right { display: flex; align-items: center; gap: 22px; }
.nav__link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.14s ease;
}
.nav__link:hover { color: var(--cream); }
.nav__link.is-active { color: var(--gold); }
.nav__cta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  padding: 9px 18px;
  text-decoration: none;
  transition: background 0.14s ease;
}
.nav__cta:hover { background: var(--gold-light); }

/* ── Footer (injected partial) ──────────────────────────────────────────── */
.footer {
  background: var(--espresso-deep);
  border-top: 1px solid var(--rule);
  padding: 40px 28px;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
}
.footer__meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-mute);
}
.footer__links { display: flex; gap: 18px; }
.footer__links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mute);
  text-decoration: none;
  transition: color 0.14s ease;
}
.footer__links a:hover { color: var(--gold); }

/* ── Home hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  padding: 76px 28px 92px;
  background: var(--espresso);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.hero__emblem {
  width: 232px;
  max-width: 62%;
  margin: 26px auto 6px;
  border-radius: 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5.6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.008em;
  color: var(--cream);
  margin: 28px auto 0;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  max-width: 460px;
  margin: 20px auto 0;
  font-size: 17px;
  line-height: 1.5;
  color: var(--cream-dim);
}
.hero__stat {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 34px;
}
.hero__stat .stars { font-size: 20px; }
.hero__score {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
}
.hero__cta-row { margin-top: 34px; }

/* ── Recap (video + photo strip) ────────────────────────────────────────── */
.recap { background: var(--espresso-deep); }
.recap__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.recap__media { text-align: center; }
.recap__creed .eyebrow { display: block; margin-bottom: 10px; }
.recap__head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.recap__head--col { margin: 0 auto 30px; }
.recap__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 48px);
  color: var(--cream);
  margin: 18px 0 0;
}
.recap__title em { font-style: italic; color: var(--gold-light); }
.recap__lead {
  margin: 16px auto 0;
  max-width: 520px;
  color: var(--cream-dim);
  font-size: 16px;
}

/* Phone-framed, click-to-play player */
.phone {
  position: relative;
  width: 300px;
  max-width: 82vw;
  margin: 0 auto;
  aspect-ratio: 1080 / 1920;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(160deg, #241812, #120b07);
  border: 1px solid var(--rule);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(0,0,0,0.4);
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
}
.phone__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.phone__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.55);
  z-index: 3;
  pointer-events: none;
}
.phone__play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  background: radial-gradient(circle at 50% 46%, rgba(23,16,11,0.15), rgba(23,16,11,0.55));
  transition: opacity 0.2s ease;
}
.phone__play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 26px solid var(--espresso);
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
.phone__play-disc {
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
  transition: transform 0.16s ease, background 0.16s ease;
}
.phone__play:hover .phone__play-disc { transform: scale(1.06); background: var(--gold-light); }
.phone.is-playing .phone__play { opacity: 0; pointer-events: none; }
.phone__cap {
  margin-top: 20px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* Photo strip */
.strip {
  margin-top: 56px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 28px 14px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.strip::-webkit-scrollbar { height: 6px; }
.strip::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 6px; }
.strip__item {
  flex: 0 0 auto;
  width: min(340px, 74vw);
  scroll-snap-align: center;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--panel);
}
.strip__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

/* ── What the night is ──────────────────────────────────────────────────── */
.creed__cards { display: flex; flex-direction: column; gap: 0; }
.creed__card {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.creed__card:last-child { border-bottom: 1px solid var(--rule); }
.creed__card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--gold-light);
  margin: 0 0 6px;
}
.creed__card p { margin: 0; color: var(--cream-dim); font-size: 15.5px; }

/* ── Testimonials ───────────────────────────────────────────────────────── */
.praise { background: var(--espresso); }
.praise__head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.praise__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 48px);
  color: var(--cream);
  margin: 18px 0 0;
}
.praise__title em { font-style: italic; color: var(--gold-light); }
.praise__score {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
}
.praise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}
.quote {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
}
.quote__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 54px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.55;
  height: 24px;
}
.quote__stars { margin: 10px 0 14px; font-size: 15px; }
.quote__body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--cream);
  margin: 0 0 22px;
  flex: 1;
}
.quote__who { display: flex; flex-direction: column; gap: 2px; }
.quote__name {
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.quote__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Origin / Friends of Friends ────────────────────────────────────────── */
.origin { background: var(--espresso-deep); }
.origin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.origin__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.04;
  color: var(--cream);
  margin: 18px 0 0;
}
.origin__title em { font-style: italic; color: var(--gold-light); }
.origin__body p { color: var(--cream-dim); font-size: 16px; margin: 20px 0 0; line-height: 1.65; }
.origin__note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gold) !important;
  margin-top: 22px !important;
}
.origin__portrait {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.origin__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
}

/* ── Roster ─────────────────────────────────────────────────────────────── */
.roster { background: var(--espresso); }
.roster__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.roster__photo { margin: 0; border-radius: 8px; overflow: hidden; border: 1px solid var(--rule); }
.roster__photo img { width: 100%; height: auto; filter: saturate(0.96); }
.roster__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 50px);
  color: var(--cream);
  margin: 18px 0 0;
}
.roster__title em { font-style: italic; color: var(--gold-light); }
.roster__roll {
  max-width: none;
  margin: 30px 0 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(19px, 2.7vw, 27px);
  line-height: 1.6;
  color: var(--cream);
}
.roster__roll .g { display: inline; }
.roster__roll .g:not(:last-child)::after {
  content: "\2726";
  margin: 0 0.5em;
  font-size: 0.55em;
  color: var(--gold);
  vertical-align: 0.18em;
}
.roster__note {
  margin: 26px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cream-mute);
}

/* ── Waitlist section (home + page) ─────────────────────────────────────── */
.waitlist { background: var(--espresso-deep); }
.waitlist__head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.waitlist__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  margin: 18px 0 0;
}
.waitlist__title em { font-style: italic; color: var(--gold-light); }
.waitlist__lead { margin: 16px auto 0; max-width: 480px; color: var(--cream-dim); font-size: 16px; }
.embed {
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.embed iframe { width: 100%; border: 0; display: block; }
.embed__note {
  max-width: 640px;
  margin: 18px auto 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--cream-mute);
}

/* ── Compact hero (form + utility pages) ────────────────────────────────── */
.hero--compact { padding: 54px 28px 40px; }
.hero--compact .hero__emblem { width: 150px; margin: 6px auto 4px; }
.hero--compact .hero__title { font-size: clamp(30px, 5vw, 46px); margin-top: 22px; }

/* ── Directory ──────────────────────────────────────────────────────────── */
.gate { max-width: 460px; margin: 0 auto; text-align: center; }
.gate__lock {
  width: 54px; height: 54px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold);
}
.gate__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4.4vw, 42px);
  color: var(--cream);
  margin: 16px 0 0;
}
.gate__title em { font-style: italic; color: var(--gold-light); }
.gate__lead { margin: 14px auto 0; color: var(--cream-dim); font-size: 15.5px; max-width: 380px; }
.gate__form { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.gate__input {
  width: 100%;
  max-width: 320px;
  padding: 15px 18px;
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0.14em;
  text-align: center;
  color: var(--cream);
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.14s ease;
}
.gate__input::placeholder { color: var(--cream-mute); letter-spacing: 0.24em; }
.gate__input:focus { border-color: var(--gold); }
.gate__error {
  min-height: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #e08b6a;
}
.gate__error:empty { min-height: 0; }

.dir { display: none; }
.dir.is-open { display: block; }
.dir__head { text-align: center; max-width: 620px; margin: 0 auto 44px; }
.dir__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 48px);
  color: var(--cream);
  margin: 18px 0 0;
}
.dir__title em { font-style: italic; color: var(--gold-light); }
.dir__lead { margin: 14px auto 0; color: var(--cream-dim); font-size: 15.5px; max-width: 460px; }
.dir__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.dcard {
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dcard__top { display: flex; align-items: center; gap: 14px; }
.dcard__avatar {
  flex: 0 0 auto;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--espresso-deep);
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.dcard__avatar--photo { overflow: hidden; padding: 0; }
.dcard__avatar--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dcard__name { font-family: var(--serif); font-weight: 600; font-size: 19px; color: var(--cream); }
.dcard__label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-bottom: 4px;
}
.dcard__working { color: var(--cream-dim); font-size: 15px; line-height: 1.5; }
.dcard__contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--rule);
  padding-top: 12px;
}
.dcard__email {
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--gold);
  overflow-wrap: anywhere;
  user-select: all;   /* one tap/click selects the whole address */
}
.dcard__copy {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 6px;
  color: var(--gold);
  padding: 6px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.14s ease, color 0.14s ease, border-color 0.14s ease;
}
.dcard__copy:hover { border-color: var(--gold); color: var(--gold-light); }
.dcard__copy.is-copied {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
}
.dcard__event {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-mute);
}

/* ── Coming-soon stub ───────────────────────────────────────────────────── */
.stub {
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 28px;
  background: var(--espresso);
}
.stub__inner { max-width: 540px; }
.stub__emblem { width: 120px; margin: 0 auto 28px; border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.45); }
.stub__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  margin: 18px 0 0;
}
.stub__title em { font-style: italic; color: var(--gold-light); }
.stub__lead { margin: 18px auto 0; color: var(--cream-dim); font-size: 16px; }
.stub__soon {
  display: inline-block;
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 8px 18px;
}

/* Legal prose (privacy / terms) */
.legal { background: var(--espresso); }
.legal__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 50px);
  color: var(--cream);
  margin: 18px 0 0;
}
.legal__body { margin-top: 28px; color: var(--cream-dim); font-size: 16px; }
.legal__body h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
  margin: 34px 0 10px;
}
.legal__body p, .legal__body li { line-height: 1.65; }
.legal__body a { color: var(--gold); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .recap__grid, .origin__grid, .roster__grid { grid-template-columns: 1fr; gap: 40px; }
  .origin__portrait { order: -1; max-height: 420px; }
  .roster { text-align: center; }
  .roster__photo { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 62px 0; }
  .wrap { padding: 0 20px; }
  .nav { padding: 12px 14px; gap: 8px; flex-wrap: wrap; }
  .nav__right { gap: 10px; }
  .nav__link--home { display: none; } /* brand already links home; keep Directory visible */
  .nav__link { font-size: 11px; letter-spacing: 0.1em; }
  .nav__brand { font-size: 16px; }
  .nav__cta { padding: 8px 10px; font-size: 11px; letter-spacing: 0.05em; }
  .hero { padding: 52px 20px 68px; }
  .strip { padding-left: 20px; padding-right: 20px; }
  .footer__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone__play, .phone__play-disc, .btn { transition: none; }
}
