/* ============================================================
   CAVMIR — MAIN STYLESHEET
   The Multi-Channel Revenue Engine
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --burgundy:   #6B214B;
  --burgundy-80: rgba(107, 33, 75, 0.82);
  --burgundy-50: rgba(107, 33, 75, 0.50);
  --gold:       #D4AF37;
  --gold-light: rgba(212, 175, 55, 0.15);
  --orange:     #FF914D;
  --black:      #000000;
  --white:      #FFFFFF;
  --off-white:  #F8F5F0;
  --red:        #FF3131;
  --green:      #00BF63;

  --font-primary:   'Ubuntu', 'Open Sans', sans-serif;
  --font-editorial: 'Cormorant Garamond', serif;

  --nav-h: 72px;
  --section-pad: clamp(60px, 8vw, 120px);
  --container:  1280px;
  --radius:     4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  /* overflow-x: clip prevents horizontal scroll without promoting body to a
     scroll container — overflow-x: hidden breaks touch scroll on iOS Safari. */
  overflow-x: clip;
}
html { overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.editorial { font-family: var(--font-editorial); font-weight: 300; letter-spacing: 0.04em; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .nav-logo-text { color: var(--burgundy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white);
  transition: color var(--transition), opacity var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover { opacity: 0.75; }

.nav-cta {
  padding: 10px 24px;
  background: var(--burgundy);
  color: var(--white) !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold); color: var(--black) !important; opacity: 1 !important; }

/* Mobile Menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav.scrolled .nav-hamburger span { background: var(--black); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--burgundy);
  padding: calc(var(--nav-h) + 40px) 40px 40px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  letter-spacing: -0.01em;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 0.1s linear;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--burgundy-80) 0%, rgba(0,0,0,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 4vw, 60px);
  max-width: 820px;
  margin: 0 auto 0 clamp(20px, 8vw, 120px);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Gold scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounceScroll 2s infinite;
}
.hero-scroll::before {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--burgundy); transform: translateY(-2px); }
.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
}
.btn-burgundy:hover { background: var(--gold); color: var(--black); transform: translateY(-2px); }

/* ============================================================
   PLATFORMS STRIP
   ============================================================ */
.platforms-strip {
  background: var(--off-white);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 28px 0;
}
.platforms-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  flex-wrap: wrap;
}
.platform-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  white-space: nowrap;
}
.platform-logos {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  flex-wrap: wrap;
  justify-content: center;
}
.platform-item {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: var(--black);
  opacity: 0.7;
  transition: opacity var(--transition);
  white-space: nowrap;
}
.platform-item:hover { opacity: 1; }
.platform-item .dot { color: var(--burgundy); }
.platform-item .airbnb-color { color: #FF5A5F; }
.platform-item .booking-color { color: #003580; }
.platform-item .expedia-color { color: #1D3C7C; }
.platform-item .vrbo-color { color: #1354B8; }
.platform-item .google-color { color: #4285F4; }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--burgundy); color: var(--white); }
.section-off { background: var(--off-white); }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-dark .section-eyebrow { color: var(--gold); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--gold);
}
.section-dark .section-title { color: var(--white); }
.section-body {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 620px;
  opacity: 0.8;
}
.section-dark .section-body { color: rgba(255,255,255,0.82); }
.service-deep-content .section-body,
.service-deep-content .section-title { max-width: none; }

/* Gold divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.gold-divider-center { margin: 24px auto; }

/* ============================================================
   INTRO / ABOUT SPLIT
   ============================================================ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.intro-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro-image-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  right: 20px; bottom: 20px;
  border: 2px solid var(--gold);
  z-index: -1;
}
.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat-item { flex: 1; min-width: 120px; }
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}

/* ============================================================
   12-STEP PROCESS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(212,175,55,0.2);
  border: 1px solid rgba(212,175,55,0.2);
}
.step-card {
  background: var(--burgundy);
  padding: 40px 32px;
  transition: background var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: rgba(212,175,55,0.06);
  border-radius: 50% 0 0 0;
}
.step-card:hover { background: #7D2757; }
.step-number {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}
.step-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--burgundy-80) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(107,33,75,0.95) 60%, rgba(107,33,75,0.4) 100%);
}
.service-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.service-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.service-card-arrow {
  position: absolute;
  bottom: 28px; right: 28px;
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--transition);
}
.service-card:hover .service-card-arrow { opacity: 1; transform: translateX(0); }

/* ============================================================
   LOCATIONS GRID
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.location-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.location-card:hover img { transform: scale(1.06); }
.location-card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107,33,75,0.9) 35%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
}
.location-card-city {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.location-card-country {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   LOCATION STATS BOX
   ============================================================ */
.stats-box {
  background: var(--white);
  border: 1px solid rgba(212,175,55,0.3);
  border-top: 3px solid var(--gold);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.stats-box-item { text-align: center; }
.stats-box-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-box-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
}
.stats-box-divider {
  width: 1px;
  background: rgba(212,175,55,0.3);
  align-self: stretch;
  display: none;
}

/* ============================================================
   PARALLAX IMAGE SECTION
   ============================================================ */
.parallax-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: var(--burgundy-80);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--section-pad) clamp(20px,4vw,60px);
  width: 100%;
}
.parallax-content .section-title { color: var(--white); }
.parallax-content .section-body { color: rgba(255,255,255,0.82); margin: 0 auto 32px; }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px;
}
.team-card { text-align: center; }
.team-photo-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  padding: 4px;
  background: var(--white);
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
}
.team-fun {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--burgundy);
  font-style: italic;
}

/* ============================================================
   CLIENT TYPES GRID
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.client-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
}
.client-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.client-card:hover img { transform: scale(1.06); }
.client-card-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--burgundy-80) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  font-weight: 700;
  color: var(--white);
  font-size: 1.05rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--burgundy);
  padding: var(--section-pad) 0;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 20px;
}
.cta-section p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-section .gold-divider { background: var(--gold); margin: 20px auto 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0D0D0D;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo-text {
  color: var(--white);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-contact-item {
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-h {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-locations-grid {
  column-count: 3;
  column-gap: 16px;
}
.footer-locations-grid a {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  padding: 3px 0;
  break-inside: avoid;
  transition: color var(--transition);
}
.footer-locations-grid a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom .ai-badge {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   PAGE INNER HEADER
   ============================================================ */
