/* Direction B — "After Hours"
   Espresso-dominant editorial magazine. Dramatic, gallery-like. */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,700;1,800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0E0C0A;
  --bg-2: #15110D;
  --bg-3: #1C1814;
  --ink: #EFE8DA;
  --ink-2: rgba(239, 232, 218, 0.72);
  --ink-3: rgba(239, 232, 218, 0.45);
  --gold: #C9A36A;
  --gold-soft: #D4B07A;
  --line: rgba(239, 232, 218, 0.14);
  --line-strong: rgba(239, 232, 218, 0.28);
  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle film texture across the page */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  background:
    radial-gradient(ellipse at top, rgba(201,163,106,0.04), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(201,163,106,0.03), transparent 70%);
}

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

/* —— Layout —— */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 56px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 56px; }

/* —— Typography —— */
.kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.kicker .dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: currentColor; margin-right: 10px; vertical-align: middle; transform: translateY(-2px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-3);
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 800; letter-spacing: -0.018em; line-height: 0.96; color: var(--ink); }
h1.display { font-size: 144px; line-height: 0.92; letter-spacing: -0.032em; font-weight: 800; text-transform: uppercase; }
h1 { font-size: 116px; font-weight: 800; letter-spacing: -0.024em; text-transform: uppercase; }
h2 { font-size: 84px; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; }
h3 { font-size: 32px; font-weight: 800; letter-spacing: -0.012em; text-transform: uppercase; }
h4 { font-size: 13px; font-weight: 700; font-family: var(--sans); letter-spacing: 0.16em; text-transform: uppercase; }

.allcaps { text-transform: uppercase; letter-spacing: 0.02em !important; font-weight: 800 !important; }

/* Italic accent — fashion serif kick, NOT uppercase */
.italic, .ital {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  text-transform: none;
  color: var(--gold);
  letter-spacing: -0.008em;
}

p { color: var(--ink-2); }
p.lead { font-size: 22px; line-height: 1.46; color: var(--ink); max-width: 56ch; font-weight: 400; }
p.body { font-size: 15px; line-height: 1.7; color: var(--ink-2); }
p.note { font-size: 13px; line-height: 1.6; color: var(--ink-3); }

.rule { height: 1px; background: var(--line); width: 100%; }
.rule-strong { height: 1px; background: var(--line-strong); width: 100%; }
.rule-gold { height: 1px; background: var(--gold); width: 64px; }

/* —— Wordmark —— */
.wordmark {
  display: inline-flex; align-items: center;
  text-decoration: none; line-height: 0;
}
.wordmark img { height: 28px; width: auto; display: block; }
.wordmark .dot { color: var(--gold); margin-left: 1px; }

