/* =============================================================
   19 Miles Per Hour — site styles
   Hand-coded static rebuild (migrated off Duda).
   Design tokens & values mirror the original high-fidelity mocks.
   ============================================================= */

/* ---- Design tokens ---------------------------------------- */
:root {
  --accent: #F5B301;          /* brand: warm yellow/gold */
  --on-accent: #0a0a0a;       /* text sitting on accent fills */

  --bg: #000000;              /* page */
  --surface: #0d0d0d;         /* cards, widget frames */
  --surface-alt: #070707;     /* alternating sections (Listen, Live) */
  --surface-input: #0f0f0f;   /* Spotify frame + form inputs */
  --surface-popup: #0c0c0c;   /* modal */

  --text: #ffffff;
  --text-82: rgba(255,255,255,.82);
  --text-78: rgba(255,255,255,.78);
  --text-70: rgba(255,255,255,.70);
  --text-60: rgba(255,255,255,.60);
  --text-55: rgba(255,255,255,.55);
  --text-50: rgba(255,255,255,.50);
  --text-45: rgba(255,255,255,.45);
  --text-35: rgba(255,255,255,.35);
  --text-34: rgba(255,255,255,.34);

  --hair: rgba(255,255,255,.08);
  --hair-09: rgba(255,255,255,.09);
  --hair-14: rgba(255,255,255,.14);

  --head-h: 86px;             /* sticky header height */

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* ---- Reset / base ----------------------------------------- */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #fff; }

img { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---- Keyframes -------------------------------------------- */
@keyframes mphFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mphOverlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes mphPopIn { from { opacity: 0; transform: translateY(28px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

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

/* ---- Page shell ------------------------------------------- */
.page {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: clip;
  position: relative;
}
/* Subpages: sticky footer via flex column */
.page--sub {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---- Layout helpers --------------------------------------- */
.wrap { width: 100%; margin: 0 auto; }
.wrap-680  { max-width: 680px; }
.wrap-720  { max-width: 720px; }
.wrap-760  { max-width: 760px; }
.wrap-800  { max-width: 800px; }
.wrap-820  { max-width: 820px; }
.wrap-860  { max-width: 860px; }
.wrap-900  { max-width: 900px; }
.wrap-1000 { max-width: 1000px; }
.wrap-1120 { max-width: 1120px; }
.wrap-1200 { max-width: 1200px; }

.section {
  padding: 96px 24px;
  scroll-margin-top: 100px;
  background: var(--bg);
}
.section--alt { background: var(--surface-alt); }
.section--pad-lg { padding: 104px 24px 96px; }
.section--contact { padding: 96px 24px 104px; }
.center { text-align: center; }

/* ---- Typography ------------------------------------------- */
.eyebrow {
  margin: 0;
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-title {
  margin: 0 0 44px;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
}
.section-sub {
  margin: 0 auto 44px;
  color: var(--text-55);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-size: 13px;
}
.page-title {
  margin: 0 0 30px;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: clamp(2.6rem, 7vw, 5rem);
}
.page-title--legal {
  margin: 0 0 10px;
  letter-spacing: .06em;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s ease;
}
.btn--hero {
  padding: 18px 56px;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-size: 15px;
  letter-spacing: .2em;
}
.btn--hero:hover { background: #fff; color: #000; }

.btn--outline {
  padding: 15px 46px;
  border: 2px solid rgba(255,255,255,.55);
  color: #fff;
  background: transparent;
  font-size: 14px;
  letter-spacing: .18em;
}
.btn--outline:hover { background: #fff; color: #000; border-color: #fff; }

.btn--accent {
  padding: 15px 38px;
  background: var(--accent);
  color: var(--on-accent);
  border: 0;
  font-size: 14px;
  letter-spacing: .14em;
  border-radius: 6px;
  transition: filter .2s ease;
}
.btn--accent:hover { filter: brightness(1.12); color: var(--on-accent); }

.btn--outline-2 {
  padding: 15px 38px;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
  font-size: 14px;
  letter-spacing: .14em;
  border-radius: 6px;
  transition: all .2s ease;
}
.btn--outline-2:hover { background: #fff; color: #000; border-color: #fff; }

.btn--submit {
  padding: 16px 54px;
  background: var(--accent);
  color: var(--on-accent);
  border: 0;
  font-size: 15px;
  letter-spacing: .16em;
  border-radius: 8px;
  transition: filter .2s ease;
}
.btn--submit:hover { filter: brightness(1.12); }

/* ---- Header ----------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 26px;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  /* solid default (used by subpages) */
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
/* Home: transparent over hero until scrolled */
.site-header--overlay {
  background: rgba(0,0,0,0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(255,255,255,0);
}
.site-header--overlay.is-scrolled {
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
}
.site-header__logo { display: inline-flex; }
.site-header__logo img { height: 58px; width: auto; display: block; }

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.site-nav a {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .02em;
  transition: color .2s ease;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a.is-active { color: var(--accent); font-weight: 600; }

.site-header__social { justify-self: end; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
}

/* Mobile dropdown panel */
.mobile-panel {
  position: fixed;
  top: var(--head-h);
  left: 0;
  right: 0;
  z-index: 59;
  background: rgba(0,0,0,.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 30px 24px 36px;
  transition: transform .3s ease, opacity .3s ease;
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
}
.mobile-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-panel a {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: .03em;
}
.mobile-panel a:hover { color: var(--accent); }
.mobile-panel a.is-active { color: var(--accent); }
.mobile-panel__social { margin-top: 6px; }

/* ---- Socials ---------------------------------------------- */
.socials {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  color: #fff;
  transition: color .2s ease;
}
.socials a:hover { color: var(--accent); }
.socials svg { display: block; }

/* ---- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 150px 24px 96px;
  margin-top: calc(-1 * var(--head-h));
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero.jpg') center 22% / cover no-repeat;
  z-index: 0;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.3) 42%, rgba(0,0,0,.9) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  width: 100%;
  max-width: 1200px;
}
.hero__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  line-height: .98;
  font-size: clamp(2.6rem, 8.5vw, 7.6rem);
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
  animation: mphFadeUp .8s ease both;
}
.hero .btn--hero { animation: mphFadeUp .8s ease .15s both; }
.hero__follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  animation: mphFadeUp .8s ease .3s both;
}
.hero__follow-label {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: .14em;
  font-size: 15px;
  color: rgba(255,255,255,.92);
}
.hero__grunge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 66px;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}

/* ---- Bio -------------------------------------------------- */
.bio-copy {
  display: flex;
  flex-direction: column;
  gap: 26px;
  color: var(--text-82);
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
  text-wrap: pretty;
}
.bio-copy p { margin: 0; }

/* ---- Listen / music --------------------------------------- */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.music-card {
  background: var(--surface-input);
  border: 1px solid var(--hair);
  border-radius: 16px;
  padding: 14px;
}
.music-card iframe { border-radius: 10px; display: block; border: 0; }

.video-block { margin-top: 80px; text-align: center; }
.video-block h3 {
  margin: 0 0 32px;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}
.video-block .eyebrow { margin-bottom: 6px; }
.video-frame {
  position: relative;
  width: 100%;
  max-width: 940px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---- Gallery ---------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}
.gallery-tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.gallery-tile:hover img { transform: scale(1.07); }
/* photos 10–27 hidden until "View More" */
.gallery-grid .gallery-tile.is-extra { display: none; }
.gallery-grid.is-expanded .gallery-tile.is-extra { display: block; }
.gallery-more { text-align: center; margin-top: 38px; }

/* ---- Live / widget frame ---------------------------------- */
.widget-frame {
  background: var(--surface);
  border: 1px solid var(--hair-09);
  border-radius: 16px;
  padding: 14px 20px;
  min-height: 120px;
  text-align: left;
}
.live-sub { margin: 0 0 40px; }

/* ---- Contact ---------------------------------------------- */
.contact-eyebrow { margin: 0 0 8px; }
.contact-email {
  display: inline-block;
  margin: 0 0 56px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 1.9rem);
  letter-spacing: .01em;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease;
}
.contact-email:hover { color: #fff; border-color: var(--accent); }
.contact-title {
  margin: 0 0 26px;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}
.signup-frame {
  background: var(--surface);
  border: 1px solid var(--hair-09);
  border-radius: 16px;
  overflow: hidden;
  padding: 6px;
}
.signup-frame iframe { border: 0; display: block; }

/* ---- Footer ----------------------------------------------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--hair);
  padding: 52px 24px 40px;
}
.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.site-footer__logo { height: 76px; width: auto; }
.footer-legal {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--text-50);
  font-family: var(--font-head);
  letter-spacing: .02em;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a { color: var(--text-50); }
.footer-legal a:hover { color: #fff; }
.footer-legal .sep { opacity: .4; }
.footer-copy {
  margin: 0;
  font-size: 12px;
  color: var(--text-34);
  letter-spacing: .06em;
  font-family: var(--font-head);
}

/* ---- Entry popup ------------------------------------------ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.popup-overlay.is-open { display: flex; animation: mphOverlayIn .3s ease; }
.popup {
  position: relative;
  max-width: 720px;
  width: 100%;
  background: var(--surface-popup);
  border: 1px solid var(--hair-14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0,0,0,.7);
  animation: mphPopIn .45s cubic-bezier(.2,.7,.2,1);
}
.popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.popup__close:hover { background: var(--accent); }
.popup__video { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.popup__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.popup__body { padding: 30px 34px 34px; text-align: center; }
.popup__body .eyebrow { letter-spacing: .24em; font-size: 12px; margin: 0 0 6px; }
.popup__body h3 {
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
}
.popup__blurb { margin: 0 0 26px; color: var(--text-70); font-size: 15px; line-height: 1.6; }
.popup__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Booking form ----------------------------------------- */
.book-intro {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-78);
  font-size: 16.5px;
  line-height: 1.75;
  text-wrap: pretty;
}
.book-lead { text-align: center; margin-bottom: 14px; }
.book-lead h2 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
}
.book-lead p { margin: 0; color: var(--text-60); font-size: 15px; line-height: 1.6; }

.form-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-60);
}
.input {
  width: 100%;
  background: var(--surface-input);
  border: 1px solid var(--hair-14);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease;
}
.input:focus { border-color: var(--accent); }
.input::placeholder { color: var(--text-35); }
textarea.input { resize: vertical; min-height: 130px; }
.form-submit { grid-column: 1 / -1; text-align: center; margin-top: 6px; }

.form-confirm {
  margin-top: 26px;
  background: var(--surface);
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 34px;
  text-align: center;
}
.form-confirm.is-hidden { display: none; }
.form-confirm__title {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.form-confirm p { margin: 0; color: var(--text-70); font-size: 15px; line-height: 1.6; }

/* ---- Press ------------------------------------------------ */
.press-intro {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text-78);
  font-size: 16.5px;
  line-height: 1.75;
  text-wrap: pretty;
}
.press-intro p { margin: 0; }
.press-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}
.press-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--hair-09);
  border-radius: 14px;
  padding: 26px 28px;
  transition: border-color .2s ease, transform .2s ease;
}
.press-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.press-card--full { grid-column: 1 / -1; }
.press-card__meta {
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.press-card__title {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
}
.press-card__cta {
  color: var(--text-45);
  font-size: 13px;
  margin-top: 12px;
  font-family: var(--font-head);
}

/* ---- EPK -------------------------------------------------- */
.epk-list { display: flex; flex-direction: column; gap: 20px; }
.epk-card {
  background: var(--surface);
  border: 1px solid var(--hair-09);
  border-radius: 16px;
  padding: 30px 32px;
}
.epk-card h4 {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  color: var(--accent);
}
.epk-card h4.tight { margin-bottom: 16px; }
.epk-card h4.tighter { margin-bottom: 14px; }
.epk-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 28px;
  color: var(--text-82);
  font-size: 15.5px;
  line-height: 1.5;
}
.epk-bio { margin: 0; color: var(--text-82); font-size: 16px; line-height: 1.8; text-wrap: pretty; }
.epk-bio-group { display: flex; flex-direction: column; gap: 18px; color: var(--text-82); font-size: 16px; line-height: 1.8; text-wrap: pretty; }
.epk-bio-group p { margin: 0; }
.epk-2up {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.epk-link-lead { margin: 0 0 10px; color: var(--text-82); font-size: 15.5px; line-height: 1.6; }
.epk-link-note { margin: 0; color: var(--text-50); font-size: 14px; line-height: 1.6; }
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill {
  display: inline-block;
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  transition: all .2s ease;
}
.pill:hover { border-color: var(--accent); color: var(--accent); }

/* ---- Legal (Privacy / Terms) ------------------------------ */
.legal__intro { margin: 0 0 40px; color: var(--text); font-size: 16px; line-height: 1.8; }
.legal__intro { color: rgba(255,255,255,.8); }
.legal__sections { display: flex; flex-direction: column; gap: 34px; }
.legal h3 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 15px;
  color: var(--accent);
}
.legal p { margin: 0 0 14px; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.8; }
.legal p:last-child { margin-bottom: 0; }
.legal ul { margin: 0; padding-left: 20px; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.8; }
.legal li { margin-bottom: 8px; }
.legal li:last-child { margin-bottom: 0; }
.legal li::marker { color: var(--accent); }

/* Subpage hero sections (title blocks) */
.pagehead { padding: 80px 24px 40px; text-align: center; background: var(--bg); }
.pagehead--epk { padding: 80px 24px 24px; }
.pagehead--legal { padding: 80px 24px 20px; }
.pagehead__sub {
  margin: 0;
  color: var(--text-55);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-size: 13px;
}
.pagehead__sub--legal { color: var(--text-50); letter-spacing: .14em; font-size: 12px; }
.section--flush-top { padding-top: 36px; }
.section--flush-top-sm { padding-top: 24px; }
.section--flush-top-xs { padding-top: 28px; }
.section--epk-body { padding: 32px 24px 96px; }
.grow { flex: 1; }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; padding-left: 18px; padding-right: 12px; }
  .site-nav, .site-header__social { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 861px) {
  .mobile-panel { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 120px 20px 76px; margin-top: -72px; }
  .section, .section--pad-lg, .section--contact { padding-left: 20px; padding-right: 20px; }
}