.page-header {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--burgundy) 0%, var(--burgundy-50) 60%, transparent 100%);
}
.page-header-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px,4vw,60px) 48px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.page-header-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.page-header h1 {
  font-size: clamp(2rem, 4.5vw, 4rem);
  color: var(--white);
  max-width: 640px;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.65;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  background: var(--off-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.5);
}
.breadcrumb-inner a { color: var(--burgundy); }
.breadcrumb-inner span { color: rgba(0,0,0,0.3); }

/* ============================================================
   LOCATION PAGE SPECIFIC
   ============================================================ */
.location-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.location-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 20px;
  color: var(--burgundy);
}
.location-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0,0,0,0.7);
  margin-bottom: 16px;
}
.location-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
}
.location-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   SERVICE PAGE SPECIFIC
   ============================================================ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.service-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.service-feature-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--burgundy);
}
.service-feature-text p {
  font-size: 0.88rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.6;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--black);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107,33,75,0.08);
}
.form-textarea { min-height: 140px; resize: vertical; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.7);
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-burgundy { color: var(--burgundy); }
.text-orange { color: var(--orange); }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom:  8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .intro-grid, .location-intro, .service-detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-locations-grid { column-count: 2; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero h1 { font-size: 2.2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-locations-grid { column-count: 2; }
  .stats-box { grid-template-columns: 1fr; gap: 20px; }
  .service-detail-grid.reverse { direction: ltr; }
  .platforms-inner { gap: 16px; }
  .platform-item { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .footer-locations-grid { column-count: 1; }
  .team-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   CAVMIR — NAV MEGA-MENU + 5-COL FOOTER (refreshed 2026-04-21)
   Vercel-style architecture, Cavmir palette (burgundy + gold).
   ============================================================ */

/* ── Desktop dropdowns ── */
.nav-dropdown { position: relative; }
.nav-dropdown__trigger {
  display: inline-flex; align-items: center; gap: 4px;
  cursor: pointer;
}
.nav-caret {
  font-size: 11px;
  transition: transform 0.2s;
  display: inline-block;
}
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }

/* ── Mega panel (shared for services/clients/locations) ── */
.nav-dropdown__panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, -10px);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(16, 10, 30, 0.25), 0 12px 24px -10px rgba(16,10,30,0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
    visibility 0s linear 0.36s;
}
/* Thin burgundy→gold hairline at top of panel for brand signature */
.nav-dropdown__panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--gold) 100%);
  opacity: 0.9;
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel,
.nav-dropdown__panel.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

/* A small invisible bridge above the panel so the hover doesn't drop when
   moving cursor from trigger to panel (Vercel uses the same technique). */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 14px;
  pointer-events: auto;
}

/* Keep dropdown panels closed while the user is actively scrolling — JS sets
   body.is-scrolling for ~220ms after each scroll event. This beats the
   CSS :hover rule even when the cursor happens to rest over a trigger. */
body.is-scrolling .nav-dropdown__panel {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.1s ease, visibility 0s linear 0.1s !important;
}
body.is-scrolling .nav-dropdown::after { pointer-events: none; }

.nav-dropdown__panel--mega { width: min(960px, 94vw); }
.nav-dropdown--mega .nav-dropdown__panel--mega { /* noop, future hook */ }

/* ── Mega grid + columns ── */
.nav-mega {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  background: #fff;
}
.nav-mega--locations { grid-template-columns: 1fr 280px; }
.nav-mega__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 24px;
  padding: 26px 24px 22px;
}
.nav-mega__grid--regions {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 24px;
}

.nav-mega__col { min-width: 0; }

.nav-mega__eyebrow {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.7;
  margin: 0 0 8px 8px;
}

.nav-mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-mega__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 10px 10px 8px;
  border-radius: 10px;
  transition: background 0.14s ease, transform 0.14s ease;
  text-decoration: none;
  color: var(--black);
}
.nav-mega__item::after { display: none !important; }
.nav-mega__item:hover {
  background: var(--gold-light);
  opacity: 1;
  transform: translateX(2px);
}

.nav-mega__icon {
  flex: 0 0 36px;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7f3ec;
  border: 1px solid rgba(107, 33, 75, 0.08);
  border-radius: 8px;
  color: var(--burgundy);
  transition: background 0.14s, color 0.14s, border-color 0.14s, transform 0.14s;
}
.nav-mega__icon-svg { width: 18px; height: 18px; display: block; }
.nav-mega__item:hover .nav-mega__icon {
  background: var(--burgundy);
  color: var(--gold);
  border-color: var(--burgundy);
  transform: scale(1.04);
}

.nav-mega__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}
.nav-mega__title {
  font-family: var(--font-primary);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
  letter-spacing: -0.005em;
}
.nav-mega__desc {
  font-family: var(--font-primary);
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(0,0,0,0.55);
  font-weight: 400;
}
.nav-mega__item:hover .nav-mega__title { color: var(--burgundy); }

