/*
 * VitaNovaa — Shared Design System
 * Applied to all pages for visual consistency
 * ──────────────────────────────────────────────────────
 */

/* ── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #F4F1EA; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #735a3a, #c8a87a);
  border-radius: 4px;
}

/* ── SELECTION ─────────────────────────────────────── */
::selection { background: #735a3a; color: #ffffff; }

/* ── LOGO CONTRAST & DARK CRISP RENDERING ─────────────── */
header img[src*="Logo"],
footer img[src*="Logo"],
.vn-mobile-nav img[src*="Logo"],
img[alt*="Logo"],
.vn-logo {
  filter: brightness(0.75) contrast(1.4) saturate(1.2);
  transition: filter 0.3s ease, transform 0.3s ease;
}

header img[src*="Logo"]:hover,
footer img[src*="Logo"]:hover,
img[alt*="Logo"]:hover,
.vn-logo:hover {
  filter: brightness(0.85) contrast(1.5) saturate(1.25);
}

/* ── MATERIAL ICONS — Prevent raw text FOUT ────────── */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-display: block;
  /* Hide raw string while font loads */
  visibility: visible;
}
/* While font is loading, show placeholder box not raw string */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-display: block;
}

/* ── BOTTOM NAV — Always visible (pill nav) ────────── */
/* The rounded pill bottom nav is shown on all screen sizes */
/* Only the dark custom .bar-mobile-only nav is mobile-only */
.bar-mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .bar-mobile-only {
    display: flex;
  }
}

/* ── SECTION EYEBROW TAG (Gold Badge) ─────────────── */
.vn-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(115, 90, 58, 0.08);
  border: 1px solid rgba(115, 90, 58, 0.22);
  color: #735a3a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 18px;
}

/* ── HERO CONSISTENT OVERLAY STRIP ────────────────── */
.vn-hero-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 7%;
  background: linear-gradient(to bottom, rgba(10,8,5,0.65), transparent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ── HERO SCROLL CUE (Animated Line) ──────────────── */
.vn-scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.vn-scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollCuePulse 2s ease-in-out infinite;
}
@keyframes scrollCuePulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── NAV LINK ACTIVE GOLD UNDERLINE ───────────────── */
.vn-nav-active {
  color: #735a3a !important;
  position: relative;
}
.vn-nav-active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #735a3a, #c8a87a);
}

/* ── CARD HOVER LIFT ───────────────────────────────── */
.vn-card {
  transition: transform 0.3s cubic-bezier(0.25,1,0.5,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}
.vn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(115,90,58,0.12);
  border-color: rgba(115,90,58,0.35) !important;
}

/* ── GOLD CTA BUTTON ───────────────────────────────── */
.vn-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1.5px solid #735a3a;
  color: #735a3a;
  background: transparent;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.vn-btn:hover {
  background: #735a3a;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(115,90,58,0.25);
}

/* ── GOLD DIVIDER LINE ─────────────────────────────── */
.vn-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, #735a3a, #c8a87a);
  margin: 16px 0 28px;
}

/* ── HERO CONTENT ANIMATE-IN ──────────────────────── */
.vn-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 12, 8, 0.70);
  border: 1px solid rgba(200, 168, 122, 0.45);
  color: #e2c19b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 18px;
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease 0.1s both;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  border-radius: 4px;
}

/* Sub-page hero headline — editorial style */
.vn-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.3s both;
  max-width: 700px;
  /* Subtle text shadow for depth over images */
  text-shadow: 0 4px 28px rgba(0,0,0,0.85), 0 2px 8px rgba(0,0,0,0.9);
}

