@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,300;1,400;1,600;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&family=Space+Mono&display=swap');
/* ── WordPress Full-Width Fix ────────────────── */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100% !important; width: 100% !important; }
#page, #content, #main, .site, .site-content { max-width: 100% !important; width: 100% !important; padding: 0 !important; margin: 0 !important; }
.hero-slider, .hero { width: 100vw !important; max-width: 100vw !important; margin-left: 0 !important; margin-right: 0 !important; position: relative !important; left: 0 !important; }
.hs-track { width: 100% !important; height: 100% !important; }
.hs-slide { width: 100% !important; height: 100% !important; }
.hs-bg { width: 100% !important; height: 100% !important; }



/* ── Design Tokens ──────────────────────────────── */
:root {
  --dc-c1:#e8192c; --dc-c2:#1a56e8; --dc-c3:#f5c800; --dc-c4:#1dc840;
  --dc-c5:#ff6200; --dc-c6:#a800d4; --dc-c7:#00b8c8; --dc-c8:#94a3b8;
  --dc-corp:#2563eb; --dc-corp-dark:#1d4ed8; --dc-corp-light:rgba(37,99,235,.12);
  --dc-ink:#000000; --dc-paper:#f4f6f9; --dc-card:#0a0a0a; --dc-panel:#0d0d0d;
  --dc-muted:rgba(244,246,249,.45); --dc-ghost:rgba(244,246,249,.08);
  --dc-rule:rgba(244,246,249,.08); --dc-accent:#2563eb;
  --dc-font-serif:'Barlow Condensed',sans-serif;
  --dc-font-sans:'DM Sans',system-ui,sans-serif;
  --dc-font-mono:'Space Mono','Courier New',monospace;
  --dc-font-logo:'Poppins',sans-serif;
  --dc-gutter:60px; --dc-cap:1340px; --dc-nav-h:68px;
  /* Short aliases */
  --c1:#e8192c; --c2:#1a56e8; --c3:#f5c800; --c4:#1dc840;
  --c5:#ff6200; --c6:#a800d4; --c7:#00b8c8; --c8:#94a3b8;
  --ink:#000000; --paper:#f4f6f9; --card:#0a0a0a; --panel:#0d0d0d;
  --muted:rgba(244,246,249,.45); --ghost:rgba(244,246,249,.08);
  --rule:rgba(244,246,249,.08); --corp:#2563eb; --corp-dark:#1d4ed8;
  --gutter:60px; --cap:1340px; --nav-h:68px; --accent:#2563eb;
  --serif:'Barlow Condensed',sans-serif;
  --sans:'DM Sans',system-ui,sans-serif;
  --mono:'Space Mono','Courier New',monospace;
  --logo:'Poppins',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;scroll-padding-top:var(--dc-nav-h)}
img,video{max-width:100%;height:auto;display:block}
a{text-decoration:none !important;color:inherit}

/* ── Global link underline removal ──────────── */
a {
  text-decoration: none !important;
}
/* Only restore underline inside editorial post content where it aids reading */
.dc-post-content a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

ul{list-style:none}

body{
  background-color:#000;
  color:var(--dc-paper);
  font-family:var(--dc-font-sans);
  font-weight:300;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  cursor:auto;
}
/* pure black bg — no overlay needed */
body>*{position:relative;z-index:1;}

/* ── Cursor ──────────────────────────────────── */
.cursor-dot{
  display:none !important;
}

/* ── Layout ──────────────────────────────────── */
.inner{max-width:var(--dc-cap);margin:0 auto;padding:0 var(--dc-gutter)}

/* ── NAV ─────────────────────────────────────── */
nav.dc-nav{
  position:fixed;top:0;left:0;right:0;
  height:var(--dc-nav-h);z-index:800;
  background:rgba(10,12,16,.96);
  backdrop-filter:blur(24px);
  border-bottom:1px solid rgba(244,246,249,.08);
}
.nav-inner{
  max-width:var(--dc-cap);margin:0 auto;
  padding:0 var(--dc-gutter);height:100%;
  display:flex;align-items:center;justify-content:space-between;gap:32px;
}

/* Prevent nav overflow on mobile */
.nav-logo{max-width:calc(100vw - 120px);overflow:hidden;}
.nav-logo{display:flex;align-items:center;gap:0;flex-shrink:0}
.logo-dot{
  font-family:var(--dc-font-logo);
  font-size:20px;
  font-weight:800;
  color:var(--dc-accent);
  transition:color .4s ease;
  line-height:1;
}
.nav-logo .logo-word { font-family: var(--dc-font-logo) !important; font-weight: 800; }
.logo-word{
  font-family:var(--dc-font-logo) !important;font-size:20px;font-weight:800;
  color:var(--dc-paper);letter-spacing:-.02em;
}