/* ── Locations variation: sidebar tabs + cities pane ── */
.nav-mega--locations {
  grid-template-columns: 260px 1fr;
  min-height: 360px;
}
.nav-mega__regions-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 22px 14px 22px 18px;
  background: #faf6ee;
  border-right: 1px solid rgba(107, 33, 75, 0.08);
}
.nav-mega__region-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 10px;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  color: var(--black);
  font-family: var(--font-primary);
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}
.nav-mega__region-tab .nav-mega__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-mega__region-tab .nav-mega__title {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.nav-mega__region-tab .nav-mega__desc {
  font-size: 11.5px;
  color: rgba(0,0,0,0.55);
}
.nav-mega__region-chev {
  color: var(--burgundy);
  opacity: 0;
  font-size: 18px;
  line-height: 1;
  transition: opacity 0.18s ease, transform 0.18s ease;
  transform: translateX(-4px);
}
.nav-mega__region-tab:hover,
.nav-mega__region-tab.active {
  background: #fff;
  border-color: rgba(107, 33, 75, 0.12);
  box-shadow: 0 2px 8px -2px rgba(16, 10, 30, 0.08);
}
.nav-mega__region-tab.active .nav-mega__icon {
  background: var(--burgundy);
  color: var(--gold);
  border-color: var(--burgundy);
}
.nav-mega__region-tab.active .nav-mega__title { color: var(--burgundy); }
.nav-mega__region-tab.active .nav-mega__region-chev,
.nav-mega__region-tab:hover .nav-mega__region-chev {
  opacity: 1;
  transform: translateX(0);
}

.nav-mega__regions-panes {
  position: relative;
  padding: 22px 26px 18px;
  min-height: 320px;
}
.nav-mega__region-pane {
  position: absolute;
  inset: 22px 26px 18px 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1), transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.22s;
}
.nav-mega__region-pane.active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s cubic-bezier(0.22, 1, 0.36, 1) 0.04s, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1) 0.04s, visibility 0s linear 0s;
}
/* Gate interactivity on the parent dropdown actually being open. Without this
   scope, the active pane's pointer-events:auto / visibility:visible would let
   the phantom panel area below the nav trigger :hover and open the dropdown. */
.nav-dropdown:hover .nav-mega__region-pane.active,
.nav-dropdown:focus-within .nav-mega__region-pane.active,
.nav-dropdown__panel.open .nav-mega__region-pane.active {
  visibility: visible;
  pointer-events: auto;
}
.nav-mega__pane-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(107,33,75,0.08);
}
.nav-mega__pane-head .nav-mega__eyebrow { margin: 0; }
.nav-mega__pane-count {
  font-family: var(--font-primary);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.nav-mega__cities-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 10px;
  max-height: 300px;
  overflow-y: auto;
}
.nav-mega__cities-grid a {
  display: block;
  padding: 7px 10px;
  font-family: var(--font-primary);
  font-size: 13px;
  color: rgba(0,0,0,0.75);
  border-radius: 6px;
  transition: background 0.12s, color 0.12s, transform 0.12s;
}
.nav-mega__cities-grid a::after { display: none !important; }
.nav-mega__cities-grid a:hover {
  background: var(--gold-light);
  color: var(--burgundy);
  opacity: 1;
  transform: translateX(2px);
}

/* ── Right-rail featured callout ── */
.nav-mega__feature {
  position: relative;
  padding: 26px 24px 24px;
  background: linear-gradient(165deg, #2a0d1f 0%, var(--burgundy) 60%, #3a1530 100%);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}
.nav-mega__feature-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}
.nav-mega__feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 6, 16, 0.15) 0%, rgba(16, 6, 16, 0.82) 100%);
  z-index: 1;
}
.nav-dropdown:hover .nav-mega__feature-img,
.nav-dropdown:focus-within .nav-mega__feature-img { transform: scale(1.06); }
.nav-mega__feature-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-mega__feature-eyebrow {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-mega__feature-title {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.nav-mega__feature-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0;
}
.nav-mega__feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 8px 14px;
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--gold) !important;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-mega__feature-cta::after { display: none !important; }
.nav-mega__feature-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
  border-color: var(--gold);
  transform: translateX(2px);
}

/* ── Footer bar under mega (View all + CTA) ── */
.nav-mega__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  background: #fbf8f2;
  border-top: 1px solid rgba(107, 33, 75, 0.08);
}
.nav-mega__barlink {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  color: var(--burgundy) !important;
  letter-spacing: 0.01em;
}
.nav-mega__barlink::after { display: none !important; }
.nav-mega__barlink:hover { color: var(--gold) !important; opacity: 1; }
.nav-mega__barcta {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--burgundy);
  color: #fff !important;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.nav-mega__barcta::after { display: none !important; }
.nav-mega__barcta:hover { background: var(--gold); color: var(--black) !important; transform: translateY(-1px); opacity: 1; }