/* Italic golden accent word within headings */
.vn-hero-h1 em,
.vn-hero-h1 i {
  font-style: italic;
  color: #e2c19b;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

/* Sub-page hero body paragraph */
.vn-hero-p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  animation: fadeUp 0.7s ease 0.5s both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.vn-hero-cta { animation: fadeUp 0.7s ease 0.65s both; }

/* ── INDEX HERO CAROUSEL — Cinematic Sizing ────────── */
/* Left-aligned editorial headline for carousel slides */
.vn-hero-index-h1 {
  font-size: clamp(36px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.85), 0 2px 10px rgba(0,0,0,0.9);
}
.vn-hero-index-p {
  font-size: clamp(14px, 1.3vw, 17px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SECTION FADE-IN ON SCROLL (JS-toggled) ─────── */
.vn-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.vn-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.vn-reveal-d1 { transition-delay: 0.1s; }
.vn-reveal-d2 { transition-delay: 0.2s; }
.vn-reveal-d3 { transition-delay: 0.3s; }
.vn-reveal-d4 { transition-delay: 0.4s; }

/* ── STAT COUNTER CARD ─────────────────────────────── */
.vn-stat {
  text-align: center;
  padding: 32px 24px;
  border-top: 3px solid rgba(115,90,58,0.15);
}
.vn-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  color: #735a3a;
  line-height: 1;
  margin-bottom: 8px;
}
.vn-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}

/* ── FOOTER ENHANCED ───────────────────────────────── */
.vn-footer {
  background: #0a0805;
  padding: 64px 0 32px;
}
.vn-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 52px;
}
@media(max-width:768px){ .vn-footer-inner{ padding: 0 24px; } }
.vn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media(max-width:900px){
  .vn-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:600px){
  .vn-footer-grid { grid-template-columns: 1fr; }
}
.vn-footer-col-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.vn-footer-link {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.25s;
}
.vn-footer-link:hover { color: #c8a87a; }
.vn-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.vn-footer-copy {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-family: 'Montserrat', sans-serif;
}
.vn-footer-social {
  display: flex;
  gap: 20px;
}
.vn-footer-social a {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.25s;
}
.vn-footer-social a:hover { color: #c8a87a; }

/* ── SCROLL REVEAL JS SNIPPET (inline) ────────────── */

/* ═══════════════════════════════════════════════════════
   PEBBLE STONE IMAGE SHAPE — Site-wide Design Signature
   Usage: wrap any <img> in <div class="vn-pebble">
   ═══════════════════════════════════════════════════════ */

@keyframes pebbleMorph {
  0%,100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  33%     { border-radius: 40% 60% 45% 55% / 60% 40% 55% 45%; }
  66%     { border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; }
}

@keyframes pebbleMorphAlt {
  0%,100% { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
  33%     { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; }
  66%     { border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%; }
}

@keyframes pebbleRingPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.5; }
  50%     { transform: translate(-50%,-50%) scale(1.1); opacity: 0.1; }
}

@keyframes pebbleGlowPulse {
  0%,100% { opacity: 0.8; }
  50%     { opacity: 0.4; }
}

/* ── Wrapper ── */
.vn-pebble-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

/* ── Glow orb behind shape ── */
.vn-pebble-wrap::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115,90,58,0.14) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 0;
  animation: pebbleGlowPulse 5s ease-in-out infinite;
}

/* ── Pulsing ring ── */
.vn-pebble-ring {
  position: absolute;
  width: 88%;
  height: 88%;
  border: 1px solid rgba(115,90,58,0.12);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 0;
  animation: pebbleRingPulse 4.5s ease-in-out infinite;
}

/* ── Main pebble shape ── */
.vn-pebble {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  animation: pebbleMorph 11s ease-in-out infinite;
  box-shadow:
    0 28px 72px rgba(115,90,58,0.22),
    0 6px 24px rgba(115,90,58,0.12);
  z-index: 1;
  flex-shrink: 0;
}

/* Square variant for pebble-shaped square */
.vn-pebble-sq {
  aspect-ratio: 1 / 1;
  max-width: 420px;
  animation: pebbleMorphAlt 9s ease-in-out infinite;
}

/* Small accent pebble */
.vn-pebble-sm {
  max-width: 300px;
  animation: pebbleMorphAlt 8s ease-in-out infinite;
}