.nav-menu{display:flex;gap:32px;flex:1;justify-content:center}
.nav-menu a{
  font-family:var(--dc-font-mono);font-size:10px;font-weight:400;
  letter-spacing:.14em;text-transform:uppercase;color:rgba(244,246,249,.9);transition:color .2s;
}
.nav-menu a:hover{color:var(--dc-paper)}
.nav-cta{
  font-family:var(--dc-font-sans);font-size:13px;font-weight:600;
  color:#fff;background:transparent;
  border:1px solid rgba(244,246,249,.5);
  padding:9px 20px;border-radius:6px;
  transition:all .2s;flex-shrink:0;
}
.nav-cta:hover{border-color:#fff;color:#fff;background:rgba(255,255,255,.08)}

/* ── HERO — VIDEO ────────────────────────────── */
.hero{
  position:relative;height:82vh;min-height:580px;
  display:flex;flex-direction:column;justify-content:flex-end;
  overflow:hidden;
}

.hero-bg{
  position:absolute;top: 0; right: 0; bottom: 0; left: 0;z-index:0;
  background-size:cover;background-position:center;background-repeat:no-repeat;
}
.hero-grad{
  position:absolute;top: 0; right: 0; bottom: 0; left: 0;z-index:1;
  background:linear-gradient(to top,rgba(0,0,0,.85) 0%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.2) 100%);
}
.hero-video-wrap{
  position:absolute;top: 0; right: 0; bottom: 0; left: 0;z-index:0;
  background:#000;
}
.hero-video-wrap video{
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.42) saturate(1.1);
}
/* Fallback poster shows as placeholder */
.hero-video-wrap::after{
  content:'';position:absolute;top: 0; right: 0; bottom: 0; left: 0;
  background:
    linear-gradient(to top,rgba(10,12,16,1) 0%,rgba(10,12,16,.25) 55%,transparent 100%);
}
.hero-topbar{
  position:absolute;top:var(--dc-nav-h);left:0;right:0;z-index:2;
}
.hero-topbar-inner{
  max-width:var(--dc-cap);margin:0 auto;
  padding:26px var(--dc-gutter);
  display:flex;align-items:center;justify-content:space-between;
}
.hero-badge{
  display:flex;align-items:center;gap:9px;
  font-family:var(--dc-font-mono);font-size:9px;
  letter-spacing:.2em;text-transform:uppercase;
  color:rgba(244,246,249,.44);
  animation:fadeIn .8s .5s both;
}
.pip{width:6px;height:6px;border-radius:50%;background:var(--dc-c4);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero-count{
  font-family:var(--dc-font-mono);font-size:9px;
  letter-spacing:.15em;text-transform:uppercase;
  color:var(--dc-ghost);animation:fadeIn .8s .7s both;
}
.hero-body{
  position:relative;z-index:2;z-index:2;
  max-width:var(--dc-cap);margin:0 auto;width:100%;
  padding:0 var(--dc-gutter) 72px;
}
.hero-eyebrow{
  font-family:var(--dc-font-mono);font-size:9px;
  letter-spacing:.25em;text-transform:uppercase;
  color:rgba(244,246,249,.38);margin-bottom:22px;
  animation:slideUp .7s .55s both;
}
.hero-h1{
  font-family:var(--dc-font-serif);font-weight:600;
  font-size:clamp(72px,10vw,160px);
  line-height:.86;letter-spacing:-.01em;
  margin-bottom:28px;animation:slideUp .85s .7s both;
}
.hero-h1 em{font-style:italic;font-weight:400}
.hero-sub{
  font-size:15px;line-height:1.72;
  color:rgba(244,246,249,.56);
  max-width:460px;font-weight:300;
  margin-bottom:44px;animation:slideUp .85s .85s both;
}
.hero-actions{
  display:flex;align-items:center;gap:14px;
  animation:slideUp .85s 1s both;
}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--dc-font-sans);font-size:14px;font-weight:600;
  padding:12px 26px;border-radius:6px;
  cursor:pointer;transition:background .2s,opacity .2s,transform .15s;
}
.btn:hover{transform:translateY(-1px)}
.btn-white{background:var(--dc-paper);color:var(--dc-ink)}
.btn-white:hover{opacity:.9}
.btn-outline{background:transparent;color:var(--dc-muted);border:1px solid rgba(244,246,249,.2)}
.btn-outline:hover{color:var(--dc-paper);border-color:rgba(244,246,249,.45)}
.btn-primary{background:var(--dc-corp);color:#fff}
.btn-primary:hover{background:var(--dc-corp-dark)}
.hero-scroll{
  position:absolute;right:var(--dc-gutter);bottom:72px;z-index:2;
  display:flex;flex-direction:column;align-items:center;gap:10px;
  font-family:var(--dc-font-mono);font-size:7px;letter-spacing:.22em;
  text-transform:uppercase;color:rgba(244,246,249,.22);
}
.hero-scroll-line{width:1px;height:46px;background:linear-gradient(to bottom,rgba(244,246,249,.28),transparent)}

/* Video mute toggle */
.hero-mute{
  position:absolute;right:var(--dc-gutter);top:calc(var(--dc-nav-h) + 26px);z-index:3;
  width:36px;height:36px;border-radius:50%;
  background:rgba(255,255,255,.1);backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .2s;
}
.hero-mute:hover{background:rgba(255,255,255,.2)}
.hero-mute svg{width:14px;height:14px;stroke:#fff;fill:none;stroke-width:1.5}

/* ════════════════════════════════════════════════
   MOBILE MENU OVERLAY
   ════════════════════════════════════════════════ */
.dc-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  padding: calc(var(--dc-nav-h) + 24px) 24px 40px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* Hidden state — use transform+opacity so transition works without display toggle */
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.dc-mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}
.dc-mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.dc-mobile-menu__list li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dc-mobile-menu__list a {
  display: block;
  padding: 20px 0;
  font-family: var(--dc-font-serif);
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: -0.02em;
  text-decoration: none;
  line-height: 1;
}
.dc-mobile-menu__list a:hover,
.dc-mobile-menu__list a:focus {
  color: #fff;
}
.dc-mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 24px;
  background: #fff;
  color: #000;
  font-family: var(--dc-font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  margin-top: 8px;
}


/* ════════════════════════════════════════════════
   HERO IMAGE SLIDER
   ════════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 82vh;
  min-height: 580px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}
.hs-track {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hs-slide {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  z-index: 1;
  pointer-events: none;
}
.hs-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
.hs-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-filter: brightness(0.38) saturate(1.1);
  filter: brightness(0.38) saturate(1.1);
  display: block;
}
.hs-grad {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.9)), color-stop(50%, rgba(0,0,0,0.4)), to(rgba(0,0,0,0.15)));
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
}
.hs-city-tag {
  position: absolute;
  bottom: 110px;
  right: 40px;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 6px;
  opacity: 0;
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
  -webkit-transition: opacity 0.6s 0.3s ease, -webkit-transform 0.6s 0.3s ease;
  transition: opacity 0.6s 0.3s ease, transform 0.6s 0.3s ease;
}
.hs-slide.is-active .hs-city-tag {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.hs-city-abbr {
  font-family: var(--dc-font-serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 0.85;
  color: var(--slide-col, #fff);
  letter-spacing: -0.02em;
}
.hs-city-sep {
  display: block;
  width: 2px;
  height: 32px;
  background: var(--slide-col, #fff);
  opacity: 0.5;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.hs-city-name {
  font-family: var(--dc-font-mono);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,246,249,0.5);
}
.hs-content {
  position: relative;
  z-index: 5;
  max-width: var(--dc-cap);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--dc-gutter) 100px;
}
.hs-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
}
.hs-prev, .hs-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hs-prev:hover, .hs-next:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
}
.hs-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.hs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: background 0.3s, width 0.3s, border-radius 0.3s;
  transition: background 0.3s, width 0.3s, border-radius 0.3s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hs-dot.is-active {
  background: var(--dot-col, #fff);
  width: 20px;
  border-radius: 3px;
}
.hs-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  z-index: 6;
}
.hs-progress-bar {
  height: 100%;
  width: 0%;
  background: #fff;
}
.hero-slider .hero-topbar {
  position: absolute;
  top: var(--dc-nav-h);
  left: 0;
  right: 0;
  z-index: 6;
}
.hero-slider .hero-scroll {
  position: absolute;
  right: var(--dc-gutter);
  bottom: 80px;
  z-index: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-family: var(--dc-font-mono);
  font-size: 7px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,246,249,0.22);
}
@media (max-width: 768px) {
  .hero-slider { height: 72vh; min-height: 460px; }
  .hs-content  { padding-bottom: 80px; }
  .hs-city-tag { bottom: 80px; right: 18px; }
  .hs-city-abbr { font-size: clamp(28px, 8vw, 48px); }
  .hs-city-sep  { height: 22px; }
  .hs-controls  { bottom: 12px; gap: 10px; }
  .hs-prev, .hs-next { width: 32px; height: 32px; }
  .hs-dot { width: 5px; height: 5px; }
  .hs-dot.is-active { width: 14px; }
  .hero-slider .hero-scroll { display: none; }
}

/* ── TICKER ──────────────────────────────────── */
.ticker{
  overflow:hidden;background:#000;
  border-top:1px solid rgba(255,255,255,.1);
  padding:16px 0;
  margin-bottom:0;
}
.ticker-track{
  display:flex;width:max-content;
  animation:ticker 22s linear infinite;
}
.ticker-item{
  display:flex;align-items:center;gap:20px;padding:0 22px;
  white-space:nowrap;font-family:var(--dc-font-serif);
  font-size:15px;font-style:italic;
  color:rgba(244,246,249,.55);
}
.ticker-sep{width:5px;height:5px;border-radius:50%;flex-shrink:0}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── CITIES SECTION — INVERTED ───────────────── */
.cities-section{background:#fff;color:#0a0c10}
.cities-header{
  padding:92px var(--dc-gutter) 48px;
  max-width:var(--dc-cap);margin:0 auto;
  display:flex;align-items:flex-end;justify-content:space-between;gap:60px;
}
.eyebrow{
  display:flex;align-items:center;gap:12px;margin-bottom:12px;
}
.eyebrow-line{width:32px;height:1px;background:rgba(10,12,16,.2)}
.eyebrow-text{
  font-family:var(--dc-font-mono);font-size:8px;
  letter-spacing:.2em;text-transform:uppercase;
  color:rgba(10,12,16,.4);
}
.section-title{
  font-family:var(--dc-font-serif);
  font-size:clamp(42px,6vw,88px);
  font-weight:600;line-height:.9;
  letter-spacing:-.02em;
  color:#0a0c10;
}
.section-title em{font-style:italic;font-weight:300}
.section-aside{
  font-size:14px;line-height:1.75;
  color:rgba(10,12,16,.5);
  max-width:280px;font-weight:300;
  padding-bottom:8px;
}

/* Cities Grid — 4×4 uniform */
.cities-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:2px;background:#000;
}
.city-cell{
  position:relative;overflow:hidden;
  background:#000;aspect-ratio:1/1;cursor:pointer;
}
.city-photo{
  position:absolute;top: 0; right: 0; bottom: 0; left: 0;
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.6) saturate(1.1);
  transition:transform .7s ease,filter .6s ease;
}
.city-cell:hover .city-photo{transform:scale(1.06);filter:brightness(.35) saturate(1.3)}
.city-grad{
  position:absolute;top: 0; right: 0; bottom: 0; left: 0;
  background:linear-gradient(to top,rgba(0,0,0,.92) 0%,rgba(0,0,0,.1) 55%,transparent 100%);
}
.city-glow{position:absolute;top: 0; right: 0; bottom: 0; left: 0;opacity:0;transition:opacity .5s}
.city-cell:hover .city-glow{opacity:1}
.city-frame{
  position:absolute;top: 0; right: 0; bottom: 0; left: 0;
  border:1px solid rgba(255,255,255,.07);
  transition:border-color .4s;
}
.city-cell:hover .city-frame{border-color:rgba(255,255,255,.22)}
.city-body{
  position:absolute;bottom:0;left:0;right:0;
  padding:20px 22px 26px;
}
.city-mascot{
  font-family:var(--dc-font-mono);font-size:8px;
  letter-spacing:.15em;text-transform:uppercase;
  color:rgba(255,255,255,.3);margin-bottom:4px;
  transform:translateY(8px);transition:transform .35s,color .35s;
}
.city-cell:hover .city-mascot{transform:translateY(0);color:rgba(255,255,255,.7)}
.city-abbr{
  font-family:var(--dc-font-serif);font-weight:600;font-size:clamp(18px,2.4vw,28px);
  line-height:1;color:#fff;
  text-shadow:0 2px 30px rgba(0,0,0,.8);
  letter-spacing:-.01em;
}
.city-name{
  font-family:var(--dc-font-mono);font-size:8px;
  letter-spacing:.18em;text-transform:uppercase;
  color:rgba(255,255,255,.45);margin-top:3px;
}
/* ── APP FEATURES SECTION ────────────────────── */
.app-section{
  background:#000;
  padding:120px 0;
}
.app-header{
  max-width:var(--dc-cap);margin:0 auto;
  padding:0 var(--dc-gutter);
  display:grid;grid-template-columns:1fr 1fr;
  gap:80px;align-items:end;
  margin-bottom:72px;
}
.app-title{
  font-family:var(--dc-font-serif);
  font-size:clamp(48px,6vw,92px);
  font-weight:600;line-height:.88;
  letter-spacing:-.025em;
}
.app-title em{font-style:italic;font-weight:300}
.app-desc{
  font-size:16px;line-height:1.78;
  color:rgba(244,246,249,.5);
  max-width:380px;font-weight:300;
  padding-bottom:4px;
}