/* —— Nav —— */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14, 12, 10, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-links { display: flex; gap: 38px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.current { color: var(--gold); }

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid var(--gold);
  background: var(--gold);
  color: var(--bg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover { background: transparent; color: var(--gold); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn .arrow { font-size: 14px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.2s, color 0.2s, border-color 0.2s;
}
.link-arrow:hover { gap: 12px; color: var(--ink); border-color: var(--ink); }

/* —— Hero (asymmetric, image-led) —— */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.hero-meta { display: flex; flex-direction: column; gap: 32px; padding-left: 24px; }
.hero-image {
  aspect-ratio: 4 / 5.4;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,12,10,0.4));
  pointer-events: none;
}

/* —— Sections —— */
section { padding: 140px 0; }
section.tight { padding: 88px 0; }
section.cream { background: var(--ink); color: var(--bg); }
section.cream h1, section.cream h2, section.cream h3, section.cream h4 { color: var(--bg); }
section.cream p { color: rgba(26, 22, 18, 0.7); }
section.cream .rule { background: rgba(26,22,18,0.14); }
section.cream .kicker { color: #8C6F3F; }
section.cream .eyebrow { color: rgba(26,22,18,0.5); }
section.cream .link-arrow { color: var(--bg); border-color: var(--bg); }
section.bg2 { background: var(--bg-2); }

.section-head { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; margin-bottom: 72px; align-items: end; }
.section-head .right { max-width: 56ch; }

/* —— Three-up —— */
.three-up { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.three-up .cell {
  background: var(--bg);
  padding: 48px 36px;
  display: flex; flex-direction: column;
  position: relative;
}
section.cream .three-up { background: rgba(26,22,18,0.14); border-color: rgba(26,22,18,0.28); }
section.cream .three-up .cell { background: var(--ink); }
.three-up .num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 32px;
}
.three-up h3 { margin-bottom: 16px; }

/* —— Pillars list (large, magazine-style) —— */
.pillar-row {
  display: grid;
  grid-template-columns: 0.8fr 2.2fr 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.pillar-row:last-child { border-bottom: 1px solid var(--line); }
.pillar-row .idx { font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: var(--gold); }
.pillar-row h3 { font-size: 36px; font-weight: 800; letter-spacing: -0.014em; }
.pillar-row p { font-size: 15px; max-width: 38ch; }
section.cream .pillar-row { border-color: rgba(26,22,18,0.14); }
section.cream .pillar-row .idx { color: #8C6F3F; }

/* —— Footer —— */
footer {
  background: #08070A;
  color: var(--ink);
  padding: 120px 0 36px;
  border-top: 1px solid var(--line);
}
footer h2 { color: var(--ink); }
.foot-cta { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; padding-bottom: 80px; border-bottom: 1px solid var(--line); align-items: end; }
.foot-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 48px; }
.foot-col h5 { font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500; color: var(--gold); margin-bottom: 22px; }
.foot-col a { display: block; color: var(--ink-2); font-size: 14px; padding: 5px 0; text-decoration: none; transition: color 0.18s; }
.foot-col a:hover { color: var(--gold); }
.foot-mark { display: inline-flex; align-items: center; line-height: 0; }
.foot-mark img { height: 40px; width: auto; }
.foot-mark .dot { color: var(--gold); }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 32px; font-size: 11px; color: rgba(239,232,218,0.35); letter-spacing: 0.06em; }

/* —— Marquee —— */
.marquee {
  display: flex; gap: 64px; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 36px; font-weight: 300; color: var(--ink-2);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  flex-wrap: wrap;
}
.marquee span { display: inline-flex; align-items: center; gap: 64px; }
.marquee .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.marquee .city-roman { font-style: normal; color: var(--ink); }

/* —— App teaser —— */
.app-section {
  background: var(--bg-2);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: ''; position: absolute; top: -40%; right: -10%; width: 60%; height: 100%;
  background: radial-gradient(ellipse, rgba(201,163,106,0.08), transparent 60%);
  pointer-events: none;
}
.app-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }
.phone-mock {
  width: 100%; max-width: 360px;
  aspect-ratio: 9/19;
  background: #08070A;
  border: 8px solid #2a2520;
  border-radius: 44px;
  padding: 24px 18px;
  box-shadow: 0 50px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,163,106,0.25), 0 0 60px rgba(201,163,106,0.08);
  margin: 0 auto;
}

/* —— Spec rows (large, gallery) —— */
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec-cell { background: var(--bg); padding: 40px 32px; }
.spec-cell .val { font-family: var(--serif); font-size: 64px; font-weight: 800; line-height: 1; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.024em; text-transform: uppercase; }
.spec-cell .lbl { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
section.cream .spec-cell { background: var(--ink); }
section.cream .spec-grid { background: rgba(26,22,18,0.14); border-color: rgba(26,22,18,0.14); }
section.cream .spec-cell .val { color: var(--bg); }
section.cream .spec-cell .lbl { color: rgba(26,22,18,0.5); }

/* —— Sub-page hero —— */
.page-hero {
  padding: 120px 0 100px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-hero .crumbs {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 56px;
}
.page-hero .crumbs a { color: var(--ink-3); text-decoration: none; }
.page-hero .crumbs a:hover { color: var(--gold); }
.page-hero .crumbs .sep { color: var(--gold); }
.page-hero h1 { font-size: 128px; max-width: 14ch; font-weight: 800; text-transform: uppercase; }
.page-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: end; padding-top: 32px; }

/* —— Image plates —— */
.plate { position: relative; overflow: hidden; background: var(--bg-3); }
.plate img { width: 100%; height: 100%; object-fit: cover; }

/* —— Coming Summer chip —— */
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 16px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,163,106,0.06);
}
.chip .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* —— Reveal —— */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.9s cubic-bezier(.2,.7,.3,1), transform 0.9s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* —— Audience subnav —— */
.audience-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.audience-nav .inner { display: flex; gap: 0; }
.audience-nav a {
  padding: 22px 36px 22px 0;
  margin-right: 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.18s;
  position: relative;
}
.audience-nav a:hover { color: var(--ink); }
.audience-nav a.current { color: var(--gold); }
.audience-nav a.current::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  height: 1px; width: calc(100% - 36px);
  background: var(--gold);
}