/* ── Locations search (inside mega bar) ── */
.nav-mega__bar--with-search { gap: 14px; }
.nav-mega__search {
  position: relative;
  flex: 1 1 auto;
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.nav-mega__search-icon {
  position: absolute;
  left: 12px;
  width: 14px;
  height: 14px;
  color: rgba(107, 33, 75, 0.6);
  pointer-events: none;
}
.nav-mega__search-input {
  width: 100%;
  padding: 8px 14px 8px 34px;
  font-family: var(--font-primary);
  font-size: 13px;
  color: var(--burgundy);
  background: #fff;
  border: 1px solid rgba(107, 33, 75, 0.2);
  border-radius: 999px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
  appearance: none;
  -webkit-appearance: none;
}
.nav-mega__search-input::placeholder { color: rgba(107, 33, 75, 0.5); }
.nav-mega__search-input::-webkit-search-cancel-button { -webkit-appearance: none; appearance: none; }
.nav-mega__search-input:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(107, 33, 75, 0.12);
}
.nav-mega__search-results {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 10px);
  max-height: 320px;
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(107, 33, 75, 0.14);
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(107, 33, 75, 0.3);
  z-index: 20;
  display: none;
}
.nav-mega__search.is-open .nav-mega__search-results { display: block; }
.nav-links a.nav-mega__search-result,
a.nav-mega__search-result {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--burgundy) !important;
  font-family: var(--font-primary);
  font-size: 13px;
  line-height: 1.25;
  text-decoration: none;
  cursor: pointer;
}
.nav-mega__search-result::after { display: none !important; }
.nav-mega__search-result:hover,
.nav-mega__search-result.is-active {
  background: #fbf1e6;
  color: var(--black) !important;
}
.nav-mega__search-result-name { font-weight: 500; }
.nav-mega__search-result-region {
  font-size: 10.5px;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-mega__search-empty {
  padding: 14px 12px;
  font-family: var(--font-primary);
  font-size: 12.5px;
  color: rgba(0,0,0,0.55);
  font-style: italic;
  text-align: center;
}
@media (max-width: 960px) {
  .nav-mega__search { display: none; }
}

/* ── Active state on dropdown trigger ── */
.nav-links a.active { color: var(--burgundy); }
.nav-links a.active::after { width: 100%; background: var(--burgundy); }

/* ── Floating quick-actions pill (desktop only) ── */
.quick-pill {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1500;
  display: inline-flex;
  gap: 4px;
  padding: 6px;
  background: rgba(16, 10, 30, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow:
    0 12px 28px -8px rgba(16, 10, 30, 0.45),
    0 4px 10px -2px rgba(107, 33, 75, 0.25);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}
.quick-pill.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.quick-pill__item {
  font-family: var(--font-primary);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}
.quick-pill__item::after { display: none !important; }
.quick-pill__item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}
.quick-pill__item--primary {
  background: var(--gold);
  color: var(--black);
}
.quick-pill__item--primary:hover {
  background: #e8c763;
  color: var(--black);
  transform: translateY(-1px);
}
@media (max-width: 899px) {
  .quick-pill { display: none !important; }
}

/* ── Case studies page — editorial two-column layout ── */
.case-study-list {
  display: flex;
  flex-direction: column;
  gap: clamp(56px, 8vw, 96px);
  margin-top: 24px;
}
.case-study {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.case-study--reverse { direction: rtl; }
.case-study--reverse > * { direction: ltr; }
.case-study__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 40px 80px -24px rgba(16, 10, 30, 0.25), 0 14px 32px -12px rgba(107, 33, 75, 0.12);
  aspect-ratio: 4 / 3;
  background: #0a0a0a;
}
.case-study__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.case-study:hover .case-study__media img { transform: scale(1.03); }
.case-study__body { min-width: 0; }
.case-study__eyebrow {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.85;
  margin-bottom: 14px;
}
.case-study__title {
  font-family: var(--font-editorial);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 16px;
}
.case-study__lede {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.72);
  margin: 0 0 24px;
}
.case-study__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 24px;
  padding: 20px 22px;
  background: #fbf8f2;
  border-left: 2px solid var(--gold);
  border-radius: 4px;
}
.case-study__meta > div { display: flex; gap: 12px; flex-wrap: wrap; }
.case-study__meta dt {
  flex: 0 0 80px;
  font-family: var(--font-primary);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  padding-top: 2px;
}
.case-study__meta dd {
  flex: 1;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.72);
  min-width: 200px;
}
.case-study__cta {
  display: inline-block;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 820px) {
  .case-study, .case-study--reverse { grid-template-columns: 1fr; direction: ltr; }
  .case-study__meta dt { flex-basis: auto; }
}

/* ── Mega panel modernization (white-glass + editorial hierarchy) ── */
.nav-dropdown__panel {
  background: rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: saturate(180%) blur(28px);
  backdrop-filter: saturate(180%) blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 40px 80px -24px rgba(16, 10, 30, 0.28),
    0 14px 32px -12px rgba(107, 33, 75, 0.18);
}
.nav-dropdown__panel .nav-mega { background: transparent; }
.nav-dropdown__panel .nav-mega__bar {
  background: rgba(251, 248, 242, 0.55);
  border-top: 1px solid rgba(107, 33, 75, 0.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.nav-dropdown__panel .nav-mega__regions-nav {
  background: rgba(250, 246, 238, 0.55);
  border-right: 1px solid rgba(107, 33, 75, 0.06);
}
.nav-dropdown__panel::before {
  height: 2px;
  opacity: 1;
  background: linear-gradient(90deg, var(--burgundy) 0%, #8f2a5a 50%, var(--gold) 100%);
}
.nav-dropdown__panel .nav-mega__eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  opacity: 0.85;
  margin-bottom: 12px;
}
.nav-dropdown__panel .nav-mega__title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.008em;
}
.nav-dropdown__panel .nav-mega__desc {
  font-size: 11.5px;
  color: rgba(0, 0, 0, 0.52);
}
.nav-dropdown__panel .nav-mega__icon {
  background: rgba(247, 243, 236, 0.7);
  border-color: rgba(107, 33, 75, 0.06);
  border-radius: 9px;
}
.nav-dropdown__panel .nav-mega__item {
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
}
.nav-dropdown__panel .nav-mega__item:hover {
  background: rgba(212, 175, 55, 0.12);
  transform: translateX(3px);
  box-shadow: inset 2px 0 0 var(--burgundy);
}
.nav-dropdown__panel .nav-mega__item:hover .nav-mega__title { color: var(--burgundy); }
.nav-dropdown__panel .nav-mega__item:hover .nav-mega__icon {
  transform: scale(1.06) rotate(-2deg);
}
.nav-dropdown__panel .nav-mega__region-tab {
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.nav-dropdown__panel .nav-mega__region-tab:hover { transform: translateX(2px); }
.nav-dropdown__panel .nav-mega__region-tab:hover,
.nav-dropdown__panel .nav-mega__region-tab.active {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(107, 33, 75, 0.14);
}
.nav-dropdown__panel .nav-mega__cities-grid a {
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}
.nav-dropdown__panel .nav-mega__cities-grid a:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--burgundy);
  transform: translateX(3px);
}