/* ── Image inside pebble ── */
.vn-pebble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.9s cubic-bezier(0.25,1,0.5,1);
}
.vn-pebble:hover img {
  transform: scale(1.1);
}

/* ── Gold border trace ── */
.vn-pebble::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(200,168,122,0.28);
  pointer-events: none;
  z-index: 2;
}

/* ── Dark variant (for dark bg sections) ── */
.vn-pebble-dark {
  box-shadow:
    0 28px 72px rgba(0,0,0,0.5),
    0 6px 24px rgba(200,168,122,0.1);
}
.vn-pebble-dark::after {
  border-color: rgba(200,168,122,0.2);
}

/* ── Floating info badge anchored to pebble ── */
.vn-pebble-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #735a3a;
  color: #fff;
  padding: 12px 18px;
  z-index: 5;
  box-shadow: 0 8px 24px rgba(115,90,58,0.35);
}
.vn-pebble-badge-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  line-height: 1;
}
.vn-pebble-badge-sub {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE DESIGN SYSTEM
   Mobile-first breakpoints for full site consistency
   ═══════════════════════════════════════════════════════ */

/* ── HAMBURGER MOBILE NAV ───────────────────────────── */

/* Toggle button — shows on all screen sizes */
.vn-hamburger {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
  position: relative;
}
.vn-hamburger .vn-hamburger-lines span {
  display: block;
  width: 24px;
  height: 2px;
  background: #735a3a;
  transition: all 0.3s ease;
  transform-origin: center;
}
.vn-hamburger.open .vn-hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.vn-hamburger.open .vn-hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.vn-hamburger.open .vn-hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Navigation drawer */
.vn-mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(380px, 88vw);
  height: 100dvh;
  background: #F4F1EA;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 32px 32px 40px;
  box-shadow: 8px 0 40px rgba(0,0,0,0.18);
  transition: left 0.4s cubic-bezier(0.25,1,0.5,1);
  overflow-y: auto;
}
.vn-mobile-nav.open {
  left: 0;
}
.vn-mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,8,5,0.5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.vn-mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.vn-mobile-nav a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #735a3a;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(115,90,58,0.1);
  transition: color 0.2s, padding-left 0.2s;
}
.vn-mobile-nav a:hover {
  padding-left: 8px;
  color: #000101;
}
.vn-mobile-nav .vn-mobile-subnav {
  padding-left: 16px;
}
.vn-mobile-nav .vn-mobile-subnav a {
  font-size: 11px;
  color: #44474a;
  border-bottom-color: rgba(115,90,58,0.06);
}
.vn-mobile-nav-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(115,90,58,0.5);
  padding: 20px 0 8px;
}
.vn-mobile-cta {
  display: block;
  margin-top: 24px;
  text-align: center;
  padding: 14px 24px;
  background: #735a3a;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none !important;
}

/* ── RESPONSIVE BREAKPOINTS ─────────────────────────── */

