/* ═══════════════════════════════════════════════════════════
   DINERO MEDIA — SHARED DESIGN SYSTEM
   Font: Plus Jakarta Sans | Theme: Dark Cinematic
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:            #0C0C0C;
  --bg-alt:        #141414;
  --bg-card:       #1C1C1C;
  --bg-card-hover: #232323;
  --text:          #F5F5F5;
  --text-mid:      #8A8A8A;
  --text-dim:      #484848;
  --accent:        #E0A03A;
  --accent-dim:    rgba(224,160,58,.12);
  --accent-glow:   rgba(224,160,58,.22);
  --accent-border: rgba(224,160,58,.3);
  --border:        rgba(255,255,255,.08);
  --border-mid:    rgba(255,255,255,.14);
  --font:          'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --ease:          cubic-bezier(.16,1,.3,1);
  --max-w:         1200px;
  --pad:           clamp(24px, 5vw, 80px);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; cursor: none; }
video { display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: none; border: none; background: none; }

/* ── CUSTOM CURSOR ──────────────────────────────────────── */
#dm-cursor {
  position: fixed;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease), opacity .3s;
  will-change: left, top;
}
#dm-cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(224,160,58,.45);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .35s var(--ease), height .35s var(--ease), border-color .25s, opacity .4s;
  will-change: left, top;
}
body.c-hover #dm-cursor { width: 5px; height: 5px; }
body.c-hover #dm-cursor-ring { width: 46px; height: 46px; border-color: var(--accent); }

/* ── FILM GRAIN ─────────────────────────────────────────── */
#dm-grain {
  position: fixed; inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainAnim .45s steps(1) infinite;
}
@keyframes grainAnim {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-4px, 3px); }
  40%  { transform: translate(3px,-4px); }
  60%  { transform: translate(-3px,-2px); }
  80%  { transform: translate(4px, 2px); }
  100% { transform: translate(-1px, 4px); }
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, #D4923A, #EAB040, #E0A03A);
  box-shadow: 0 0 10px rgba(224,160,58,.6), 0 0 20px rgba(224,160,58,.3);
  z-index: 9997;
  pointer-events: none;
  transition: width .08s linear;
}

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(55px);
  filter: blur(6px);
  transition: opacity .75s var(--ease), transform .75s var(--ease), filter .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Slide from left + blur */
.reveal-left {
  opacity: 0;
  transform: translateX(-120px) skewX(4deg);
  filter: blur(10px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1), filter .9s var(--ease);
}
.reveal-left.visible { opacity: 1; transform: translateX(0) skewX(0deg); filter: blur(0); }

/* Slide from right + blur */
.reveal-right {
  opacity: 0;
  transform: translateX(120px) skewX(-4deg);
  filter: blur(10px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1), filter .9s var(--ease);
}
.reveal-right.visible { opacity: 1; transform: translateX(0) skewX(0deg); filter: blur(0); }

/* Scale up + blur */
.reveal-scale {
  opacity: 0;
  transform: scale(.88) translateY(28px);
  filter: blur(5px);
  transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease);
}
.reveal-scale.visible { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }

/* Pure blur in */
.reveal-blur {
  opacity: 0;
  filter: blur(16px);
  transition: opacity 1s var(--ease), filter 1s var(--ease);
}
.reveal-blur.visible { opacity: 1; filter: blur(0); }

/* Word split (IntersectionObserver triggered) */
.split-words .sw {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), filter .5s var(--ease);
}
.split-words.visible .sw { opacity: 1; transform: translateY(0); filter: blur(0); }