/* ── Mobile menu — icon-list accordions ── */
.mobile-menu__group {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  font-family: var(--font-primary);
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.01em;
}
.mobile-menu__group.open .mobile-menu__toggle .nav-caret { transform: rotate(180deg); }
.mobile-menu__submenu {
  display: none;
  padding: 8px 16px 18px 16px;
  background: rgba(0,0,0,0.28);
}
.mobile-menu__group.open .mobile-menu__submenu { display: block; }
.mobile-menu__submenu a {
  border-bottom: none !important;
}
.mobile-menu__viewall {
  color: var(--gold) !important;
  font-weight: 500;
  border-bottom: 1px solid rgba(212,175,55,0.25) !important;
  padding-bottom: 10px !important;
  display: block;
  margin: 2px 0 10px;
  font-size: 14px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mobile-menu__item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 10px !important;
  border-radius: 8px;
  font-size: 15px !important;
  color: rgba(255,255,255,0.96) !important;
  transition: background 0.15s;
}
.mobile-menu__item:hover { background: rgba(212,175,55,0.08); }
.mobile-menu__item-icon {
  flex: 0 0 34px;
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 8px;
  color: var(--gold);
}
.mobile-menu__item-icon .nav-mega__icon-svg { width: 16px; height: 16px; }
.mobile-menu__item-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.mobile-menu__item-title { font-weight: 500; font-size: 15px; color: #fff; }
.mobile-menu__item-desc { font-size: 11.5px; color: rgba(255,255,255,0.6); line-height: 1.35; }
.mobile-menu__region-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 6px;
}
.mobile-menu__region-label {
  font-family: var(--font-primary);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.mobile-menu__city {
  display: block;
  padding: 7px 10px 7px 46px !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.82) !important;
  border-radius: 6px;
}
.mobile-menu__city:hover { background: rgba(212,175,55,0.08); color: #fff !important; }

/* ── 5-column footer ── */
.footer-grid--5col {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
}
@media (max-width: 1100px) {
  .footer-grid--5col { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 700px) {
  .footer-grid--5col { grid-template-columns: 1fr; gap: 32px; }
}
.footer-region { margin-bottom: 14px; }
.footer-region__label {
  font-family: var(--font-primary);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.footer-locations-by-region a {
  display: inline-block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
  margin-right: 10px;
  padding: 2px 0;
  transition: color 0.15s;
}
.footer-locations-by-region a:hover { color: var(--gold); }
.footer-locations-more {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}

/* ── Mega-menu responsive: shrink at narrower desktop ── */
@media (max-width: 1200px) {
  .nav-dropdown__panel--mega { width: min(880px, 94vw); }
  .nav-mega { grid-template-columns: 1fr 240px; }
  .nav-mega__feature { min-height: 280px; }
  .nav-mega__feature-title { font-size: 20px; }
}
@media (max-width: 1024px) {
  .nav-dropdown__panel--mega { width: min(760px, 94vw); }
  .nav-mega { grid-template-columns: 1fr; }
  .nav-mega--locations { grid-template-columns: 240px 1fr; }
  .nav-mega__feature { display: none; }
  .nav-mega__grid { padding: 20px 18px 16px; }
  .nav-mega__cities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Desktop dropdowns disappear at mobile breakpoint ── */
@media (max-width: 1144px) {
  .nav-dropdown__panel { display: none; }
  .nav-dropdown__trigger .nav-caret { display: none; }
}


/* ============================================================
   CAVMIR — CLIENT TYPE PAGES (added 2026-04-19)
   ============================================================ */

/* ── Hero ── */
.client-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 120px 20px 80px;
  color: #fff;
  overflow: hidden;
}
.client-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.75);
  z-index: 0;
}
.client-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
}
.client-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  width: 100%;
}
.client-hero__breadcrumb {
  font-family: var(--font-primary);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
.client-hero__breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.client-hero__breadcrumb a:hover { color: var(--gold); }
.client-hero__eyebrow {
  display: block;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.client-hero__title {
  font-family: var(--font-editorial);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 16px;
  color: #fff;
}
.client-hero__sub {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.55;
  max-width: 740px;
  color: rgba(255,255,255,0.94);
  margin: 0 0 28px;
}
.client-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Stats box ── */
.client-stats-wrap {
  background: #fafafa;
  padding: 72px 20px 60px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.client-stats-wrap .container {
  max-width: 1180px;
  margin: 0 auto;
}
.client-stats-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.client-stats-header .section-eyebrow {
  color: var(--burgundy);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.client-stats-header .section-title {
  font-family: var(--font-editorial);
  font-size: clamp(28px, 4vw, 42px);
  margin: 10px 0 14px;
  color: #0A0A0A;
}
.client-stats-header .section-body {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.client-stats-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 32px 20px;
  border: 1px solid rgba(212,175,55,0.25);
}
@media (max-width: 1100px) {
  .client-stats-box { grid-template-columns: repeat(3, 1fr); }
  .client-stats-box__item:nth-child(4),
  .client-stats-box__item:nth-child(5) { grid-column: span 1; }
}
@media (max-width: 640px) {
  .client-stats-box { grid-template-columns: repeat(2, 1fr); }
}
.client-stats-box__item {
  text-align: center;
  padding: 10px;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.client-stats-box__item:last-child { border-right: none; }
@media (max-width: 1100px) {
  .client-stats-box__item { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); padding-bottom: 16px; }
  .client-stats-box__item:nth-last-child(-n+1) { border-bottom: none; }
}
.client-stats-box__icon {
  font-size: 28px;
  margin-bottom: 10px;
  line-height: 1;
}
.client-stats-box__value {
  font-family: var(--font-editorial);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.1;
  margin-bottom: 8px;
}
.client-stats-box__value--pill {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
}
.client-stats-box__value--low { background: #00BF63; }
.client-stats-box__value--medium { background: var(--gold); color: var(--black); }
.client-stats-box__value--high { background: #FF3131; }
.client-stats-box__label {
  font-family: var(--font-primary);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #777;
  line-height: 1.4;
}
.client-stats-source {
  text-align: center;
  font-family: var(--font-primary);
  font-size: 12px;
  color: #888;
  font-style: italic;
  margin-top: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

/* ── Client main content ── */
.client-main {
  padding: 72px 20px 60px;
}
.client-main .container {
  max-width: 860px;
  margin: 0 auto;
}

.client-intro {
  margin-bottom: 56px;
}
.client-intro__lede {
  font-family: var(--font-editorial);
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.45;
  color: #0A0A0A;
  margin-bottom: 22px;
  font-style: italic;
}
.client-intro p {
  font-family: var(--font-primary);
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.client-section {
  margin-bottom: 48px;
  scroll-margin-top: 100px;
}
.client-section h2 {
  font-family: var(--font-editorial);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: #0A0A0A;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 2px solid var(--gold);
  padding-top: 24px;
}
.client-section p,
.client-section li {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.72;
  color: #333;
  margin-bottom: 18px;
}
.client-section ul, .client-section ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
.client-section ul li, .client-section ol li {
  margin-bottom: 14px;
}
.client-section strong { color: #0A0A0A; }

.client-section--cavmir {
  background: rgba(212,175,55,0.06);
  border-left: 4px solid var(--gold);
  padding: 32px 28px;
  border-radius: 0 8px 8px 0;
  margin-left: -28px;
  margin-right: -28px;
}
.client-section--cavmir h2 { border-top: none; padding-top: 0; }
.client-cta-inline {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.client-body-figure {
  margin: 56px -40px;
  max-width: calc(100% + 80px);
}
.client-body-figure img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
@media (max-width: 700px) {
  .client-body-figure { margin: 40px 0; }
}

.client-markets-list {
  list-style: none;
  padding: 0;
  counter-reset: markets;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}
@media (max-width: 600px) {
  .client-markets-list { grid-template-columns: 1fr; }
}
.client-markets-list li {
  counter-increment: markets;
  padding: 14px 0 14px 48px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  font-family: var(--font-primary);
  font-size: 16px;
  color: #0A0A0A;
}
.client-markets-list li::before {
  content: counter(markets, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  font-family: var(--font-editorial);
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
}
.client-markets-list a {
  color: #0A0A0A;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}
.client-markets-list a:hover { color: var(--burgundy); }

.client-related {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.client-related__subhead {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: #555;
  margin-bottom: 10px;
}
.client-related__links a {
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 500;
}
.client-related__links a:hover { color: var(--gold); }

.client-faq-wrap {
  margin-top: 56px;
}

/* ============================================================
   LOCATION DEEP-DIVE SECTIONS
   Used on per-market pages to break long content into
   visually distinct, easy-to-scan blocks.
   ============================================================ */
.dd { padding: clamp(80px, 9vw, 130px) 0; }
.dd--cream     { background: var(--off-white); }
.dd--white     { background: var(--white); }
.dd--sage      { background: #EEF2ED; }
.dd--wine-tint { background: #F7ECF0; }
.dd--gold-tint { background: #FBF5E1; }

.dd h2 {
  font-family: var(--font-editorial);
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--burgundy);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
}
.dd h2 em { font-style: italic; color: var(--burgundy); }

.dd p, .dd li {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(0,0,0,0.80);
}
.dd p { margin-bottom: 16px; }
.dd p strong { color: var(--burgundy); font-weight: 600; }
.dd ul { padding-left: 22px; list-style: disc; margin: 6px 0 20px; }
.dd li { margin-bottom: 6px; }

.dd__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 12px;
}
.dd__subhead {
  font-family: var(--font-editorial);
  font-size: 1.45rem;
  color: var(--burgundy);
  font-weight: 600;
  margin-top: 42px;
  margin-bottom: 16px;
  line-height: 1.25;
  position: relative;
  padding-left: 20px;
}
.dd__subhead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}
.dd .reveal > p:first-of-type::first-letter {
  font-family: var(--font-editorial);
  font-size: 3.6rem;
  line-height: 0.9;
  float: left;
  padding: 6px 12px 0 0;
  color: var(--burgundy);
  font-weight: 500;
}

.dd__grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .dd__grid { grid-template-columns: 1fr; gap: 32px; }
}

.dd-callout {
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}
.dd-callout--burgundy { border-left-color: var(--burgundy); background: var(--white); }
.dd-callout--gold     { border-left-color: var(--gold);     background: #FFFBEC; }
.dd-callout--sage     { border-left-color: #7a9076;         background: #F3F7F1; }
.dd-callout--wine     { border-left-color: var(--burgundy); background: #FBF3F6; }

.dd-callout__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: 6px;
}
.dd-callout__title {
  font-family: var(--font-editorial);
  font-size: 1.42rem;
  color: var(--burgundy);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.22;
}
.dd-callout__body p,
.dd-callout__body li {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.78);
}
.dd-callout__body p { margin-bottom: 10px; }
.dd-callout__body ul { padding-left: 18px; list-style: disc; margin: 4px 0 10px; }
.dd-callout__body li { margin-bottom: 4px; }
.dd-callout__body strong { color: var(--burgundy); }

.dd-fact {
  background: linear-gradient(135deg, #FBEFC2 0%, #FDF7DA 100%);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 30px 32px;
  box-shadow: 0 10px 28px rgba(107,33,75,0.08);
}
.dd-fact__label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: 8px;
}
.dd-fact__body {
  font-family: var(--font-editorial);
  font-size: 1.18rem;
  line-height: 1.45;
  color: var(--burgundy);
  font-weight: 400;
  font-style: italic;
}

.dd-finance {
  background: var(--white);
  border: 1px solid rgba(107, 33, 75, 0.10);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.07);
}
.dd-finance__title {
  background: linear-gradient(135deg, var(--burgundy) 0%, #8B2D5F 100%);
  color: var(--white);
  font-family: var(--font-editorial);
  font-size: 1.3rem;
  font-weight: 500;
  padding: 18px 26px;
  margin: 0;
  border-bottom: 3px solid var(--gold);
  letter-spacing: 0.01em;
}
.dd-finance__row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 26px;
  margin: 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.2s ease;
}
.dd-finance__row:last-child { border-bottom: 0; }
.dd-finance__row:hover { background: rgba(212,175,55,0.06); }
.dd-finance__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FBF5E1;
  border-radius: 10px;
}
.dd-finance__content h4 {
  font-size: 1.05rem;
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.dd-finance__content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.78);
  margin: 0;
}

.dd-alt {
  background: linear-gradient(135deg, rgba(107,33,75,0.06) 0%, rgba(212,175,55,0.10) 100%);
  border-left: 4px solid var(--burgundy);
  padding: 24px 28px;
  border-radius: 6px;
  margin-top: 32px;
}
.dd-alt__label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: 6px;
}
.dd-alt__title {
  font-family: var(--font-editorial);
  font-size: 1.25rem;
  color: var(--burgundy);
  margin-bottom: 8px;
  font-weight: 500;
}
.dd-alt p { font-size: 0.95rem; margin-bottom: 0; }
.dd-alt a { color: var(--burgundy); text-decoration: underline; font-weight: 500; }
.dd-alt a:hover { color: var(--gold); }

.dd-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}
@media (max-width: 800px) {
  .dd-row-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ ACCORDION (added 2026-04-20)
   ============================================================ */
.faq-item {
  border-bottom: 1px solid rgba(107, 33, 75, 0.12);
}
.faq-item:first-of-type {
  border-top: 1px solid rgba(107, 33, 75, 0.12);
}
.faq-item > summary.faq-q,
.faq-item > summary {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 600;
  color: var(--burgundy);
  padding: 22px 52px 22px 4px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
  line-height: 1.45;
  outline: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { display: none; content: ""; }
.faq-item > summary:hover { color: var(--gold); }
.faq-item > summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.faq-item > summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  line-height: 1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item[open] > summary { color: var(--burgundy); }
.faq-a {
  padding: 0 4px 24px 4px;
  animation: faqFade 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-a p {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.78);
}
.faq-a p + p { margin-top: 12px; }
@keyframes faqFade {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   LOCATION PAGES — typography unified with service pages
   (added 2026-04-20)
   ============================================================ */
.dd h2 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--burgundy);
  margin-bottom: 24px;
}
.dd h2 em {
  font-style: italic;
  font-family: var(--font-editorial);
  font-weight: 300;
  color: var(--gold);
}
.dd__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.dd__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.dd__subhead {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: var(--burgundy);
  margin: 48px 0 16px;
  line-height: 1.25;
  padding-left: 0;
  letter-spacing: -0.01em;
}
.dd__subhead::before { display: none; }
.dd p, .dd li {
  font-family: var(--font-primary);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.82);
}
.dd p { margin-bottom: 18px; }
.dd p strong { color: var(--burgundy); font-weight: 600; }
.dd .reveal > p:first-of-type::first-letter {
  font-family: inherit;
  font-size: inherit;
  float: none;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  font-weight: inherit;
}
.dd-callout__title {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--burgundy);
}
.dd-callout__eyebrow {
  font-family: var(--font-primary);
  color: var(--gold);
}
.dd-callout__body p,
.dd-callout__body li {
  font-family: var(--font-primary);
}
.dd-finance__title {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--burgundy);
}
.dd-finance__content h4 {
  font-family: var(--font-primary);
  font-weight: 700;
}
.dd-finance__content p {
  font-family: var(--font-primary);
}
.dd-fact__label {
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--gold);
}
.dd-fact__body {
  font-family: var(--font-primary);
}

/* =========================================================
   LOCAL COLOR — Why We Love / Cheat Sheet / Local Work
   ========================================================= */

/* Cheat-sheet picks grid */
.lc-picks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.lc-pick {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 26px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.lc-pick:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}
.lc-pick__eyebrow {
  font-family: var(--font-primary);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.lc-pick__title {
  font-family: var(--font-editorial);
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--burgundy);
  margin: 0 0 10px;
  font-weight: 500;
}
.lc-pick__body {
  font-family: var(--font-primary);
  font-size: 0.94rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.72);
  margin: 0;
}

/* Local-work case vignettes */
.lc-cases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.lc-case {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 34px;
  border-left: 4px solid var(--burgundy);
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}
.lc-case__label {
  font-family: var(--font-editorial);
  font-size: 1.22rem;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.lc-case__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 10px 0;
  align-items: start;
}
.lc-case__row + .lc-case__row { border-top: 1px dashed rgba(0,0,0,0.06); }
.lc-case__tag {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  padding-top: 3px;
}
.lc-case__row--result .lc-case__tag { color: var(--gold); }
.lc-case__row--result p {
  color: var(--burgundy);
  font-weight: 500;
}
.lc-case p {
  font-family: var(--font-primary);
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.78);
  margin: 0;
}

@media (max-width: 720px) {
  .lc-picks { grid-template-columns: 1fr; }
  .lc-case { padding: 24px 22px; }
  .lc-case__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px 0;
  }
  .lc-case__tag { padding-top: 0; }
}

/* ============================================================
   PRICING BAND
   ============================================================ */
.pricing-band {
  position: relative;
  background: var(--burgundy);
  padding: var(--section-pad) 0;
  color: var(--white);
  overflow: hidden;
}
.pricing-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(212,175,55,0.12), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0,0,0,0.25), transparent 55%);
  pointer-events: none;
}
.pricing-band .container { position: relative; z-index: 1; }
.pricing-band .section-eyebrow { color: var(--gold); }
.pricing-band .section-title { color: var(--white); }
.pricing-band .section-body { color: rgba(255,255,255,0.82); }

