@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────── */
:root {
  --black:      #111110;
  --dark:       #1a1a18;
  --dark2:      #222220;
  --cream:      #F5F3EE;
  --cream2:     #EDEAE3;
  --white:      #FAFAF8;
  --gold:       #C9B97A;
  --gold-dk:    #A8963F;
  --text:       #1a1a18;
  --text-md:    #555550;
  --text-lt:    #888880;
  --border-lt:  #E2DED5;
  --border-dk:  rgba(255,255,255,0.1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--text); font-family: var(--font-sans); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ──────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: block;
  margin-bottom: 0.85rem;
}
.eyebrow-lt { color: var(--gold); }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }

.display { font-size: clamp(3rem, 6vw, 5rem); color: var(--white); }
.display em { font-style: italic; color: var(--gold); }

.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 1rem; }
.section-title.lt { color: var(--white); }

.section-sub { font-size: 1rem; color: var(--text-md); line-height: 1.75; max-width: 560px; }
.section-sub.lt { color: rgba(255,255,255,0.6); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 2rem; cursor: pointer; border: none; transition: all 0.25s;
}
.btn-gold  { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-dk); color: var(--white); }
.btn-dark  { background: var(--dark); color: var(--white); border: 1px solid var(--dark); }
.btn-dark:hover { background: var(--dark2); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dk { background: transparent; color: var(--text); border: 1px solid var(--border-lt); }
.btn-outline-dk:hover { border-color: var(--gold-dk); color: var(--gold-dk); }

/* ── NAV ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(17,17,16,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-dk);
}
.nav-logo img { height: 52px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 2.25rem; list-style: none; }
.nav-links > li > a {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); transition: color 0.2s; position: relative;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a[role="button"] { cursor: default; }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px; background: var(--dark); border: 1px solid var(--border-dk);
  padding: 1.25rem 0 0.5rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-item:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 0.6rem 1.25rem;
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); white-space: nowrap; transition: color 0.15s;
}
.nav-dropdown a:hover { color: var(--gold); }
.nav-chevron { font-size: 0.5rem; margin-left: 0.2em; opacity: 0.6; display: inline-block; transition: transform 0.2s; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

.nav-cta {
  font-family: var(--font-sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 1.25rem; background: var(--gold); color: var(--black);
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dk); color: var(--white); }

/* Mobile */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 66px); background: var(--dark);
  display: flex; align-items: flex-end; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
}
.hero-slide.active { opacity: 1; }
.hero-transitions .hero-slide { transition: opacity 1.3s ease-in-out; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,9,0.78) 0%, rgba(18,17,11,0.62) 60%, rgba(10,10,9,0.78) 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    linear-gradient(rgba(201,185,122,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,185,122,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-content {
  position: relative; z-index: 3; padding: 0 6% 3rem; max-width: 820px; width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
  margin-top: 0.6rem;
}
.hero-tag::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
.hero h1 { font-size: clamp(2rem, 3.4vw, 3.2rem); color: var(--white); margin-bottom: 0.9rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 520px; margin-bottom: 1.25rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  background: var(--gold); padding: 2.5rem 6%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat-item { text-align: center; color: var(--black); }
.stat-num { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 600; display: block; line-height: 1; margin-bottom: 0.35rem; }
.stat-label { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.65; }

/* ── SECTIONS ────────────────────────────────── */
.section      { padding: 2.25rem 6%; }
.section-sm   { padding: 1.25rem 6%; }
.section-dark { background: var(--dark); }
.section-cream { background: var(--cream); }
.section-cream2 { background: var(--cream2); }

.section-header { margin-bottom: 1.5rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }

/* ── SERVICES GRID ───────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-dk); border: 1px solid var(--border-dk); margin-top: 2rem; }
.service-card { background: var(--dark2); padding: 1.75rem; transition: background 0.25s; }
.service-card:hover { background: #2a2a28; }
.service-num { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.service-card h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ── CASE STUDY CARDS ────────────────────────── */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.work-card { background: var(--white); border: 1px solid var(--border-lt); overflow: hidden; transition: box-shadow 0.25s, transform 0.25s; cursor: pointer; }
.work-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-3px); }
.work-card-img { width: 100%; height: 190px; display: flex; align-items: center; justify-content: center; font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.work-card-body { padding: 1.5rem; }
.work-tag { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 0.5rem; display: block; }
.work-card h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; line-height: 1.2; }
.work-card p { font-size: 0.82rem; color: var(--text-md); line-height: 1.65; }

/* ── LOGO WALL ───────────────────────────────── */
.logo-wall { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--border-lt); border: 1px solid var(--border-lt); margin-top: 3rem; }
.logo-item { background: var(--white); padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: center; min-height: 70px; transition: background 0.2s; }
.logo-item:hover { background: var(--cream); }
.logo-item img { max-width: 130px; max-height: 52px; width: auto; height: auto; object-fit: contain; opacity: 0.75; transition: opacity 0.2s; }
.logo-item:hover img { opacity: 1; }