/* App UI card grid */
.app-grid{
  max-width:var(--dc-cap);margin:0 auto;
  padding:0 var(--dc-gutter);
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:auto auto;
  gap:2px;
  background:rgba(255,255,255,.06);
}
/* Feature card — phone mockup style */
.app-card{
  background:#0a0a0a;
  padding:36px 32px;
  position:relative;overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
  transition:border-color .3s,background .3s;
}
.app-card:hover{background:#111;border-color:rgba(255,255,255,.14)}

/* Large card spans 2 columns */
.app-card--wide{grid-column:span 2}
.app-card--tall{grid-row:span 2}

/* Phone screen mockup inside card */
.phone-dot-row{
  display:flex;gap:5px;align-items:center;
  margin-bottom:6px;
}
.phone-dot{width:7px;height:7px;border-radius:50%;flex-shrink:0}
.phone-text-line{
  height:8px;border-radius:4px;
  background:rgba(255,255,255,.08);
  margin-bottom:5px;
}

/* Feature label + title in card */
.card-num{
  font-family:var(--dc-font-serif);font-size:72px;font-weight:900;
  font-style:italic;opacity:.04;
  position:absolute;top:8px;right:16px;line-height:1;
  color:var(--dc-paper);
}
.card-icon{font-size:32px;margin-bottom:20px;display:block}
.card-label{
  font-family:var(--dc-font-mono);font-size:8px;
  letter-spacing:.22em;text-transform:uppercase;
  color:rgba(244,246,249,.35);margin-bottom:10px;
}
.card-title{
  font-family:var(--dc-font-serif);font-size:22px;
  font-weight:600;line-height:1.1;
  color:#fff;margin-bottom:12px;
}
.card-body{
  font-size:13px;line-height:1.8;
  color:rgba(244,246,249,.4);font-weight:300;
}
.card-top-bar{
  height:2px;position:absolute;top:0;left:0;right:0;
}
/* App stats row */
.app-stat-row{
  display:flex;gap:0;background:rgba(255,255,255,.03);
  border-radius:12px;overflow:hidden;margin-top:20px;
}
.app-stat{
  flex:1;padding:14px 16px;text-align:center;
  border-right:1px solid rgba(255,255,255,.06);
}
.app-stat:last-child{border-right:none}
.app-stat-n{
  font-family:var(--dc-font-logo);font-size:20px;font-weight:700;
  line-height:1;margin-bottom:3px;
}
.app-stat-l{font-size:10px;color:rgba(255,255,255,.3);font-family:var(--dc-font-mono)}

/* CTA strip inside app section */
.app-cta-strip{
  max-width:var(--dc-cap);margin:52px auto 0;
  padding:0 var(--dc-gutter);
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.app-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(37,99,235,.14);
  color:#60a5fa;border-radius:100px;
  padding:6px 14px;
  font-size:11px;font-weight:600;letter-spacing:.04em;
  font-family:var(--dc-font-sans);
}
.app-badge::before{content:'●';font-size:8px}

/* ── SPLIT SECTIONS ──────────────────────────── */
.split{display:grid;grid-template-columns:1fr 1fr;min-height:540px}
.split-photo{position:relative;overflow:hidden;background:#000}
.split-photo img{
  position:absolute;top: 0; right: 0; bottom: 0; left: 0;
  width:100%;height:100%;object-fit:cover;
  filter:brightness(.58);
  transition:transform .8s ease;
}
.split:hover .split-photo img{transform:scale(1.03)}
.split-shade{position:absolute;top: 0; right: 0; bottom: 0; left: 0;background:linear-gradient(120deg,rgba(10,12,16,.6) 0%,transparent 65%)}
.split-copy{
  padding:72px 64px;
  display:flex;flex-direction:column;justify-content:center;
  background:#0d0d0d;
}
.split-copy-black{background:var(--dc-ink)}
.split-copy--white{
  background:#fff;
}
.split-copy--white .split-h{color:#000}
.split-copy--white .split-h em{color:#111}
.split-copy--white .split-p{color:rgba(0,0,0,.62)}
.split-copy--white .eyebrow-line-dark{background:rgba(0,0,0,.15)}
.split-copy--white .eyebrow-text-dark{color:rgba(0,0,0,.38)}
.split-copy--white .btn-white{background:#000;color:#fff}
.split-copy--white .btn-white:hover{opacity:.82}
.split-h{
  font-family:var(--dc-font-serif);
  font-size:clamp(30px,3.5vw,52px);
  font-weight:600;line-height:1;
  letter-spacing:-.02em;margin:14px 0 22px;
}
.split-h em{font-style:italic;font-weight:400}
.split-p{
  font-size:14px;line-height:1.82;
  color:var(--dc-muted);max-width:380px;font-weight:300;
}
.split-p+.split-p{margin-top:16px}
.eyebrow-dark{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.eyebrow-line-dark{width:32px;height:1px;background:rgba(244,246,249,.15)}
.eyebrow-text-dark{
  font-family:var(--dc-font-mono);font-size:8px;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--dc-muted);
}

/* ── LATEST POSTS ────────────────────────────── */
.editorial-section{padding:108px 0;background:#000}
.archive-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;background:#000;margin-top:52px}
.post-card{background:#0a0a0a;overflow:hidden;transition:background .3s}
.post-card:hover{background:#111}
.post-card-img{aspect-ratio:16/9;overflow:hidden;position:relative}
.post-card-img img{width:100%;height:100%;object-fit:cover;filter:brightness(.7);transition:transform .6s,filter .5s}
.post-card:hover .post-card-img img{transform:scale(1.04);filter:brightness(.55)}
.post-card-body{padding:22px 24px 28px}
.post-card-city{
  display:flex;align-items:center;gap:6px;
  font-family:var(--dc-font-mono);font-size:7px;
  letter-spacing:.2em;text-transform:uppercase;
  color:var(--dc-muted);margin-bottom:8px;
}
.post-card-dot{width:5px;height:5px;border-radius:50%;flex-shrink:0}
.post-card-title{
  font-family:var(--dc-font-serif);font-size:20px;
  font-weight:600;line-height:1.15;
  color:var(--dc-paper);margin-bottom:8px;
}
.post-card-excerpt{
  font-size:12px;line-height:1.72;
  color:rgba(244,246,249,.38);font-weight:300;
}
.post-card-foot{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:16px;
  font-family:var(--dc-font-mono);font-size:7px;
  letter-spacing:.12em;text-transform:uppercase;
  color:rgba(244,246,249,.22);
}

/* ── STATEMENT ───────────────────────────────── */
.statement{
  position:relative;height:540px;overflow:hidden;
  display:flex;align-items:center;justify-content:center;text-align:center;
}
.statement-bg{
  position:absolute;top: 0; right: 0; bottom: 0; left: 0;background-size:cover;background-position:center;
  filter:brightness(.28);
}
.statement-shade{position:absolute;top: 0; right: 0; bottom: 0; left: 0;background:rgba(10,12,16,.42)}
.statement-body{position:relative;z-index:2;padding:0 var(--dc-gutter);max-width:820px}
.statement-q{
  font-family:var(--dc-font-serif);
  font-size:clamp(26px,4vw,58px);
  font-weight:600;line-height:1.06;letter-spacing:-.02em;
}
.statement-q em{font-style:italic;font-weight:400}
.statement-attr{
  margin-top:20px;font-family:var(--dc-font-mono);
  font-size:8px;letter-spacing:.22em;text-transform:uppercase;
  color:var(--dc-ghost);
}

/* ── FOOTER ──────────────────────────────────── */
footer{background:#000;border-top:1px solid var(--dc-rule)}
/* footer-main and footer-grid defined below in component CSS */
.footer-logo{
  display:flex;align-items:center;gap:0;
  font-family:var(--dc-font-logo);font-size:26px;font-weight:800;
  color:var(--dc-paper);text-decoration:none;
  letter-spacing:-.02em;margin-bottom:13px;
}
.footer-tag{
  font-size:12px;line-height:1.7;
  color:rgba(244,246,249,.28);max-width:210px;
  font-weight:300;margin-bottom:22px;
}
.footer-soc{display:flex;gap:8px}
.footer-soc a{
  width:30px;height:30px;border:1px solid rgba(244,246,249,.1);
  display:flex;align-items:center;justify-content:center;
  transition:border-color .2s;font-size:12px;
}
.footer-col h4{
  font-family:var(--dc-font-mono);font-size:7px;
  letter-spacing:.22em;text-transform:uppercase;
  color:rgba(244,246,249,.2);margin-bottom:16px;
}
.footer-col ul{display:flex;flex-direction:column;gap:8px}
.footer-col a{font-size:12px;color:rgba(244,246,249,.26);font-weight:300;transition:color .2s}
.footer-col a:hover{color:var(--dc-paper)}
.footer-bottom{
  padding:20px 0;
  display:flex;justify-content:space-between;align-items:center;gap:20px;
}
.footer-copy{
  font-family:var(--dc-font-mono);font-size:8px;
  letter-spacing:.1em;color:rgba(244,246,249,.14);
}
/* ── Animations ──────────────────────────────── */
@keyframes slideUp{from{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.reveal{opacity:0;transform:translateY(20px);transition:opacity .65s ease,transform .65s ease}
.reveal.visible,.reveal.vis{opacity:1;transform:translateY(0)}
.no-js .reveal{opacity:1;transform:none}

/* ── Section head shared ─────────────────────── */
.sec-head{
  display:flex;align-items:flex-end;justify-content:space-between;gap:60px;
  border-bottom:1px solid var(--dc-rule);padding-bottom:36px;margin-bottom:0;
}
.sec-head-dark{border-bottom-color:rgba(10,12,16,.1)}
.sec-title{
  font-family:var(--dc-font-serif);
  font-size:clamp(42px,6vw,88px);
  font-weight:600;line-height:.9;letter-spacing:-.025em;
}
.sec-title em{font-style:italic;font-weight:300}
.sec-title--stroke em{
  -webkit-text-stroke:1.5px var(--dc-paper);
  color:transparent;
}
.sec-aside{
  font-size:14px;line-height:1.75;
  color:var(--dc-muted);max-width:280px;
  font-weight:300;padding-bottom:8px;
}

/* ── Hamburger (hidden desktop, shown mobile) ── */
.dc-nav__hamburger,
.nav-hamburger {
  display: none;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: none; border: none;
  color: var(--dc-paper); cursor: pointer;
  flex-shrink: 0; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.dc-nav__hamburger svg,
.nav-hamburger svg { pointer-events: none; }

/* ── Tablet (≤1024px) ─────────────────────────────── */
@media (max-width: 1024px) {
  /* Nav */
  .nav-menu, .dc-nav__menu { display: none; }
  .nav-cta,  .dc-nav__cta  { display: none; }
  .nav-hamburger, .dc-nav__hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }

  /* Hero */
  .hero-h1 { font-size: clamp(52px, 8vw, 82px); }

  /* Cities — 4 cols at tablet too, just let it shrink */
  .cities-grid { grid-template-columns: repeat(4, 1fr); }

  /* App grid — 2 col */
  .app-grid { grid-template-columns: 1fr 1fr; }
  .app-card--wide { grid-column: span 2; }
  .app-card--tall { grid-row: span 1; }
  /* Splits */
  .split { grid-template-columns: 1fr 1fr; min-height: 440px; }

  /* Archive */
  .archive-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ── Mobile (≤768px) ──────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --dc-gutter: 18px;
    --dc-nav-h:  58px;
  }

  /* Prevent horizontal overflow everywhere */
  html, body { overflow-x: hidden; max-width: 100vw; }
  * { box-sizing: border-box; }

  /* Cursor */
  body { cursor: auto; }
  .cursor-dot { display: none !important; }

  /* ── Nav ── */
  .nav-inner { padding: 0 18px; height: var(--dc-nav-h); }
  .logo-word  { font-size: 17px; }
  .nav-hamburger, .dc-nav__hamburger { display: flex; width: 44px; height: 44px; }
  .nav-cta, .dc-nav__cta, .nav-menu, .dc-nav__menu { display: none; }
  /* ── Hero ── */
  .hero { height: 72vh; min-height: 480px; }
  .hero-body {
    padding: calc(var(--dc-nav-h) + 40px) 18px 60px;
    justify-content: flex-end;
  }
  .hero-h1 {
    font-size: clamp(38px, 11vw, 60px);
    line-height: .92; letter-spacing: -.025em;
    max-width: 100%;
  }
  .hero-eyebrow { font-size: 10px; margin-bottom: 14px; }
  .hero-sub { font-size: 14px; line-height: 1.6; max-width: 100%; margin-top: 14px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-top: 24px; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; min-height: 50px; font-size: 13px; }
  .hero-topbar { display: none; }
  .hero-scroll  { display: none; }

  /* ── Ticker ── */
  .ticker { padding: 10px 0; overflow: hidden; }
  .ticker-item { font-size: 12px; letter-spacing: .06em; padding: 0 14px; gap: 12px; }
  .ticker-sep  { width: 4px; height: 4px; }

  /* ── Cities section ── */
  .cities-section { background: #fff; overflow: hidden; }
  .cities-header {
    flex-direction: column; gap: 14px; align-items: flex-start;
    padding: 48px 18px 28px;
  }
  .section-title {
    font-size: clamp(32px, 9vw, 52px);
    line-height: .88; letter-spacing: -.02em;
  }
  .section-aside { max-width: 100%; font-size: 13px; padding-bottom: 0; }
  .eyebrow-text  { font-size: 7px; }

  /* Cities grid — 2×4 on mobile */
  .cities-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .city-cell   { aspect-ratio: 3/4; min-height: 180px; }
  .city-abbr   { font-size: clamp(14px, 3.5vw, 20px) !important; letter-spacing: -.01em; }
  .city-name   { font-size: 12px !important; font-weight: 600; }
  .city-body   { padding: 14px 12px; }

  /* ── Splits ── */
  .splits-section { display: block; }
  .split {
    display: flex; flex-direction: column;
    min-height: unset;
  }
  .split-photo         { order: 1; height: 260px; min-height: unset; }
  .split-photo img     { width: 100%; height: 100%; object-fit: cover; }
  .split-copy          { order: 2; padding: 44px 18px; }
  .split-copy--white   { padding: 44px 18px; }
  .split-copy-black    { padding: 44px 18px; }
  .split-h { font-size: clamp(28px, 8vw, 44px); line-height: .92; }
  .split-p { font-size: 14px; line-height: 1.68; }
  .eyebrow-line-dark   { width: 24px; }
  .eyebrow-text-dark   { font-size: 7px; }

  /* ── App section ── */
  .app-section { padding: 64px 0; }
  .app-header {
    grid-template-columns: 1fr;
    gap: 24px; align-items: flex-start;
    padding: 0 18px 36px;
    margin-bottom: 0;
  }
  .app-title { font-size: clamp(32px, 9vw, 56px); line-height: .9; }
  .app-desc  { font-size: 14px; line-height: 1.68; max-width: 100%; }
  .app-stat-row { flex-wrap: wrap; gap: 0; margin-top: 20px !important; }
  .app-stat { min-width: 80px; padding: 12px 16px; }
  .app-stat-n { font-size: 20px !important; }
  .app-stat-l { font-size: 9px !important; }

  /* App grid single column */
  .app-grid {
    grid-template-columns: 1fr;
    gap: 1px; padding: 0;
    background: rgba(255,255,255,.06);
  }
  .app-card--wide { grid-column: span 1; }
  .app-card--tall { grid-row: span 1; }
  .app-card { border-radius: 0; padding: 28px 18px; border-left: none; border-right: none; border-top: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .card-num   { font-size: 10px; margin-bottom: 14px; }
  .card-label { font-size: 9px; letter-spacing: .14em; margin-bottom: 6px; }
  .card-title { font-size: clamp(20px, 5vw, 28px); line-height: .95; margin-bottom: 10px; }
  .card-body  { font-size: 13px; line-height: 1.65; }
  /* Force wide-card inner grids to stack */
  .app-card [style*="grid-template-columns"] { display: block !important; }
  /* Hide data-viz mini elements on mobile */
  .app-card > div[style*="flex-direction:column"][style*="gap:4px"],
  .app-card > div[style*="flex-direction:column"][style*="gap:6px"],
  .app-card > div[style*="flex-direction:column"][style*="gap:10px"] { margin-top: 16px; }

  /* ── Editorial ── */
  .editorial-section { padding: 56px 0; overflow: hidden; }
  .editorial-section .inner > div:first-child {
    flex-direction: column; align-items: flex-start; gap: 18px;
  }
  .sec-title { font-size: clamp(28px, 8vw, 44px); }
  .archive-grid { grid-template-columns: 1fr; margin-top: 24px; }
  .post-card-title   { font-size: 16px; line-height: 1.3; }
  .post-card-excerpt { display: none; }

  /* ── Statement ── */
  .statement { height: auto; min-height: 360px; padding: 80px 18px; }
  .statement-q {
    font-size: clamp(20px, 5.5vw, 32px);
    line-height: 1.15; max-width: 100%;
  }
  .statement-attr { font-size: 10px; margin-top: 20px; }

  /* ── Footer ── */
  .footer-inner { padding: 0 18px; }
  .footer-grid  { grid-template-columns: 1fr; gap: 0; }
  .footer-main  { padding: 48px 0 32px; }
  .footer-logo  { font-size: 20px; }
  .footer-tagline { font-size: 12px; max-width: 100%; }
  .footer-dots  { gap: 6px; margin-top: 16px; }
  .footer-dot   { width: 7px; height: 7px; }
  .footer-cols  { display: none; }
  .footer-bottom {
    flex-direction: column-reverse; gap: 14px;
    text-align: center; padding: 18px 0;
    font-size: 10px;
  }
  /* ── Global utils ── */
  .inner { padding-left: 18px; padding-right: 18px; }
  .btn   { min-height: 48px; padding: 13px 20px; font-size: 12px; letter-spacing: .06em; }
  .btn:active { opacity: .75; transform: scale(.98); }
}

/* ── Small phones (≤390px) ──────────────────── */
@media (max-width: 390px) {
  :root { --dc-gutter: 14px; --dc-nav-h: 54px; }

  .hero-h1     { font-size: clamp(32px, 10vw, 44px); }
  .hero-sub    { font-size: 13px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .city-cell   { min-height: 160px; }
  .city-abbr   { font-size: clamp(12px, 3vw, 17px) !important; }
  .app-card    { padding: 22px 14px; }
  .app-title   { font-size: clamp(28px, 10vw, 40px); }
  .statement-q { font-size: clamp(18px, 5vw, 26px); }
  .inner       { padding-left: 14px; padding-right: 14px; }
  .nav-inner   { padding: 0 14px; }
}

/* ── Touch / hover:none ─────────────────────── */
@media (hover: none) {
  .city-cell:hover .city-photo  { transform: none; filter: brightness(.32) saturate(1.1); }
  .city-cell:hover .city-glow   { opacity: .65; }
  .city-cell:hover .city-frame  { border-color: rgba(255,255,255,.1); }
  .city-cell:hover .city-mascot { transform: translateY(4px); }
  .split:hover .split-photo img { transform: none; }
  .post-card:hover .post-card-img img { transform: none; }
  .app-card:hover { background: #0a0a0a; border-color: rgba(255,255,255,.08); }
  .nav-hamburger, .dc-nav__hamburger { width: 44px; height: 44px; }
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
  .city-cell { cursor: pointer; }
}

/* ── Hamburger → X animation ────────────────── */
.dc-nav__hamburger.is-active path:nth-child(1),
.nav-hamburger.is-active path:nth-child(1) { transform: translateY(6px) rotate(45deg); transform-origin: center; }
.dc-nav__hamburger.is-active path:nth-child(2),
.nav-hamburger.is-active path:nth-child(2) { opacity: 0; }
.dc-nav__hamburger.is-active path:nth-child(3),
.nav-hamburger.is-active path:nth-child(3) { transform: translateY(-6px) rotate(-45deg); transform-origin: center; }
.dc-nav__hamburger path, .nav-hamburger path { transition: transform .22s ease, opacity .22s ease; }

/* ── Prevent scroll when menu open (no position:fixed to avoid iOS scroll jump) ── */
body.menu-open { overflow: hidden; }

/* ── Safe area insets (iPhone notch/home bar) ─── */
@supports (padding: max(0px)) {
  .dc-nav { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
  .hero-body { padding-bottom: max(80px, calc(80px + env(safe-area-inset-bottom))); }
  footer { padding-bottom: max(0px, env(safe-area-inset-bottom)); }
}

/* ── Prevent text size adjust on rotation ─────── */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* ── Tap highlight ────────────────────────────── */
a, button { -webkit-tap-highlight-color: transparent; }

/* ── Smooth scrolling ─────────────────────────── */
html { scroll-behavior: smooth; scroll-padding-top: var(--dc-nav-h); }

/* ── Image optimisation ───────────────────────── */
img { max-width: 100%; height: auto; display: block; }

/* ── Performance ─────────────────────────────────────────────── */
/* Reduce layout recalc on heavy sections */
.cities-grid, .app-grid, .splits-section { content-visibility: auto; contain-intrinsic-size: 0 600px; }

/* Hardware-accelerate the hero slider */
.hs-track, .hs-slide, .hs-bg { will-change: transform; }
.hs-bg { transform: translateZ(0); }

/* Improve tap targets on all interactive elements */
@media (hover: none) {
  .dc-btn, .nav-menu a, .dc-faq-q, .city-cell { min-height: 44px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
  .hs-progress-bar { transition: none; }
}

/* Focus styles for keyboard navigation */
:focus-visible {
  outline: 2px solid var(--dc-corp);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Print styles — hide decorative elements */
@media print {
  .dc-nav, .ticker, .hs-controls, .hs-progress, .hero-scroll, .hero-topbar,
  .dc-mobile-menu, .statement-bg { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ── Nav scroll behaviour ─────────────────────── */
nav.dc-nav {
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}
nav.dc-nav.is-scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}
nav.dc-nav.is-hidden {
  transform: translateY(-100%);
}
nav.dc-nav.is-visible-scrolled {
  transform: translateY(0);
}

/* ── Hero tagline crossfade ───────────────────── */
#hsTagline {
  transition: opacity .16s ease;
}

/* ── City cell hover state ────────────────────── */
.city-cell {
  cursor: pointer;
  transition: opacity .2s ease;
}
.city-cell:hover { opacity: .88; }
.city-cell:hover .city-photo { filter: brightness(.85) saturate(1.2) !important; }

/* ── Scroll restore — prevents flash on back nav ─ */
html { scroll-behavior: auto; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ══════════════════════════════════════════════════════════
   COMPONENT SYSTEM — classes used across all page templates
   These were missing entirely from the stylesheet.
══════════════════════════════════════════════════════════ */

/* ── Layout containers ───────────────────────── */
.dc-inner {
  max-width: var(--dc-cap);
  margin: 0 auto;
  padding: 0 var(--dc-gutter);
}
.dc-sec {
  padding: 100px 0;
}

/* ── Section title ───────────────────────────── */
.dc-title {
  font-family: var(--dc-font-serif);
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.015em;
}
.dc-title em {
  font-style: italic;
  font-weight: 400;
}

/* ── Eyebrow label ───────────────────────────── */
.dc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--dc-font-mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dc-muted);
  margin-bottom: 20px;
}
.dc-eyebrow__line {
  width: 28px;
  height: 1px;
  background: var(--dc-muted);
  opacity: .4;
}

/* ── Scroll reveal ───────────────────────────── */
.dc-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.dc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .dc-reveal { opacity: 1; transform: none; transition: none; }
}

/* ── Buttons — dc-btn system ─────────────────── */
.dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--dc-font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .12s ease, opacity .18s ease;
  white-space: nowrap;
}
.dc-btn:hover { transform: translateY(-1px); }
.dc-btn:active { transform: scale(.98); }

.dc-btn--primary {
  background: var(--dc-corp);
  color: #fff;
  border-color: var(--dc-corp);
}
.dc-btn--primary:hover { background: var(--dc-corp-dark); border-color: var(--dc-corp-dark); }

.dc-btn--outline {
  background: transparent;
  color: var(--dc-muted);
  border-color: rgba(244,246,249,.2);
}
.dc-btn--outline:hover { color: var(--dc-paper); border-color: rgba(244,246,249,.5); }

.dc-btn--white {
  background: var(--dc-paper);
  color: var(--dc-ink);
  border-color: var(--dc-paper);
}
.dc-btn--white:hover { opacity: .88; }

.dc-btn--lg { font-size: 15px; padding: 15px 30px; }
.dc-btn--sm { font-size: 12px; padding: 9px 16px; }

/* ── Badges ──────────────────────────────────── */
.dc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--dc-font-mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
  border: 1px solid;
}
.dc-badge--blue   { color: var(--dc-corp); border-color: rgba(37,99,235,.35); background: rgba(37,99,235,.08); }
.dc-badge--green  { color: #1dc840; border-color: rgba(29,200,64,.35); background: rgba(29,200,64,.08); }
.dc-badge--neutral { color: var(--dc-muted); border-color: var(--dc-rule); background: transparent; }

/* ── Chip / pill tag ─────────────────────────── */
.dc-chip {
  display: inline-block;
  font-family: var(--dc-font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dc-muted);
  padding: 4px 10px;
  border: 1px solid var(--dc-rule);
  border-radius: 20px;
  background: transparent;
}
.dc-pill {
  display: inline-block;
  padding: 5px 14px;
  background: var(--dc-ghost);
  border: 1px solid var(--dc-rule);
  border-radius: 20px;
  font-size: 12px;
  color: var(--dc-muted);
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.dc-pill:hover { color: var(--dc-paper); border-color: rgba(244,246,249,.3); }
.dc-pills { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Post card ───────────────────────────────── */
.dc-card {
  background: var(--dc-card);
  border: 1px solid var(--dc-rule);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
  display: flex;
  flex-direction: column;
}
.dc-card:hover {
  border-color: rgba(244,246,249,.2);
  transform: translateY(-3px);
}
.dc-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #111;
}
.dc-card__thumb img,
.dc-card__thumb .dc-card__fallback { width: 100%; height: 100%; }
.dc-card__thumb img { object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.dc-card:hover .dc-card__thumb img { transform: scale(1.04); filter: brightness(.85); }
.dc-card__fallback { position: relative; overflow: hidden; }
.dc-card__fallback img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dc-card__fallback-glow { position: absolute; inset: 0; }
.dc-card__fallback-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.dc-card__fallback-abbr {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: var(--dc-font-serif);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.dc-card__body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dc-card__cat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--dc-font-mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.dc-card__cat-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.dc-card__title {
  font-family: var(--dc-font-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
  flex: 1;
}
.dc-card__title a { color: var(--dc-paper); text-decoration: none; }
.dc-card__title a:hover { opacity: .78; }
.dc-card__excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--dc-muted);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dc-card__meta {
  font-family: var(--dc-font-mono);
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,246,249,.3);
  margin-top: auto;
}

/* ── Post page layout ────────────────────────── */
.dc-post-header {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--dc-rule);
}
.dc-post-header__cat {
  font-family: var(--dc-font-mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.dc-post-header__title {
  font-family: var(--dc-font-serif);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.02em;
  max-width: 860px;
}
.dc-post-header__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--dc-font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dc-muted);
  margin-top: 28px;
}
.dc-post-header__feat {
  max-height: 520px;
  overflow: hidden;
}
.dc-post-header__feat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.88);
}

/* ── Post content typography ─────────────────── */
.dc-post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px var(--dc-gutter) 80px;
  font-size: 17px;
  line-height: 1.82;
  color: rgba(244,246,249,.82);
}
.dc-post-content h2 {
  font-family: var(--dc-font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dc-paper);
  margin: 52px 0 18px;
}
.dc-post-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dc-paper);
  margin: 36px 0 14px;
}
.dc-post-content p { margin-bottom: 24px; }
.dc-post-content a { color: var(--dc-corp); text-decoration: underline; text-underline-offset: 3px; }
.dc-post-content a:hover { opacity: .8; }
.dc-post-content strong { font-weight: 600; color: var(--dc-paper); }
.dc-post-content ul, .dc-post-content ol { margin: 0 0 24px 24px; }
.dc-post-content li { margin-bottom: 8px; }
.dc-post-content blockquote {
  border-left: 3px solid var(--dc-corp);
  margin: 36px 0;
  padding: 6px 0 6px 24px;
  font-family: var(--dc-font-serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: rgba(244,246,249,.7);
  line-height: 1.5;
}
.dc-post-content img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 32px 0;
}
.dc-post-content figure { margin: 32px 0; }
.dc-post-content figcaption {
  font-size: 12px;
  color: var(--dc-muted);
  text-align: center;
  margin-top: 10px;
}

/* ── FAQ component ───────────────────────────── */
.dc-faq-list {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.dc-faq-item {
  border-bottom: 1px solid var(--dc-rule);
}
.dc-faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--dc-paper);
  font-family: var(--dc-font-sans);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.dc-faq-q:hover { color: rgba(244,246,249,.75); }
.dc-faq-q svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 1.5;
  fill: none; flex-shrink: 0;
  transition: transform .25s ease;
}
.dc-faq-item.open .dc-faq-q svg { transform: rotate(45deg); }
.dc-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.dc-faq-item.open .dc-faq-a { max-height: 600px; }
.dc-faq-ap {
  font-size: 14px;
  line-height: 1.8;
  color: var(--dc-muted);
  padding-bottom: 22px;
}

/* ── Split sections ──────────────────────────── */
.splits-section { background: var(--dc-paper); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-photo {
  position: relative;
  overflow: hidden;
}
.split-photo img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-shade {
  position: absolute; inset: 0;
  background: linear-gradient(270deg,rgba(0,0,0,.52) 0%,transparent 65%);
}
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.split-copy--white { background: #fff; color: #0a0a0a; }
.split-copy-black  { background: #0a0a0a; color: var(--dc-paper); }
.split-h {
  font-family: var(--dc-font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: .95;
  margin-bottom: 24px;
}
.split-h em { font-style: italic; font-weight: 400; }
.split-p {
  font-size: 15px;
  line-height: 1.82;
  color: inherit;
  opacity: .7;
  margin-bottom: 16px;
}
.split-copy--white .split-p { color: rgba(10,10,10,.65); opacity: 1; }
.eyebrow-dark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow-line-dark { width: 24px; height: 1px; background: rgba(10,10,10,.2); }
.eyebrow-text-dark {
  font-family: var(--dc-font-mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(10,10,10,.38);
}
.split-copy-black .eyebrow-line-dark { background: rgba(244,246,249,.2); }
.split-copy-black .eyebrow-text-dark { color: rgba(244,246,249,.38); }

/* ── Statement section ───────────────────────── */
.statement {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.statement-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.32) saturate(1.2);
}
.statement-shade {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.48);
}
.statement-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 var(--dc-gutter);
}
.statement-q {
  font-family: var(--dc-font-serif);
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  color: rgba(244,246,249,.9);
  margin-bottom: 24px;
}
.statement-q em { font-style: normal; font-weight: 700; }
.statement-attr {
  font-family: var(--dc-font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,246,249,.35);
}

/* ── Comments ────────────────────────────────── */
.dc-comments {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--dc-gutter) 80px;
}

/* ── Archive/index grid ──────────────────────── */
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
@media (max-width: 1024px) { .archive-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px)  { .archive-grid { grid-template-columns: 1fr; } }

/* ── Mobile responsive additions ────────────── */
@media (max-width: 768px) {
  .dc-sec { padding: 64px 0; }
  .dc-title { font-size: clamp(32px, 10vw, 52px); }
  .split { grid-template-columns: 1fr; min-height: unset; }
  .split-photo { height: 260px; }
  .split-copy, .split-copy--white, .split-copy-black { padding: 48px 18px; }
  .statement { height: auto; padding: 80px 18px; }
  .dc-post-content { font-size: 16px; padding: 48px 18px 64px; }
  .dc-post-header__title { font-size: clamp(28px, 8vw, 44px); }
  .dc-card__title { font-size: 18px; }
}

/* ── FAQ section wrapper ─────────────────────── */
.dc-faq { max-width: 100%; }


/* ── Footer city links ───────────────────────── */
.footer-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}
.footer-cities .fdom,
.footer-cities a {
  font-family: var(--dc-font-mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(244,246,249,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-cities a:hover { color: rgba(244,246,249,.65); }

/* ── Skip link (accessibility) ───────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 9999;
  background: var(--dc-corp);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 6px 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── City body class colour accents ─────────── */
.city-lon .dc-card__cat-dot,
.city-lon .dc-card__cat { color: #e8192c; }
.city-mcr .dc-card__cat-dot,
.city-mcr .dc-card__cat { color: #1a56e8; }
.city-bhm .dc-card__cat-dot,
.city-bhm .dc-card__cat { color: #f5c800; }
.city-lds .dc-card__cat-dot,
.city-lds .dc-card__cat { color: #1dc840; }
.city-lpl .dc-card__cat-dot,
.city-lpl .dc-card__cat { color: #ff6200; }
.city-shf .dc-card__cat-dot,
.city-shf .dc-card__cat { color: #a800d4; }
.city-ncl .dc-card__cat-dot,
.city-ncl .dc-card__cat { color: #00b8c8; }
.city-brs .dc-card__cat-dot,
.city-brs .dc-card__cat { color: #2A9D8F; }

/* ── Pagination ──────────────────────────────── */
.dc-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--dc-rule);
  margin-top: 64px;
}
.dc-pagination a {
  font-family: var(--dc-font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dc-muted);
  text-decoration: none;
  transition: color .2s;
}
.dc-pagination a:hover { color: var(--dc-paper); }

/* ── Search form ─────────────────────────────── */
.dc-search-form {
  display: flex;
  gap: 0;
  max-width: 480px;
}
.dc-search-form input[type="search"] {
  flex: 1;
  background: var(--dc-card);
  border: 1px solid var(--dc-rule);
  border-right: 0;
  color: var(--dc-paper);
  font-family: var(--dc-font-sans);
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 6px 0 0 6px;
  outline: none;
  transition: border-color .2s;
}
.dc-search-form input[type="search"]:focus {
  border-color: var(--dc-corp);
}
.dc-search-form button {
  background: var(--dc-corp);
  border: none;
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 14px;
  transition: background .2s;
}
.dc-search-form button:hover { background: var(--dc-corp-dark); }

/* ── WP block alignment support ─────────────── */
.alignwide  { margin-left: calc(-1 * var(--dc-gutter)); margin-right: calc(-1 * var(--dc-gutter)); }
.alignfull  { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); width: 100vw; max-width: 100vw; }
.wp-block-image.alignfull img { width: 100vw; max-width: 100vw; }

/* ── WP block editor compatibility ──────────── */
.wp-block-separator { border-color: var(--dc-rule); margin: 40px 0; }
.wp-block-quote {
  border-left: 3px solid var(--dc-corp);
  padding-left: 24px;
  font-style: italic;
  color: rgba(244,246,249,.7);
}
.wp-block-code {
  background: var(--dc-card);
  border: 1px solid var(--dc-rule);
  border-radius: 4px;
  padding: 16px 20px;
  font-family: var(--dc-font-mono);
  font-size: 13px;
  overflow-x: auto;
}

/* ── Gutenberg disabled notice ───────────────── */
.dotcity-classic-notice {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  border-radius: 0 4px 4px 0;
}

/* ══════════════════════════════════════════════════════════
   PAGE TEMPLATE MOBILE — collapses all inline grids
   All page-templates use inline style grids. These rules
   override them to single column on mobile.
══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Universal inline grid collapse for page templates */
  .dc-inner > div[style*="grid-template-columns"],
  .dc-inner > section[style*="grid-template-columns"],
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns:1fr 2fr"],
  div[style*="grid-template-columns:2fr 1fr"],
  div[style*="grid-template-columns:1fr 1fr;"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="gap:120px"],
  div[style*="gap:100px"],
  div[style*="gap:80px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  /* Repeating grids (stats, values, packages, team) → 2 col on mobile */
  div[style*="grid-template-columns:repeat(3"],
  div[style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Packages → single column (too wide for 2 col) */
  div[style*="grid-template-columns:repeat(4,1fr)"][style*="background:#000"] {
    grid-template-columns: 1fr !important;
  }

  /* FAQ sticky nav → hide on mobile */
  div[style*="position:sticky"] { display: none !important; }
  div[style*="grid-template-columns:200px"] {
    display: block !important;
  }
  div[style*="grid-template-columns:200px"] + div {
    width: 100%;
  }

  /* Cities page rows → stack */
  div[style*="grid-template-columns:380px"],
  div[style*="grid-template-columns:340px"] {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Press coverage grid */
  div[style*="grid-template-columns:140px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  /* Timeline grid items → stack */
  div[style*="grid-template-columns:120px"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }

  /* Section padding reduction on mobile */
  section[style*="padding:120px"] { padding: 64px 0 !important; }
  section[style*="padding:100px"] { padding: 56px 0 !important; }
  section[style*="padding:120px 0 100px"] { padding: 64px 0 !important; }
  section[style*="padding:120px 0 80px"]  { padding: 64px 0 !important; }

  /* Card grids → 2 col on mobile */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Team photos → smaller on mobile */
  div[style*="aspect-ratio:3/4"] {
    aspect-ratio: 1/1 !important;
  }

  /* Newsletter mock preview → hide on mobile */
  div[style*="border-radius:12px"][style*="overflow:hidden"] {
    display: none;
  }

  /* Contact grid → stack */
  div[style*="gap:100px"][style*="align-items:start"] {
    flex-direction: column;
    gap: 40px;
  }

  /* Cities page image panel */
  div[style*="min-height:280px"],
  div[style*="min-height:260px"] {
    min-height: 220px !important;
  }

  /* Advertise stats grid → 2 col */
  div[style*="grid-template-columns:1fr 1fr"][style*="background:#000"] {
    grid-template-columns: repeat(2, 1fr) !important;
    display: grid !important;
  }

  /* DC inner padding */
  .dc-inner { padding: 0 18px; }
  .dc-sec { padding: 56px 0; }
  .dc-title { font-size: clamp(32px, 10vw, 48px) !important; }

  /* dc-btn full width on mobile */
  section[style*="text-align:center"] .dc-btn {
    width: 100%;
    justify-content: center;
  }
  div[style*="display:flex"][style*="gap:14px"] {
    flex-direction: column;
  }
  div[style*="display:flex"][style*="gap:12px"][style*="flex-wrap:wrap"] {
    flex-direction: column;
  }

  /* Post header */
  .dc-post-header { padding: 48px 0 32px; }
  .dc-post-header__title { font-size: clamp(28px, 8vw, 44px); }

  /* Curators grid → 2 col */
  div[style*="grid-template-columns:repeat(4,1fr)"][style*="background:#000"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  /* Very small phones → single column for 2-col grids */
  div[style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:1fr 1fr"][style*="background:#000"] {
    grid-template-columns: 1fr !important;
    display: grid !important;
  }
}

/* ── Footer wrapper ──────────────────────────── */
.dc-footer {
  border-top: 1px solid var(--dc-rule);
  background: #000;
}
.footer-main {
  padding: 80px 0 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
}
.footer-tag {
  font-size: 13px;
  color: var(--dc-muted);
  margin-top: 8px;
}
.footer-copy {
  font-family: var(--dc-font-mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: rgba(244,246,249,.25);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--dc-rule);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-main { padding: 48px 0 32px; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 16px 0;
  }
}

/* ── Post pagination nav ─────────────────────── */
.dc-post-content__pages {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--dc-rule);
}
.dc-post-content__pages a,
.dc-post-content__pages span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--dc-rule);
  border-radius: 4px;
  font-size: 13px;
  color: var(--dc-muted);
  transition: border-color .2s, color .2s;
}
.dc-post-content__pages a:hover { color: var(--dc-paper); border-color: rgba(244,246,249,.3); }

/* ── Ensure stray hero elements don't show on non-homepage pages ── */
.pip:not(.hero-slider .pip):not(.hero .pip) {
  display: none !important;
}