/* Currency toggle */
.pricing-currency {
  display: inline-flex;
  margin: 0 auto 40px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.pricing-currency__btn {
  padding: 8px 18px;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.pricing-currency__btn:hover { color: var(--white); }
.pricing-currency__btn.is-active {
  background: var(--gold);
  color: var(--black);
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.pricing-grid + .pricing-grid { margin-top: 24px; }
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Card */
.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--black);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}
.pricing-card__head {
  padding: 14px 18px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  transition: filter 0.25s ease;
}
.pricing-card:hover .pricing-card__head { filter: brightness(0.92); }
.pricing-card__head--blue   { background: #4F7FEF; }
.pricing-card__head--green  { background: #10B981; }
.pricing-card__head--purple { background: #A855F7; }
.pricing-card__head--teal   { background: #14B8A6; }
.pricing-card__head--amber  { background: #F59E0B; }
.pricing-card__head--rose   { background: #F43F5E; }

.pricing-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 22px 22px;
}
.pricing-card__tier {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 6px;
}
.pricing-card__price {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.1;
}
.pricing-card__price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
  margin-left: 2px;
}
.pricing-card__price-unit {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(0,0,0,0.5);
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.pricing-card__rule {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 18px 0 16px;
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(0,0,0,0.78);
}
.pricing-card__features li {
  padding-left: 22px;
  position: relative;
}
.pricing-card__features li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--burgundy);
  border-bottom: 2px solid var(--burgundy);
  transform: rotate(-45deg);
}
.pricing-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-family: var(--font-primary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pricing-card__cta:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* Lead copy above grid (custom-first messaging) */
.pricing-lead {
  max-width: 780px;
  margin: 4px auto 34px;
  padding: 18px 24px;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.94);
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 10px;
}
.pricing-lead strong {
  color: var(--gold);
  font-weight: 700;
}

/* Custom Pricing callout box (the "most clients" option below grid) */
.pricing-custom-box {
  max-width: 980px;
  margin: 44px auto 0;
  padding: 44px 48px;
  background: var(--white);
  color: var(--black);
  border-radius: 14px;
  box-shadow: 0 14px 42px rgba(0,0,0,0.28);
  text-align: center;
  position: relative;
  border-top: 6px solid var(--gold);
}
.pricing-custom-box__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pricing-custom-box__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.01em;
  color: var(--burgundy);
  margin-bottom: 16px;
  line-height: 1.1;
}
.pricing-custom-box__title em {
  font-family: var(--font-editorial);
  font-weight: 300;
  font-style: italic;
  color: var(--burgundy);
}
.pricing-custom-box__body {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(0,0,0,0.74);
  max-width: 700px;
  margin: 0 auto 28px;
}
.pricing-custom-box__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pricing-custom-box__cta:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
@media (max-width: 620px) {
  .pricing-custom-box { padding: 34px 22px; }
}

/* Pricing page hero variant — taller, no burgundy gradient, subtle darkening */
.page-header--pricing {
  height: 540px;
  align-items: flex-end;
}
.page-header--pricing .page-header-content { padding-bottom: 60px; }
.page-header--pricing::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(107,33,75,0.35) 100%);
  z-index: 1;
}
@media (max-width: 640px) {
  .page-header--pricing { height: 480px; }
  .page-header--pricing .page-header-content { padding-bottom: 48px; }
}

/* Footnote under grid */
.pricing-note {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}
.pricing-note a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pricing-note a:hover { color: var(--gold); }

/* Stats line under hero text */
.pricing-summary {
  margin: 8px auto 32px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.66);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ============================================================
   BEFORE / AFTER COMPARE SLIDER
   Oppenheim-style handle, contained layout, Cavmir palette.
   ============================================================ */
.compare {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.compare__grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .compare__grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Vertical eyebrow column — mimics Oppenheim's rotated label */
.compare__eyebrow {
  position: relative;
  min-height: 320px;
}
.compare__eyebrow-stack {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top left;
  transform: rotate(-90deg) translate(-100%, 0);
  white-space: nowrap;
  font-family: var(--font-editorial);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--burgundy);
}
.compare__eyebrow-stack em {
  font-style: italic;
  color: var(--burgundy);
  font-weight: 400;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
  margin-left: 14px;
}
.compare__eyebrow-tag {
  position: absolute;
  bottom: 8px;
  left: 2px;
  font-family: var(--font-primary);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}
.compare__eyebrow-tag::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .compare__eyebrow { min-height: 0; }
  .compare__eyebrow-stack {
    position: static;
    transform: none;
    white-space: normal;
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .compare__eyebrow-stack em { border-left: none; padding-left: 0; margin-left: 0; display: block; margin-top: 4px; }
  .compare__eyebrow-tag { position: static; display: block; margin-top: 10px; }
}

/* Main slider frame */
.compare__stage {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,0.35), 0 8px 24px -12px rgba(0,0,0,0.18);
  user-select: none;
  touch-action: none;
  background: #1a1a1a;
  cursor: col-resize;
}
.compare__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.compare__img--after {
  clip-path: inset(0 0 0 var(--pos));
}