/* ── HERO INLINE STATS ───────────────────────── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0.9rem 0 1.25rem;
  flex-wrap: wrap;
  row-gap: 0.75rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 1.75rem;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.hero-stat-lbl {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.hero-stat-div {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── CASE STUDY PRESS SECTION ───────────────── */
.cs-press-inline {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-lt);
}
.cs-press-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 1.25rem;
}
.cs-press-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cs-press-list li {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-lt);
}
.cs-press-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cs-press-list a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.cs-press-list a:hover { color: var(--gold-dk); }
.press-pub {
  color: var(--text-lt);
  font-size: 0.78rem;
}

/* ── LOGO MARQUEE ───────────────────────────── */
.logo-marquee-wrap {
  overflow: hidden;
  background: var(--cream2);
  border-top: 1px solid var(--border-lt);
  padding: 0.55rem 0;
  cursor: grab;
  user-select: none;
}
.logo-marquee-wrap.dragging {
  cursor: grabbing;
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.logo-marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-marquee-item img {
  max-width: 110px;
  max-height: 38px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
}

/* ── TEAM ────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 1rem; }
.team-card { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; border-top: 1px solid var(--border-lt); padding-top: 1.75rem; align-items: start; }
.team-photo { width: 200px; height: 250px; overflow: hidden; background: var(--cream2); flex-shrink: 0; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--text); margin-bottom: 0.25rem; }
.team-role { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dk); display: block; margin-bottom: 1rem; }
.team-info p { font-size: 0.85rem; color: var(--text-md); line-height: 1.8; margin-bottom: 0.75rem; }
.team-edu { font-size: 0.75rem; color: var(--text-lt); border-top: 1px solid var(--border-lt); padding-top: 0.75rem; margin-top: 0.25rem; }

/* ── PRINCIPLES ──────────────────────────────── */
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-lt); border: 1px solid var(--border-lt); margin-top: 3rem; }
.principle-item { background: var(--white); padding: 1.5rem; }
.principle-num { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 0.85rem; display: block; }
.principle-item h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--text); margin-bottom: 0.6rem; }
.principle-item p { font-size: 0.85rem; color: var(--text-md); line-height: 1.75; }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero { padding: calc(72px + 1rem) 6% 1.5rem; background: var(--dark); position: relative; overflow: hidden; border-bottom: 1px solid var(--border-dk); }
.page-hero::before { content: ''; position: absolute; top: -40%; right: -5%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,185,122,0.07) 0%, transparent 65%); pointer-events: none; }
.page-hero-tag { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.page-hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); display: block; }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; color: var(--white); max-width: 680px; margin-bottom: 1.25rem; }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.55); max-width: 520px; line-height: 1.8; }

/* ── CALLOUT ─────────────────────────────────── */
.callout { background: var(--dark); padding: 2.75rem 6%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.callout h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 400; color: var(--white); max-width: 600px; }
.callout h2 span { font-style: italic; color: var(--gold); }