/* —— Two-col —— */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.twocol.image-left { grid-template-columns: 1fr 1.1fr; }

/* —— Steps —— */
.steps { counter-reset: step; }
.step {
  display: grid; grid-template-columns: 90px 1fr; gap: 36px;
  padding: 44px 0; border-top: 1px solid var(--line);
  align-items: baseline;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .num { font-family: var(--serif); font-size: 54px; color: var(--gold); font-weight: 800; letter-spacing: -0.024em; line-height: 1; text-transform: uppercase; }
.step h4 { font-family: var(--serif); font-size: 32px; font-weight: 800; font-style: normal; letter-spacing: -0.014em; margin-bottom: 12px; color: var(--ink); text-transform: uppercase; }
section.cream .step { border-color: rgba(26,22,18,0.14); }
section.cream .step h4 { color: var(--bg); }

/* —— Form —— */
.inquiry { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.field { display: flex; flex-direction: column; gap: 10px; }
.field.wide { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  background: transparent; border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  font: inherit; font-size: 17px;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 300;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); opacity: 0.6; }

/* —— Role list —— */
.role {
  display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 32px;
  padding: 32px 0; border-top: 1px solid var(--line);
  align-items: center;
  text-decoration: none; color: inherit;
  transition: padding 0.25s, background 0.25s;
}
.role:hover { padding-left: 14px; background: linear-gradient(90deg, rgba(201,163,106,0.04), transparent 50%); }
.role:last-of-type { border-bottom: 1px solid var(--line); }
.role .title { font-family: var(--serif); font-size: 26px; color: var(--ink); font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em; }
.role .meta { font-size: 13px; color: var(--ink-3); letter-spacing: 0.06em; }
.role .arr { color: var(--gold); font-size: 20px; }

/* —— Format card —— */
.format-card {
  border: 1px solid var(--line-strong);
  padding: 44px 36px;
  background: var(--bg-2);
  display: flex; flex-direction: column; gap: 18px;
  min-height: 360px;
  transition: border-color 0.25s, background 0.25s;
}
.format-card:hover { border-color: var(--gold); background: var(--bg-3); }
.format-card .ix { font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--gold); }
.format-card h3 { font-size: 30px; }
.format-card .body { color: var(--ink-2); font-size: 14px; line-height: 1.7; flex-grow: 1; }

/* —— Misc —— */
.gold-text { color: var(--gold); }
.italic-serif { font-family: var(--serif); font-style: italic; }