/* Corner badges — BEFORE / AFTER */
.compare__badge {
  position: absolute;
  top: 18px;
  z-index: 3;
  padding: 8px 18px;
  font-family: var(--font-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  pointer-events: none;
}
.compare__badge--before {
  left: 18px;
  background: var(--white);
  color: var(--black);
}
.compare__badge--after {
  right: 18px;
  background: var(--burgundy);
  color: var(--white);
}

/* Vertical divider line */
.compare__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 14px rgba(0,0,0,0.4);
  transform: translateX(-1px);
  z-index: 2;
  pointer-events: none;
}

/* Circular handle — Oppenheim-inspired, Cavmir palette */
.compare__handle {
  position: absolute;
  top: 50%;
  left: var(--pos);
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  z-index: 4;
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 3px var(--burgundy),
    0 12px 28px rgba(0,0,0,0.35),
    0 4px 10px rgba(0,0,0,0.2);
  display: grid;
  place-items: center;
  cursor: col-resize;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.25s ease;
}
.compare__handle:hover,
.compare__handle:focus-visible,
.compare__stage.is-active .compare__handle {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 0 0 3px var(--burgundy),
    0 0 0 7px rgba(212, 175, 55, 0.35),
    0 16px 32px rgba(0,0,0,0.4);
  outline: none;
}
.compare__handle::before,
.compare__handle::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.compare__handle::before {
  border-right: 8px solid var(--burgundy);
  left: 14px;
}
.compare__handle::after {
  border-left: 8px solid var(--burgundy);
  right: 14px;
}
.compare__handle-ring {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--burgundy);
  position: relative;
}
.compare__handle-ring::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--gold);
}

/* Accessible range input overlay — invisible but drives the slider */
.compare__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin: 0;
  cursor: col-resize;
  z-index: 5;
}

/* Caption + CTA */
.compare__caption {
  margin-top: 28px;
}
.compare__caption-title {
  font-family: var(--font-editorial);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}
.compare__caption-title em {
  color: var(--burgundy);
  font-style: italic;
}
.compare__caption-body {
  font-size: 1rem;
  color: #2c2c2c;
  line-height: 1.65;
  max-width: 68ch;
  margin-bottom: 22px;
}
.compare__caption-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 12px;
}
.compare__caption-meta::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