/* ── SCROLL TEXT (sticky word reveal) ──────────────────── */
.scroll-text-section {
  height: 300vh;
  position: relative;
  background: var(--bg);
}
.scroll-text-sticky {
  position: sticky;
  top: 0; height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 0 var(--pad);
  overflow: hidden;
}
.scroll-text-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 32px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.scroll-text-section.started .scroll-text-label { opacity: 1; transform: translateY(0); }
.scroll-text-body {
  max-width: 880px;
  font-size: clamp(28px, 4.2vw, 66px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -2px;
  text-align: center;
  user-select: none;
}
.sw2 {
  display: inline-block;
  opacity: .08;
  margin-right: 0.22em;
  will-change: opacity, filter;
  color: var(--text);
}
/* Ambient glow behind sticky panel */
.scroll-text-sticky::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(224,160,58,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Auto-stagger: service card list items */
.s3-card .s3-list li {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.s3-card.visible .s3-list li { opacity: 1; transform: translateX(0); }
.s3-card.visible .s3-list li:nth-child(1) { transition-delay: .28s; }
.s3-card.visible .s3-list li:nth-child(2) { transition-delay: .36s; }
.s3-card.visible .s3-list li:nth-child(3) { transition-delay: .44s; }
.s3-card.visible .s3-list li:nth-child(4) { transition-delay: .52s; }
.s3-card.visible .s3-list li:nth-child(5) { transition-delay: .60s; }

/* Auto-stagger: problem/solution items */
.hwh-items .hwh-item {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.reveal-left.visible .hwh-items .hwh-item,
.reveal-right.visible .hwh-items .hwh-item { opacity: 1; transform: translateX(0); }
.reveal-left.visible .hwh-items .hwh-item:nth-child(1),
.reveal-right.visible .hwh-items .hwh-item:nth-child(1) { transition-delay: .2s; }
.reveal-left.visible .hwh-items .hwh-item:nth-child(2),
.reveal-right.visible .hwh-items .hwh-item:nth-child(2) { transition-delay: .3s; }
.reveal-left.visible .hwh-items .hwh-item:nth-child(3),
.reveal-right.visible .hwh-items .hwh-item:nth-child(3) { transition-delay: .4s; }
.reveal-left.visible .hwh-items .hwh-item:nth-child(4),
.reveal-right.visible .hwh-items .hwh-item:nth-child(4) { transition-delay: .5s; }
.reveal-left.visible .hwh-items .hwh-item:nth-child(5),
.reveal-right.visible .hwh-items .hwh-item:nth-child(5) { transition-delay: .6s; }

/* Auto-stagger: case study metrics */
.cs-metric {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.reveal-right.visible .cs-metric { opacity: 1; transform: translateY(0); }
.reveal-right.visible .cs-metric:nth-child(1) { transition-delay: .35s; }
.reveal-right.visible .cs-metric:nth-child(2) { transition-delay: .45s; }
.reveal-right.visible .cs-metric:nth-child(3) { transition-delay: .55s; }
.reveal-right.visible .cs-metric:nth-child(4) { transition-delay: .65s; }

/* Auto-stagger: review stars */
.rev-stars span {
  opacity: 0;
  transform: scale(.6);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.rev-card-m:hover .rev-stars span,
.visible .rev-stars span { opacity: 1; transform: scale(1); }
.rev-stars span:nth-child(1) { transition-delay: .0s; }
.rev-stars span:nth-child(2) { transition-delay: .06s; }
.rev-stars span:nth-child(3) { transition-delay: .12s; }
.rev-stars span:nth-child(4) { transition-delay: .18s; }
.rev-stars span:nth-child(5) { transition-delay: .24s; }

/* Delay helpers */
.d1  { transition-delay: .08s; }
.d2  { transition-delay: .16s; }
.d3  { transition-delay: .24s; }
.d4  { transition-delay: .32s; }
.d5  { transition-delay: .4s; }
.d6  { transition-delay: .48s; }
.d7  { transition-delay: .56s; }
.d8  { transition-delay: .64s; }

/* ── CONTAINER ──────────────────────────────────────────── */
.dm-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── TYPOGRAPHY HELPERS ─────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.display-xl {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2px;
}
.display-lg {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.display-md {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}
.accent-gold { color: var(--accent); }

.body-lg { font-size: clamp(16px, 1.8vw, 19px); color: var(--text-mid); line-height: 1.7; }
.body-md { font-size: 16px; color: var(--text-mid); line-height: 1.7; }
.body-sm { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ── BUTTON BORDER ANIMATION (@property) ───────────────── */
@property --btn-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes btnSpin { to { --btn-angle: 360deg; } }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .4px;
  padding: 14px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .2s;
  cursor: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-shine::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255,255,255,.12), transparent 75%);
  transform: translateX(-130%);
  transition: transform .65s var(--ease);
  pointer-events: none;
}
.btn-shine:hover::after { transform: translateX(130%); }

/* Primary gold — Liquid Glass Metal (21st.dev gold variant) */
/* ── Amber Liquid Glass — primary buttons ── */
.btn-gold {
  border-radius: 100px;
  background: rgba(224,150,30,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(224,160,58,.55);
  box-shadow:
    inset 0 1.5px 0 rgba(255,245,180,.35),
    inset 0 -1.5px 0 rgba(100,60,0,.25),
    0 8px 32px rgba(224,160,58,.25),
    0 2px 8px rgba(0,0,0,.35);
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .4px;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; width: 84%; height: 45%;
  border-radius: 100px 100px 60% 60%;
  background: linear-gradient(to bottom, rgba(255,245,180,.22), transparent);
  pointer-events: none;
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: rgba(224,150,30,.32);
  box-shadow:
    inset 0 1.5px 0 rgba(255,245,180,.4),
    inset 0 -1.5px 0 rgba(100,60,0,.25),
    0 14px 48px rgba(224,160,58,.4),
    0 2px 8px rgba(0,0,0,.35);
}

/* Phone CTA — amber glass, slightly larger */
.btn-phone {
  border-radius: 100px;
  background: rgba(224,150,30,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(224,160,58,.55);
  box-shadow:
    inset 0 1.5px 0 rgba(255,245,180,.35),
    inset 0 -1.5px 0 rgba(100,60,0,.25),
    0 8px 32px rgba(224,160,58,.25),
    0 2px 8px rgba(0,0,0,.35);
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  padding: 16px 34px;
  gap: 10px;
  letter-spacing: .4px;
}
.btn-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; width: 84%; height: 45%;
  border-radius: 100px 100px 60% 60%;
  background: linear-gradient(to bottom, rgba(255,245,180,.22), transparent);
  pointer-events: none;
}
.btn-phone:hover {
  transform: translateY(-2px);
  background: rgba(224,150,30,.32);
  box-shadow:
    inset 0 1.5px 0 rgba(255,245,180,.4),
    inset 0 -1.5px 0 rgba(100,60,0,.25),
    0 14px 48px rgba(224,160,58,.4),
    0 2px 8px rgba(0,0,0,.35);
}

/* Outline — clear glass with conic amber border */
.btn-outline {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background:
    rgba(255,255,255,.05) padding-box,
    conic-gradient(
      from var(--btn-angle),
      transparent 20%,
      rgba(224,160,58,.85) 40%,
      rgba(255,230,130,.9) 50%,
      rgba(224,160,58,.85) 60%,
      transparent 80%
    ) border-box;
  border: 1.5px solid transparent;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 4px 20px rgba(0,0,0,.25);
  color: var(--text-mid);
  animation: btnSpin 6s linear infinite paused;
  transition: color .25s, transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-outline:hover {
  animation-play-state: running;
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 10px 36px rgba(0,0,0,.35);
}

/* Ghost text link */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: none;
  transition: color .25s, gap .25s var(--ease);
  position: relative;
}
.btn-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  height: 1px; width: 0;
  background: var(--accent);
  transition: width .35s var(--ease);
}
.btn-link:hover { color: var(--accent); gap: 12px; }
.btn-link:hover::after { width: calc(100% - 22px); }

/* Arrow SVG helper */
.arrow-r {
  width: 15px; height: 15px; flex-shrink: 0;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* Phone icon */
.phone-icon {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke: currentColor; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
#dm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
#dm-nav.scrolled {
  background: rgba(12,12,12,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px var(--pad) 3px;
  gap: 24px;
  transition: padding .3s;
  overflow: visible;
}
#dm-nav.scrolled .nav-wrap { padding-top: 8px; padding-bottom: 2px; }

.nav-logo {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .3px;
  transition: color .2s;
  cursor: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-phone .btn-phone {
  font-size: 13px;
  padding: 11px 22px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform .3s, opacity .3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(12,12,12,.97);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer a {
  padding: 14px var(--pad);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: color .2s;
  cursor: none;
}
.nav-mobile-drawer a:last-child { border-bottom: none; color: var(--accent); font-weight: 700; }
.nav-mobile-drawer a:hover { color: var(--text); }

/* ── PAGE HERO (Shared base) ────────────────────────────── */
.page-hero {
  padding-top: 130px;
  padding-bottom: 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}
.page-hero-label { margin-bottom: 20px; }
.page-hero-title { margin-bottom: 20px; }
.page-hero-sub { max-width: 560px; }

/* ── SECTION WRAPPERS ───────────────────────────────────── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-divider { height: 1px; background: var(--accent-border); margin: 0 var(--pad); box-shadow: 0 0 12px 1px rgba(224,160,58,.2); }

/* ── STAT STRIP ─────────────────────────────────────────── */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--accent-border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.stat-cell {
  padding: 36px var(--pad);
  border-right: 1px solid var(--border);
  text-align: left;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 30px rgba(224,160,58,.35), 0 0 60px rgba(224,160,58,.15);
}
.stat-num sup { font-size: .55em; vertical-align: super; color: var(--accent); opacity: .8; }
.stat-lbl { font-size: 13px; color: var(--text-mid); font-weight: 500; }

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  padding: 130px var(--pad);
  background: var(--bg);
  text-align: center;
  border-top: 2px solid var(--accent-border);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% -10%, rgba(224,160,58,.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(224,160,58,.10) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band-eyebrow { justify-content: center; }
.cta-band-title { margin-bottom: 18px; }
.cta-band-sub { max-width: 480px; margin: 0 auto 44px; }
.cta-band-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-band-note { margin-top: 24px; font-size: 13px; color: var(--text-dim); }
.cta-band-note a { color: var(--text-mid); transition: color .2s; cursor: none; }
.cta-band-note a:hover { color: var(--accent); }

/* ── CARD ───────────────────────────────────────────────── */
.dm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  transition: background .25s, border-color .25s, transform .3s var(--ease);
}
.dm-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-mid);
  transform: translateY(-3px);
}

/* ── TAG / BADGE ────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

/* ── FOOTER ─────────────────────────────────────────────── */
#dm-footer {
  border-top: 1px solid var(--accent-border);
  box-shadow: 0 -1px 20px rgba(224,160,58,.08);
  background: var(--bg);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 48px;
  padding: 60px var(--pad);
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 38px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; color: var(--text-dim); max-width: 220px; line-height: 1.6; }

.footer-nav-group h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color .2s;
  cursor: none;
}
.footer-nav-group a:hover { color: var(--accent); }

.footer-contact h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  text-align: right;
}
.footer-contact-items { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.footer-contact-items a {
  font-size: 14px;
  color: var(--text-mid);
  transition: color .2s;
  cursor: none;
}
.footer-contact-items a:hover { color: var(--accent); }
.footer-contact-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent) !important;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--text-dim); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--text-dim); transition: color .2s; cursor: none; }
.footer-legal a:hover { color: var(--text-mid); }

/* ── RESPONSIVE — SHARED ────────────────────────────────── */
@media (max-width: 900px) {
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .stat-cell:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { text-align: left; }
  .footer-contact h4, .footer-contact-items { align-items: flex-start; text-align: left; }
}

@media (max-width: 700px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: flex; }

  .stat-strip { grid-template-columns: 1fr 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  body { cursor: auto; }
  #dm-cursor, #dm-cursor-ring { display: none; }
}

@media (max-width: 480px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-cell { border-right: none !important; border-top: 1px solid var(--border); }
  .stat-cell:first-child { border-top: none; }
}

/* ── BOOKING SECTION ─────────────────────────────────────── */
.booking-section {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.booking-left .eyebrow { margin-bottom: 16px; }
.booking-sub {
  margin-top: 20px;
  color: var(--text-mid);
  max-width: 480px;
}
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 16px 32px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.btn-book:hover { opacity: .85; transform: translateY(-2px); }
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px;
}
.booking-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,161,61,.12);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.booking-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-hi);
  margin: 0 0 20px;
}
.booking-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.booking-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.5;
}
.booking-points li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}
.booking-card-note {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: .78rem;
  color: var(--text-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .booking-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 680px) {
  .booking-section { padding: 60px 0; }
  .booking-card { padding: 28px; }
}