/* ── CONTACT ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3.5rem; margin-top: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 0.85rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-md); }
.form-group input, .form-group select, .form-group textarea { background: var(--cream); border: 1px solid var(--border-lt); color: var(--text); padding: 0.8rem 1rem; font-family: var(--font-sans); font-size: 0.9rem; outline: none; transition: border-color 0.2s; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-dk); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── NEWS ────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.news-card { border-top: 2px solid var(--border-lt); padding-top: 1.5rem; transition: border-color 0.2s; }
.news-card:hover { border-color: var(--gold-dk); }
.news-date { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; color: var(--gold-dk); text-transform: uppercase; margin-bottom: 0.6rem; display: block; }
.news-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; color: var(--text); margin-bottom: 0.5rem; line-height: 1.3; }
.news-card p { font-size: 0.83rem; color: var(--text-md); line-height: 1.7; }
.news-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.85rem; font-family: var(--font-sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dk); transition: gap 0.2s; }
.news-link:hover { gap: 0.7rem; }

/* ── FOOTER ──────────────────────────────────── */
.footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 3rem 6% 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 4rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.35); line-height: 1.75; margin-top: 1.25rem; max-width: 260px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a { font-size: 0.83rem; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 2rem; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: rgba(255,255,255,0.4); font-family: var(--font-sans); font-weight: 600; transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── MARQUEE ─────────────────────────────────── */
.marquee-wrap { overflow: hidden; background: var(--cream2); border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt); padding: 1rem 0; }
.marquee-track { display: flex; gap: 3rem; animation: marquee 35s linear infinite; white-space: nowrap; }
.marquee-item { font-family: var(--font-sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-lt); display: flex; align-items: center; gap: 1.5rem; }
.marquee-item::after { content: '·'; color: var(--gold-dk); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── DIVIDER ─────────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--border-lt); }

/* ── UTILITIES ───────────────────────────────── */
.text-gold { color: var(--gold-dk); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .section { padding: 2.25rem 6%; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .callout { flex-direction: column; }
  .principles-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-content { max-width: 100%; padding: 0 6% 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 2rem 6%; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* Mobile-style nav: triggers on narrow screens AND on any touch device
   (e.g. a phone in landscape, which can be wider than 768px but still
   can't use the hover-based dropdown below) */
@media (max-width: 768px), (hover: none) and (pointer: coarse) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; height: calc(100vh - 72px); height: calc(100dvh - 72px); background: rgba(17,17,16,0.98); backdrop-filter: blur(12px); padding: 0.9rem 6% 1rem; gap: 0.55rem; align-items: flex-start; z-index: 999; overflow-y: auto; }
  .nav-links.open > li { width: 100%; }
  .nav-links.open > li > a { font-size: 0.92rem; }
  .nav-item > a[role="button"] { cursor: pointer; }
  .nav-links.open .nav-item .nav-dropdown,
  .nav-links.open .nav-item:hover .nav-dropdown {
    position: static !important; transform: none !important;
    opacity: 1 !important; pointer-events: auto !important;
    display: none;
    background: transparent; border: none;
    padding: 0.25rem 0 0 1.1rem; margin-top: 0.15rem;
    min-width: 0; width: 100%; box-sizing: border-box;
  }
  .nav-links.open .nav-item.open .nav-dropdown { display: flex !important; flex-direction: column; gap: 0.12rem; }
  .nav-item.open .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown a { padding: 0.22rem 0; font-size: 0.72rem; white-space: normal; }
}

.nav-dropdown--wide { min-width: 270px; }

/* ── LARGE SCREEN / TV ────────────────────────── */
@media (min-width: 1600px) {
  html { font-size: 17.5px; }
  body { font-size: 16px; }
  .nav { padding: 0 3%; }
  .section { padding: 3rem 3%; }
  .section-sm { padding: 1.75rem 3%; }
  .hero-content { max-width: 1200px; padding: 0 3% 3rem; }
  .hero-sub { max-width: 700px; }
  .page-hero { padding: calc(72px + 1.5rem) 3% 2rem; }
  .page-hero h1 { max-width: 1000px; }
  .page-hero p { max-width: 700px; }
  .callout { padding: 3.5rem 3%; }
  .footer { padding: 3.5rem 3% 2.5rem; }
}

@media (min-width: 1920px) {
  html { font-size: 19px; }
  body { font-size: 17px; }
  .nav { padding: 0 2%; }
  .section { padding: 3.5rem 2%; }
  .section-sm { padding: 2rem 2%; }
  .hero-content { max-width: 1600px; padding: 0 2% 3rem; }
  .hero-sub { max-width: 820px; }
  .page-hero { padding: calc(72px + 2rem) 2% 2.5rem; }
  .page-hero h1 { max-width: 1200px; }
  .page-hero p { max-width: 820px; }
  .callout { padding: 4rem 2%; }
  .footer { padding: 4rem 2% 3rem; }
}