@media (max-width: 768px) {

  /* Show hamburger, hide desktop nav CTA */
  .vn-hamburger {
    display: flex;
  }

  /* Hero banner height — auto on mobile */
  section[style*="height:380px"] {
    height: auto !important;
    min-height: 320px;
    padding-top: 72px;
    padding-bottom: 40px;
  }

  /* Hero content — padding so text doesn't touch edges */
  section[style*="height:380px"] > div.relative.z-10 {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  /* Hero typography — sub-pages */
  .vn-hero-h1 {
    font-size: clamp(26px, 7vw, 40px) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.01em !important;
    max-width: 100% !important;
    margin-bottom: 14px !important;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4) !important;
  }
  .vn-hero-p {
    font-size: clamp(13px, 3.5vw, 15px) !important;
    line-height: 1.75 !important;
    max-width: 100% !important;
    margin-bottom: 0 !important;
  }
  .vn-hero-tag {
    font-size: 8px;
    padding: 5px 12px;
    letter-spacing: 0.22em;
    margin-bottom: 14px;
  }
  .vn-hero-strip {
    padding: 16px 5%;
    font-size: 7px;
    letter-spacing: 0.15em;
  }
  /* Hide ghost watermark text on mobile (takes up space) */
  section[style*="height:380px"] > div[style*="clamp"] {
    display: none;
  }


  /* Index hero carousel — responsive text on mobile */
  .vn-hero-index-h1 {
    font-size: clamp(28px, 8vw, 44px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.015em !important;
    margin-bottom: 16px !important;
  }
  .vn-hero-index-p {
    font-size: 13px !important;
    line-height: 1.75 !important;
    margin-bottom: 24px !important;
  }
  /* Section headings — scale down on mobile */
  .font-headline-lg,
  [class*="text-headline-lg"] {
    font-size: clamp(20px, 5.5vw, 30px) !important;
    line-height: 1.25 !important;
  }
  .font-display-lg,
  [class*="text-display-lg"] {
    font-size: clamp(26px, 7vw, 40px) !important;
    line-height: 1.15 !important;
    letter-spacing: -0.01em !important;
  }

  /* Pebble shape scaling on mobile */
  .vn-pebble {
    max-width: 260px;
  }
  .vn-pebble-sq {
    max-width: 240px;
  }
  .vn-pebble-wrap {
    padding: 20px;
  }

  /* Bottom nav pill — smaller on mobile */
  nav.fixed.bottom-xl, #bnav {
    bottom: 12px !important;
    padding: 8px 16px !important;
    gap: 16px !important;
    background: #735a3a !important;
    border-radius: 100px !important;
    display: flex !important;
    align-items: center !important;
    box-shadow: 0 8px 40px rgba(115, 90, 58, 0.4) !important;
    border: none !important;
    z-index: 9999 !important;
  }
  nav.fixed.bottom-xl span.font-label-caps, #bnav span.bnav-label {
    font-size: 8px !important;
  }
  nav.fixed.bottom-xl a, #bnav a {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 3px !important;
    text-decoration: none !important;
    color: rgba(255,255,255,0.5) !important;
    transition: opacity 0.25s ease !important;
  }
  nav.fixed.bottom-xl a.active-nav, #bnav a.active-nav,
  nav.fixed.bottom-xl a.opacity-100, #bnav a.opacity-100 {
    opacity: 1 !important;
    color: #ffffff !important;
  }
  nav.fixed.bottom-xl a:hover, #bnav a:hover {
    opacity: 1 !important;
    color: #ffffff !important;
  }

  /* CTA Book button in nav — hide on mobile (drawer has it) */
  header a[href*="contact"],
  header > nav > a[href*="contact"],
  header div:has(> a[href*="contact"]),
  header div.flex.items-center.justify-end {
    display: none !important;
  }

  /* Simple light footer stack on mobile */
  .footer {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
    align-items: center !important;
    padding: 32px 20px 100px !important;
  }
  .footer > div {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .footer a {
    font-size: 10px !important;
  }

  /* Footer bottom — stack on mobile */
  .vn-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* Pebble badge — reposition on mobile */
  .vn-pebble-badge {
    right: -8px;
    bottom: -8px;
    padding: 8px 12px;
  }
  .vn-pebble-badge-title {
    font-size: 16px;
  }

  /* General section horizontal padding */
  .px-xl {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .px-xxl {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (max-width: 480px) {
  /* Very small phones */
  .vn-hero-h1 {
    font-size: clamp(20px, 6vw, 30px) !important;
    line-height: 1.12 !important;
  }
  .vn-hero-index-h1 {
    font-size: clamp(24px, 7.5vw, 36px) !important;
    line-height: 1.1 !important;
  }
  .vn-hero-index-p {
    font-size: 12px !important;
    line-height: 1.7 !important;
    margin-bottom: 20px !important;
  }
  section[style*="height:380px"] {
    min-height: 300px;
    padding-top: 70px;
    padding-bottom: 40px;
  }
  .vn-mobile-nav {
    width: 92vw;
  }
  /* Large section headings below hero */
  h2, .font-headline-lg, [class*="text-headline-lg"] {
    font-size: clamp(20px, 5.5vw, 28px) !important;
    line-height: 1.3 !important;
  }
  h3 {
    font-size: clamp(18px, 5vw, 24px) !important;
  }
}

/* ══════════════════════════════════════════════════════
   SECTION SPACING COMPRESSION — Mobile (≤768px)
   Reduces all oversized Tailwind + inline paddings
   so sections breathe properly on small screens.
   ══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* py-section = 89px → 44px on mobile */
  .py-section {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }

  /* py-xxl / gap-xxl / mb-xxl (55px token) → 28px */
  .py-xxl  { padding-top: 28px !important; padding-bottom: 28px !important; }
  .pt-xxl  { padding-top: 28px !important; }
  .pb-xxl  { padding-bottom: 28px !important; }
  .gap-xxl { gap: 24px !important; }
  .mb-xxl  { margin-bottom: 24px !important; }
  .mt-xxl  { margin-top: 24px !important; }
  .space-y-xxl > * + * { margin-top: 24px !important; }

  /* py-xl / gap-xl / mb-xl (34px token) → 18px */
  .py-xl  { padding-top: 18px !important; padding-bottom: 18px !important; }
  .pt-xl  { padding-top: 18px !important; }
  .pb-xl  { padding-bottom: 18px !important; }
  .gap-xl { gap: 16px !important; }
  .mb-xl  { margin-bottom: 16px !important; }
  .mt-xl  { margin-top: 16px !important; }
  .space-y-xl > * + * { margin-top: 16px !important; }

  /* Inline-style sections: padding:89px → compress */
  section[style*="padding:89px"] {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
  section[style*="padding:60px 0 89px"] {
    padding-top: 36px !important;
    padding-bottom: 44px !important;
  }
  section[style*="padding:89px 0 60px"] {
    padding-top: 44px !important;
    padding-bottom: 32px !important;
  }
  section[style*="padding:60px 0"] {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Footer spacing compress */
  .vn-footer {
    padding-top: 40px !important;
    padding-bottom: 24px !important;
  }

  /* Grid columns: force single column on very small sections */
  /* .grid-cols-3 { grid-template-columns: 1fr !important; } */
  /* .md\:grid-cols-3 { grid-template-columns: 1fr !important; } */

  /* Space-y utility shrink */
  .space-y-xl > * + * { margin-top: 16px !important; }
  .space-y-lg > * + * { margin-top: 12px !important; }
}

@media (max-width: 480px) {
  /* Even tighter on very small phones */
  .py-section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .gap-xxl { gap: 18px !important; }
  .gap-xl  { gap: 12px !important; }
  .mb-xxl  { margin-bottom: 18px !important; }
}

/* Desktop drawer styles */
@media (min-width: 769px) {
  .vn-mobile-nav {
    padding-top: 40px;
  }
}

/* ── HORIZONTAL IMAGE SIDE SCROLL ────────────────── */
.vn-side-scroll-track {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #735a3a rgba(115, 90, 58, 0.1);
}
.vn-side-scroll-track::-webkit-scrollbar {
  height: 6px;
}
.vn-side-scroll-track::-webkit-scrollbar-track {
  background: rgba(115, 90, 58, 0.1);
  border-radius: 100px;
}
.vn-side-scroll-track::-webkit-scrollbar-thumb {
  background: #735a3a;
  border-radius: 100px;
}
.vn-concept-card {
  flex: 0 0 auto;
  width: min(88vw, 560px);
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid rgba(115, 90, 58, 0.18);
  border-radius: 4px;
  padding: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.vn-concept-card:hover {
  border-color: #735a3a;
  box-shadow: 0 12px 36px rgba(10, 8, 5, 0.08);
}

/* ── INTERNAL PROJECT CARD IMAGE SLIDER ───────────── */
.vn-card-slider {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.vn-card-slider::-webkit-scrollbar {
  display: none;
}
.vn-card-slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}