/* Magazine-style drop accent on hero h1 */
.drop-accent {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

/* Pull quote */
.pull {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 64px;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.024em;
  text-transform: uppercase;
}

/* ========================================================================
   RESPONSIVE, tablet + mobile + hamburger nav
   ======================================================================== */

/* Hamburger toggle, hidden on desktop. Checkbox + label pattern. */
.nav-toggle { display: none; }
.hamburger {
  display: none;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 11px;
  border: 1px solid rgba(239, 232, 218, 0.4);
  flex-direction: column;
  justify-content: space-between;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #EFE8DA;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle:checked ~ .hamburger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .hamburger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.nav-toggle:checked ~ .nav-links {
  display: flex !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-width: 100vw !important;
  background: #0E0C0A !important;
  z-index: 9999 !important;
  padding: 96px 24px 32px !important;
  overflow-y: auto !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0 !important;
  border: 0 !important;
  margin: 0 !important;
}
.nav-toggle:checked ~ .nav-links a {
  display: block !important;
  color: #EFE8DA !important;
  font-size: 22px !important;
  letter-spacing: 0.06em !important;
  padding: 20px 8px !important;
  margin: 0 !important;
  border-bottom: 1px solid rgba(239,232,218,0.14) !important;
  font-family: var(--serif) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.nav-toggle:checked ~ .hamburger {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  z-index: 10000 !important;
  background: rgba(14,12,10,0.95) !important;
  border: 1px solid rgba(239,232,218,0.5) !important;
  width: 48px !important;
  height: 48px !important;
  display: flex !important;
}

/* Tablet & small laptop (≤1100px) */
@media (max-width: 1100px) {
  .wrap, .wrap-wide { padding: 0 32px; }
  .nav-inner { height: 72px; }
  .nav-links { gap: 24px; }
  .nav-links a { font-size: 12px; }

  h1, h1.display { font-size: 92px; }
  h2 { font-size: 60px; }
  h3 { font-size: 28px; }

  .page-hero h1 { font-size: 88px; }
  .page-hero-grid { gap: 48px; }
}

/* Tablet (≤900px) */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-inner { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 16px 32px;
    font-size: 16px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a.btn.ghost {
    margin: 12px 32px;
    text-align: center;
    border: 1.5px solid var(--ink);
    padding: 16px 24px;
  }

  h1, h1.display { font-size: 72px; letter-spacing: -0.02em; }
  h2 { font-size: 48px; }
  h3 { font-size: 26px; }
  p.lead { font-size: 18px; }

  .section-head { grid-template-columns: 1fr; gap: 24px; padding-bottom: 36px; margin-bottom: 36px; }
  .section-head h2 { max-width: none; }
  .section-head .right { max-width: none; }
  section { padding: 80px 0; }
  section.tight { padding: 56px 0; }

  .page-hero { padding: 60px 0; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 16px; }
  .page-hero h1 { font-size: 64px; max-width: none; }
  .page-hero .crumbs { margin-bottom: 32px; padding-bottom: 16px; }

  .spec-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .spec-cell { padding: 24px 18px; }
  .spec-cell .val { font-size: 40px; }

  .three-up { grid-template-columns: 1fr; gap: 1px; }
  .three-up .cell { padding: 32px 24px; min-height: auto; }

  .pillar-row { grid-template-columns: 60px 1fr; gap: 20px; padding: 28px 0; }
  .pillar-row p { grid-column: 2; max-width: none; }
  .pillar-row h3 { font-size: 24px; }

  .step { grid-template-columns: 60px 1fr; gap: 16px; padding: 28px 0; }
  .step .num { font-size: 38px; }
  .step h4 { font-size: 22px; }

  /* Force inline-style grid overrides to single column on mobile */
  .twocol[style*="grid-template-columns"],
  section#inquiry .twocol,
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .twocol, .twocol.image-left { grid-template-columns: 1fr; gap: 40px; }
  section .format-card { min-height: auto; padding: 32px 24px; }
  .inquiry { grid-template-columns: 1fr; gap: 16px; }

  .role { grid-template-columns: 1fr auto; gap: 12px; padding: 20px 0; }
  .role .meta { grid-column: 1; font-size: 10px; }
  .role .title { font-size: 18px; }

  .foot-cta { grid-template-columns: 1fr; gap: 36px; padding-bottom: 48px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 36px 0 28px; }
  footer { padding: 64px 0 24px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .marquee { font-size: 28px; gap: 28px; padding: 36px 0; }

  .audience-nav .inner { flex-wrap: wrap; }
  .audience-nav a { padding: 14px 18px 14px 0; margin-right: 18px; }
}

/* Phone (≤640px), much bigger type so it's readable */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap, .wrap-wide { padding: 0 20px; }
  .nav-inner { height: 64px; padding: 8px 0; }
  .wordmark img { height: 28px; }

  h1, h1.display { font-size: 56px; line-height: 1; }
  h2 { font-size: 40px; line-height: 1.04; }
  h3 { font-size: 24px; }
  h4 { font-size: 14px; }
  p.lead, .lead { font-size: 18px !important; line-height: 1.5; max-width: none !important; }
  p, p.body, .body { font-size: 16px !important; line-height: 1.6; }
  p.note, .note { font-size: 14px !important; }
  .eyebrow { font-size: 12px !important; }
  .kicker { font-size: 12px !important; }

  section { padding: 56px 0; }
  section.tight { padding: 40px 0; }

  .page-hero { padding: 48px 0; }
  .page-hero h1 { font-size: 52px; }

  .spec-grid { grid-template-columns: 1fr !important; }
  .spec-cell { padding: 20px 16px; }
  .spec-cell .val { font-size: 32px; }
  .spec-cell .lbl { font-size: 12px !important; }

  .step { grid-template-columns: 48px 1fr; gap: 12px; }
  .step .num { font-size: 28px; }
  .step h4 { font-size: 20px; }

  .pillar-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .pillar-row .idx { font-size: 12px; }
  .pillar-row h3 { font-size: 22px; }

  .btn { padding: 16px 22px; font-size: 13px; letter-spacing: 0.14em; width: 100%; justify-content: center; }
  .ctas, .home-cover .ctas { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }

  .foot-cols { grid-template-columns: 1fr; gap: 32px; }
  .foot-col { padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .foot-col:last-child { border-bottom: none; }
  .foot-col h5 { font-size: 13px !important; }
  .foot-col a { font-size: 15px !important; padding: 6px 0 !important; }

  .marquee { font-size: 22px; gap: 20px; padding: 28px 0; flex-wrap: wrap; justify-content: flex-start; }

  .home-cover { height: auto !important; min-height: 520px; padding: 64px 0 !important; }
  .home-cover .top { margin-bottom: 24px; }
  .home-cover .chip {
    background: rgba(14,12,10,0.7) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-size: 12px !important;
    letter-spacing: 0.18em !important;
    padding: 10px 16px !important;
  }
  .home-cover .mid { margin-top: 28px !important; }
  .home-cover h1 { font-size: 56px !important; max-width: none !important; }
  .home-cover .strap {
    font-size: 19px !important;
    max-width: none !important;
    color: #EFE8DA !important;
    text-shadow: 0 1px 16px rgba(0,0,0,0.6);
    background: rgba(14,12,10,0.55);
    padding: 16px 18px;
    margin-top: 24px !important;
  }
  .home-cover .mid { max-width: none !important; }
  .home-cover .side-meta { display: none !important; }
  .home-cover .bottom { flex-direction: column !important; align-items: stretch !important; gap: 20px !important; }
  .home-cover .bg { background-position: 80% center !important; }
  .home-cover .chip { font-size: 11px !important; }

  .two-ways .head { grid-template-columns: 1fr !important; gap: 24px !important; padding-bottom: 32px !important; }
  .way-grid { grid-template-columns: 1fr !important; }
  .way { padding: 36px 24px !important; border-right: none !important; border-bottom: 1px solid var(--line); min-height: auto !important; }
  .way:last-child { border-bottom: none !important; }
  .way h3 { font-size: 40px !important; }
  .way .desc { font-size: 18px !important; }
  .way .bullets li { font-size: 15px !important; }

  .app-show { padding: 72px 0 56px !important; }
  .app-show .copy-row { grid-template-columns: 1fr !important; gap: 24px !important; padding-bottom: 24px !important; }
  .app-show .copy-row h2 { font-size: 48px !important; }
  .app-show .copy-row .lead { font-size: 19px !important; }
  .phones { grid-template-columns: 1fr !important; gap: 36px !important; }
  .phones .ph, .phones .ph.center { max-width: 220px !important; }
  .phones .ph .cap { font-size: 12px !important; }
  .app-features { grid-template-columns: 1fr !important; }
  .app-features .feat { border-right: none !important; border-bottom: 1px solid var(--line); padding: 24px 16px !important; }
  .app-features .feat:last-child { border-bottom: none; }
  .app-features .ix { font-size: 12px !important; }
  .app-features h4 { font-size: 15px !important; }
  .app-features p { font-size: 14px !important; }

  .city-banner { padding: 56px 0 !important; }
  .city-banner .inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .city-banner h2 { font-size: 44px !important; }
  .city-banner .city-row { grid-template-columns: 36px 1fr; gap: 12px !important; padding: 14px 0 !important; }
  .city-banner .city-row .name { font-size: 22px !important; }
  .city-banner .city-row .status { grid-column: 1 / -1; justify-self: start; font-size: 11px; padding: 6px 12px; }

  .items-strip .top { flex-direction: column; align-items: start; gap: 16px; margin-bottom: 28px; }

  .page-hero .crumbs { font-size: 11px; letter-spacing: 0.18em; }
}
