/* Base Box-Sizing Reset */
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
:root {
  /* Ensure site chrome stays interactive above embedded widgets */
  --vh-layer-progress: 2147483600;
  --vh-layer-header: 2147483500;
  --vh-layer-burger-icon: 2147483501;
  --vh-layer-burger-nav: 2147483490;
  --vh-layer-burger-overlay: 2147483480;
  /* Phase 1 design tokens (homepage-aligned) */
  --vh-font-heading: 'Montserrat', sans-serif;
  --vh-font-body: 'Satoshi', sans-serif;
  --vh-shell-max: 1160px;
  --vh-shell-pad-inline: clamp(16px, 4vw, 24px);
  --vh-shell-hero-top: clamp(56px, 8vw, 96px);
  --vh-shell-hero-bottom: clamp(20px, 3vw, 32px);
  --vh-header-height: 104px;
}

html, body {
  height: 100%;
  width: 100%;
  overscroll-behavior: none;
  /* Disable scroll snap for linear funnel */
  scroll-snap-type: none;
}
  *, *::before, *::after {
    box-sizing: inherit;
  }
  
  /* Global Styles */
  body {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: #FDFAF0;
    font-family: 'montserrat', sans-serif;
  }

/* Phase 1: shared subpage shell + typography system */
body.vh-typography {
  font-family: var(--vh-font-body);
}
body.vh-typography h1,
body.vh-typography h2,
body.vh-typography h3,
body.vh-typography h4,
body.vh-typography h5,
body.vh-typography h6,
body.vh-typography .hero-title,
body.vh-typography .vh-title-xl {
  font-family: var(--vh-font-heading);
}
body.vh-shell main {
  width: 100%;
  padding: 0;
  align-items: stretch;
}
body.vh-shell {
  overflow-x: clip;
}
body.vh-shell .vh-page-shell,
body.vh-shell .wrap {
  max-width: var(--vh-shell-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--vh-shell-pad-inline);
  padding-right: var(--vh-shell-pad-inline);
}
body.vh-shell .vh-page-hero {
  padding-top: var(--vh-shell-hero-top);
  padding-bottom: var(--vh-shell-hero-bottom);
}
/* Hero-first pages should sit flush to viewport top under the fixed header */
body { padding-top: 0; }
@media (max-width: 640px){
  :root { --vh-header-height: 84px; }
}

  
  /* Main Layout */
  main {
    display: flex;
    flex-direction: column;         
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    padding: 20px;
    box-sizing: border-box;
  }
  
  /* Title Section */
  .title-holder {
    text-align: center;
    margin-bottom: 20px;
  }
  
/* Refined logo-img styles for proper sizing and centering */
.logo-img {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  z-index: auto;
  width: 160px;
  max-width: 160px;
  height: auto;
  pointer-events: none;
  display: block;
  margin: 0 auto;
}
  
  /* Tagline */
  .tagline {
    font-size: 0.95em;
    text-align: center;
    color: #FDFAF0;
    margin-top: 8px;
    margin-bottom: 20px;
  }

  #scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #FDFAF0; /* matches your accent color */
    width: 0%;
    z-index: var(--vh-layer-progress);
    transition: width 0.2s ease-out;
  }
  
  /* Fade-in Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  /* Footer */
  footer {
    width: 100%;
    background-color: #0a0a0a;
    color: #FDFAF0;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
    border-top: none;
  }
  
  footer p {
    margin: 5px 0;
  }
  
  footer a {
    color: #FDFAF0;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
  
  footer a:hover {
    color: #FDFAF0;
    text-decoration: underline;
  }
  
  /* Global Link Styling (fallback) */
  a {
    color: #d8ac0e;
    text-decoration: none;
    margin: 0 8px;
  }
  
  a:hover {
    color: #FDFAF0;
    text-decoration: underline;
  }
  
/* Instagram Icon Footer Fix */
.insta-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  
  .insta-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
  }

  .scroll-hint {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9em;
    color: #777;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  .hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .show {
    opacity: 1;
    transform: translateY(0);
  }

  .cta-section {
    text-align: center;
    padding: 40px 20px;
    background: none;
    color: #FDFAF0;
  }
  
  .cta-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
  }
  
  .cta-section p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #ccc;
  }
  
/* Work Page Specific Styling */
.work-header {
  text-align: center;
  margin: 80px 0 40px 0;
}

.work-header h1 {
  font-size: 2.4em;
  color: #FDFAF0;
  margin-bottom: 10px;
}

.work-header p {
  font-size: 1.1em;
  color: #ccc;
  margin: 0 auto;
  max-width: 640px;
}

.video-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 20px;
  max-width: 720px;
  margin: 0 auto;
}

.video-gallery iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  border: none;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(16, 16, 15, 0.3);
}

@media (min-width: 768px) {
  .video-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Burger Menu Drawer Navigation */
header.burger-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  padding: 0 1rem;
  background-color: transparent;
  overflow: visible;
  z-index: var(--vh-layer-header);
}
@media (max-width: 640px){
  header.burger-header { height: 110px; }
}

.vh-nav-social-item {
  margin-top: 20px;
  font-size: 0;
  line-height: 1;
}

.social-icons-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.social-icons-row li {
  list-style: none;
}

.social-icons-row a {
  margin: 0;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 24px;
  align-items: start;
}

.footer-links-grid > div {
  min-width: 0;
}

.footer-links-grid ul {
  justify-items: start;
}

.vh-footer-heading {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .footer-links-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

.vh-mb-16 {
  margin-bottom: 16px !important;
}

.vh-mb-8 {
  margin-bottom: 8px !important;
}

.vh-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.vh-m0 {
  margin: 0 !important;
}

.vh-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.vh-redesign-page {
  background: #090806 !important;
}

body.vh-redesign-page .section-grid {
  gap: 20px;
}

body.vh-redesign-page .bento-item {
  border: 1px solid rgba(253, 250, 240, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(170deg, rgba(253, 250, 240, 0.05), rgba(253, 250, 240, 0.015)),
    rgba(8, 8, 8, 0.68);
  box-shadow: 0 22px 48px rgba(16, 16, 15, 0.36);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

body.vh-redesign-page .bento-item:hover,
body.vh-redesign-page .bento-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(216, 172, 14, 0.5);
  box-shadow: 0 30px 58px rgba(16, 16, 15, 0.48);
}

body.vh-redesign-page .bento-item--title {
  background: linear-gradient(145deg, rgba(9, 9, 9, 0.55), rgba(9, 9, 9, 0.28));
  backdrop-filter: blur(6px);
  border: 1px solid rgba(253, 250, 240, 0.2);
  box-shadow: 0 30px 60px rgba(16, 16, 15, 0.42);
}

body.vh-redesign-page .hero-title {
  color: #fff5d5;
  text-shadow: 0 18px 40px rgba(16, 16, 15, 0.52);
}

body.vh-redesign-page .hero-subtext {
  color: #d5d4cf;
}

body.vh-redesign-page .bento-item h3 {
  color: #fff1cb;
}

body.vh-redesign-page .bento-item,
body.vh-redesign-page .bento-item p,
body.vh-redesign-page .bento-item li,
body.vh-redesign-page .bento-item summary,
body.vh-redesign-page .bento-item strong {
  color: #e9e5dc;
}

body.vh-redesign-page .bento-item a {
  color: var(--fr-accent);
}

body.vh-redesign-page .bento-item.vh-cta-band,
body.vh-redesign-page .bento-item.vh-cta-band h3,
body.vh-redesign-page .bento-item.vh-cta-band p,
body.vh-redesign-page .bento-item.vh-cta-band li,
body.vh-redesign-page .bento-item.vh-cta-band summary,
body.vh-redesign-page .bento-item.vh-cta-band a {
  color: #10100F !important;
}

body.vh-redesign-page .bento-item.vh-cta-band {
  background: var(--fr-accent, #d8ac0e);
  border: 1px solid rgba(16, 16, 15, 0.22);
  box-shadow: 0 16px 28px rgba(16, 16, 15, 0.24);
}

/* Non-CTA accent tiles should remain glass with light text */
body.vh-redesign-page .bento-item.bento-accent:not(.vh-cta-band),
body.vh-redesign-page .bento-item.bento-accent:not(.vh-cta-band) h3,
body.vh-redesign-page .bento-item.bento-accent:not(.vh-cta-band) p,
body.vh-redesign-page .bento-item.bento-accent:not(.vh-cta-band) li,
body.vh-redesign-page .bento-item.bento-accent:not(.vh-cta-band) summary,
body.vh-redesign-page .bento-item.bento-accent:not(.vh-cta-band) strong {
  color: #e9e5dc !important;
}

body.vh-redesign-page .bento-item.bento-accent:not(.vh-cta-band) {
  background: linear-gradient(145deg, rgba(9, 9, 9, 0.55), rgba(9, 9, 9, 0.28)) !important;
  border: 1px solid rgba(253, 250, 240, 0.2) !important;
  box-shadow: 0 30px 60px rgba(16, 16, 15, 0.42) !important;
}

body.vh-redesign-page .bento-item.bento-accent:not(.vh-cta-band) a {
  color: var(--fr-accent) !important;
}

body.vh-redesign-page .vh-page-hero {
  position: relative;
  min-height: min(78vh, 720px);
  overflow: hidden;
  margin: 0 0 34px;
  border-top: 1px solid rgba(253, 250, 240, 0.12);
  border-bottom: 1px solid rgba(253, 250, 240, 0.12);
}

body.vh-redesign-page .vh-page-hero__media {
  position: absolute;
  inset: 0;
}

body.vh-redesign-page .vh-page-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

body.vh-redesign-page .vh-page-hero__overlay {
  position: relative;
  z-index: 1;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  background: transparent;
  padding: clamp(30px, 7vw, 72px) 0;
}

body.vh-redesign-page .vh-page-hero__copy {
  max-width: min(920px, 100%);
  background: linear-gradient(145deg, rgba(9, 9, 9, 0.55), rgba(9, 9, 9, 0.28));
  backdrop-filter: blur(6px);
  border: 1px solid rgba(253, 250, 240, 0.2);
  box-shadow: 0 30px 60px rgba(16, 16, 15, 0.42);
  border-radius: 22px;
  padding: clamp(18px, 3.4vw, 34px);
}

body.vh-redesign-page .vh-page-hero__eyebrow {
  margin: 0 0 10px;
  color: var(--fr-accent);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 700;
}

body.vh-redesign-page .vh-page-hero__title {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 8vw, 5rem);
  line-height: .9;
  letter-spacing: -0.02em;
  color: #fff5d5;
  text-shadow: 0 18px 40px rgba(16, 16, 15, 0.52);
  overflow-wrap: anywhere;
  hyphens: auto;
}

body.vh-redesign-page .vh-page-hero__lead {
  max-width: 60ch;
  margin: 0;
  color: #d5d4cf;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.vh-partner-proof {
  padding: clamp(18px, 3vw, 28px) 0 8px;
  background: #050403;
}

.vh-partner-proof--compact {
  padding: 0;
  margin-top: 18px;
  background: transparent;
}

.vh-partner-proof__card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 24px);
  width: 100%;
  margin: 0;
  padding: clamp(14px, 2.2vw, 20px);
  border-radius: 22px;
  border: 1px solid rgba(216, 172, 14, 0.28);
  background:
    radial-gradient(90% 140% at 0% 0%, rgba(216, 172, 14, 0.16), rgba(216, 172, 14, 0) 54%),
    linear-gradient(170deg, rgba(253, 250, 240, 0.07), rgba(253, 250, 240, 0.018)),
    rgba(7, 7, 6, 0.78);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38);
  color: #f7f1e2;
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.vh-partner-proof__card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 172, 14, 0.54);
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.48);
  color: #fff7df;
  text-decoration: none;
}

.vh-partner-proof__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(148px, 18vw, 206px);
  min-height: 54px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(253, 250, 240, 0.94);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 15, 0.08);
}

.vh-partner-proof__logo {
  display: block;
  width: clamp(120px, 16vw, 176px);
  max-height: 30px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
}

.vh-partner-proof__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.vh-partner-proof__eyebrow {
  color: #d8ac0e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vh-partner-proof__title {
  color: #fff6dc;
  font-family: var(--vh-font-heading);
  font-size: clamp(1.02rem, 1.7vw, 1.32rem);
  line-height: 1.15;
}

.vh-partner-proof__text {
  color: #d5d0c3;
  font-family: var(--vh-font-body);
  font-size: 0.95rem;
  line-height: 1.45;
}

.vh-partner-proof__cta {
  justify-self: end;
  white-space: nowrap;
  border-radius: 999px;
  border: 1px solid rgba(216, 172, 14, 0.46);
  color: #d8ac0e;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 9px 12px;
}

@media (max-width: 820px) {
  .vh-partner-proof__card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .vh-partner-proof__cta {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  body.vh-redesign-page {
    overflow-x: clip;
  }
  body.vh-redesign-page .vh-page-hero {
    min-height: min(72svh, 600px);
  }
  body.vh-redesign-page .vh-page-hero__overlay {
    min-height: min(72svh, 600px);
    align-items: flex-end;
    padding: clamp(24px, 8vw, 42px) 0;
  }
  body.vh-redesign-page .vh-page-hero__copy {
    border-radius: 16px;
    padding: 16px;
  }
  body.vh-redesign-page .vh-page-hero__title {
    font-size: clamp(1.9rem, 9vw, 3.1rem);
    line-height: 0.95;
  }
  body.vh-redesign-page .vh-page-hero__lead {
    font-size: 0.98rem;
    line-height: 1.5;
  }
}

.burger-container {
  position: relative;
  width: min(1240px, calc(100% - 32px));
  height: 88px;
  margin: 14px auto 0;
  padding: 0 22px;
  border-radius: 18px;
  border: 1px solid rgba(253, 250, 240, 0.18);
  background: linear-gradient(170deg, rgba(15, 15, 15, 0.54), rgba(12, 12, 12, 0.26));
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 42px rgba(16, 16, 15, 0.36);
}

.vh-header-logo-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo {
  height: 132px;
  width: auto;
  display: block;
}

.burger-icon {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: var(--vh-layer-burger-icon);
  background: transparent;
  border: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.burger-icon span {
  width: 100%;
  height: 2px;
  background-color: #FDFAF0;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* 3-line open state: top/bottom become X, middle hides */
.burger-icon.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-icon.open span:nth-child(2) {
  opacity: 0;
}

.burger-icon.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Accessible custom focus ring without background fill */
.burger-icon:focus { outline: none; }
.burger-icon:focus-visible {
  outline: 2px solid var(--vh-yellow);
  outline-offset: 3px;
  border-radius: 8px;
  background: transparent;
}

.burger-nav {
  position: static;
  width: auto;
  height: auto;
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: auto;
  overflow: visible;
  pointer-events: auto;
  visibility: visible;
}

.burger-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.burger-nav li {
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  font-family: 'Montserrat', sans-serif;
}

.burger-nav a {
  color: #FDFAF0;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  display: inline-flex;
  align-items: center;
  margin: 0;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.burger-nav a:hover {
  color: #fff5d5;
  border-color: rgba(229, 185, 46, 0.45);
  background: rgba(229, 185, 46, 0.12);
}

.vh-nav-social-item {
  display: none !important;
}

.social-icons-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icons-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sub-nav {
  display: none !important;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(80% 70% at 78% 8%, rgba(216, 172, 14, 0.1), transparent 50%),
    rgba(8, 8, 8, 0.48);
  opacity: 0;
  display: block;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  z-index: var(--vh-layer-burger-overlay);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

@media (max-width: 1024px) {
  header.burger-header {
    height: auto;
    max-height: calc(100vh - 10px);
    overflow: visible;
  }

  .burger-container {
    width: calc(100% - 20px);
    min-height: 72px;
    height: auto;
    padding: 0 16px;
    margin-top: 10px;
    border-radius: 14px;
    align-items: center;
    align-content: flex-start;
    flex-wrap: wrap;
    overflow: hidden;
    transform-origin: top center;
    transition:
      min-height 0.3s ease,
      padding 0.3s ease,
      border-radius 0.3s ease,
      box-shadow 0.3s ease,
      background 0.3s ease,
      border-color 0.3s ease,
      transform 0.3s ease;
  }

  .burger-container:has(.burger-nav.active),
  .burger-container.nav-open {
    min-height: min(calc(100vh - 20px), 560px);
    padding-bottom: 18px;
    align-items: flex-start;
    transform: translateY(2px);
    border-color: rgba(216, 172, 14, 0.28);
    background:
      radial-gradient(120% 80% at 100% 0%, rgba(216, 172, 14, 0.12), transparent 58%),
      linear-gradient(170deg, rgba(13, 13, 12, 0.92), rgba(8, 8, 7, 0.72));
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.58);
  }

  .site-logo {
    height: 96px;
  }

  .burger-icon {
    display: flex;
    position: absolute;
    right: 16px;
    left: auto;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
  }

  .burger-container:has(.burger-nav.active) .burger-icon,
  .burger-container.nav-open .burger-icon {
    top: 36px;
  }

  .burger-nav {
    position: static;
    order: 3;
    flex: 1 0 100%;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 0.38s cubic-bezier(0.2, 0.78, 0.22, 1),
      margin-top 0.32s ease,
      padding-top 0.32s ease,
      opacity 0.24s ease,
      transform 0.34s cubic-bezier(0.2, 0.78, 0.22, 1),
      visibility 0s linear 0.3s;
    z-index: var(--vh-layer-burger-nav);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    visibility: hidden;
  }

  .burger-nav.active {
    max-height: calc(100vh - 120px);
    margin-top: 6px;
    padding-top: 8px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .burger-nav > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .burger-nav li {
    font-size: 1.05rem;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.02em;
    border-bottom: 1px solid rgba(253, 250, 240, 0.1);
    opacity: 0;
    transform: translateY(8px);
    transition:
      opacity 0.28s ease,
      transform 0.34s cubic-bezier(0.2, 0.78, 0.22, 1),
      border-color 0.2s ease;
  }

  .burger-nav li:last-child {
    border-bottom: 0;
  }

  .burger-nav > ul > li:has(+ .vh-nav-cta-item) {
    border-bottom: 0;
  }

  .burger-nav.active > ul > li {
    opacity: 1;
    transform: translateY(0);
  }

  .burger-nav.active > ul > li:nth-child(1) { transition-delay: 0.03s; }
  .burger-nav.active > ul > li:nth-child(2) { transition-delay: 0.06s; }
  .burger-nav.active > ul > li:nth-child(3) { transition-delay: 0.09s; }
  .burger-nav.active > ul > li:nth-child(4) { transition-delay: 0.12s; }
  .burger-nav.active > ul > li:nth-child(5) { transition-delay: 0.15s; }
  .burger-nav.active > ul > li:nth-child(6) { transition-delay: 0.18s; }

  .burger-nav li.vh-nav-cta-item {
    margin-top: 14px;
    padding-top: 14px;
    border-bottom: 0;
    border-top: 1px solid rgba(253, 250, 240, 0.16);
  }

  .burger-nav a {
    width: 100%;
    min-height: 50px;
    border: 0;
    background: transparent;
    border-radius: 0;
    padding: 12px 8px;
    color: #f7f4ea;
    transition: color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
  }

  .burger-nav a:hover {
    color: #fff5d5;
    transform: translateY(-1px);
    background: rgba(253, 250, 240, 0.035);
  }

  .burger-nav a.vh-nav-cta {
    min-height: 46px;
    width: 100%;
    justify-content: center;
    background: #d8ac0e;
    border: 1px solid rgba(216, 172, 14, 0.58);
    border-radius: 999px;
    padding: 12px 16px;
    color: #10100F;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(216, 172, 14, 0.22);
  }

  .burger-nav a.vh-nav-cta:hover {
    color: #10100F;
    background: #e2b51d;
    border-color: rgba(226, 181, 29, 0.72);
  }

  .vh-nav-social-item {
    display: block !important;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(253, 250, 240, 0.16);
    border-bottom: 0 !important;
    text-align: center;
  }

  .vh-nav-social-item::before {
    content: "Follow Vertical Haus";
    display: block;
    margin: 0 0 12px;
    color: rgba(253, 250, 240, 0.58);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .vh-nav-social-item .social-icons-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .vh-nav-social-item .social-icons-row li {
    border: 0 !important;
    margin: 0;
    padding: 0;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .vh-nav-social-item .social-icons-row a {
    width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(253, 250, 240, 0.24) !important;
    background: rgba(253, 250, 240, 0.05) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-shadow: none !important;
    transform: none;
    transition:
      background-color 0.2s ease,
      border-color 0.2s ease,
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  .vh-nav-social-item .social-icons-row a:hover {
    border-color: rgba(229, 185, 46, 0.52) !important;
    background: rgba(229, 185, 46, 0.14) !important;
    transform: translateY(-2px);
  }

  .burger-nav.active ~ .burger-icon.open,
  .burger-icon.open {
    z-index: var(--vh-layer-burger-icon);
  }
}

@keyframes vh-soft-rise {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes vh-soft-pop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.home-solid .vh-proof-point,
body.home-solid .service-panel,
body.home-solid .recent-work__card,
body.home-solid .vh-case-study__metric,
.vh-partner-proof__card {
  will-change: opacity, transform;
}

body.home-solid .vh-partner-proof.aos-animate .vh-partner-proof__card,
body.home-solid .vh-proof-strip.aos-animate .vh-proof-point,
body.home-solid #services.aos-animate .service-panel,
body.home-solid .recent-work.aos-animate .recent-work__card {
  animation: vh-soft-rise 0.72s cubic-bezier(0.18, 0.78, 0.22, 1) both;
}

body.home-solid .fr-media-cta.aos-animate .vh-case-study__metric {
  animation: vh-soft-pop 0.46s cubic-bezier(0.18, 0.78, 0.22, 1) both;
}

body.home-solid .vh-proof-strip.aos-animate .vh-proof-point:nth-child(2),
body.home-solid #services.aos-animate .service-panel:nth-child(2),
body.home-solid .recent-work.aos-animate .recent-work__card:nth-child(2),
body.home-solid .fr-media-cta.aos-animate .vh-case-study__metric:nth-child(2) {
  animation-delay: 0.08s;
}

body.home-solid .vh-proof-strip.aos-animate .vh-proof-point:nth-child(3),
body.home-solid #services.aos-animate .service-panel:nth-child(3),
body.home-solid .recent-work.aos-animate .recent-work__card:nth-child(3),
body.home-solid .fr-media-cta.aos-animate .vh-case-study__metric:nth-child(3) {
  animation-delay: 0.16s;
}

body.home-solid .vh-proof-strip.aos-animate .vh-proof-point:nth-child(4),
body.home-solid .recent-work.aos-animate .recent-work__card:nth-child(4) {
  animation-delay: 0.24s;
}

body.home-solid .recent-work.aos-animate .recent-work__card:nth-child(5) {
  animation-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .burger-container,
  .burger-icon span,
  .burger-nav,
  .burger-nav li,
  .burger-nav a,
  .vh-nav-social-item .social-icons-row a,
  body.home-solid .vh-partner-proof.aos-animate .vh-partner-proof__card,
  body.home-solid .vh-proof-strip.aos-animate .vh-proof-point,
  body.home-solid #services.aos-animate .service-panel,
  body.home-solid .recent-work.aos-animate .recent-work__card,
  body.home-solid .fr-media-cta.aos-animate .vh-case-study__metric {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  body.home-solid .vh-partner-proof.aos-animate .vh-partner-proof__card,
  body.home-solid .vh-proof-strip.aos-animate .vh-proof-point,
  body.home-solid #services.aos-animate .service-panel,
  body.home-solid .recent-work.aos-animate .recent-work__card,
  body.home-solid .fr-media-cta.aos-animate .vh-case-study__metric {
    opacity: 1 !important;
  }
}


.ai-innovation-flex {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ai-text {
  flex: 1 1 60%;
}

.ai-gif {
  flex: 1 1 35%;
  max-width: 400px;
}

@media (max-width: 768px) {
  .ai-innovation-flex {
    flex-direction: column;
  }
  .ai-gif {
    max-width: 100%;
  }
}
.ai-gif-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.ai-gif-row img {
  max-width:100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
  border-radius: 8px;
  display: block;
}

@media (max-width: 768px) {
  .ai-gif-row {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .ai-gif-row img {
    max-width: 100%;
  }
}
/* ---------- Full‑Page Scroll Layout ---------- */
/* Disabled scroll snap for funnel */
/* html, body {
  /* Enable vertical scroll snap */
  /* scroll-snap-type: y mandatory;
} */

/* Each major content section fills the viewport and snaps cleanly */
.about-section,
.cta-section,
.contact-section {
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically centre content */
  align-items: center;
  padding: 0 5vw;
  scroll-snap-align: none;
}


/* ---------- Heading Styling ---------- */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.2;
  margin: 2rem 0 1rem 0;
  text-transform: none;
  text-align: center;
}

/* Mobile heading size tweak */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
    margin: 1.5rem 0 1rem 0;
  }
}
/* Ensure first section scrolls correctly below the fixed header */
.intro-section {
  scroll-snap-align: start;
  scroll-margin-top: 90px;
  padding-top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.full-bleed-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0;
  z-index: 0;
}
/* ---------- Parallax GIF layer ---------- */
.parallax-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;           /* behind overlay text (which is z-index:2) */
}
.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.text-overlay {
  position: relative;
  z-index: 2;
  padding: 5vw;
}

/* ---------- Intro Hero Refinements ---------- */
/* ---------- Parallax Section Containers ---------- */
.intro-section,
#about,
#work-with-us {
  position: relative;
  overflow: hidden;
}
.intro-section .hero-overlay {
  /* overlay spans full viewport */
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;      /* align text to the left */
  padding-left: 5vw;            /* left gutter */
  padding-right: 5vw;
  background: none;                            
  color: #FDFAF0;
  text-align: left;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(4rem, 8vw, 8rem);  /* ≈6× original size */
  line-height: 0.9;
  margin: 0 0 1rem 0;
  text-transform: none;
}

.hero-subtext {
  font-family: 'montserrat', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); /* roughly 2× previous */
  line-height: 1.6;
  max-width: 680px;
  margin: 0;
  color: #f1f1f1;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
  .hero-subtext {
    font-size: 1.15rem;
  }
}
/* ---------- Right-Aligned Stacked Section ---------- */
.right-align {
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 0 5vw;
  scroll-snap-align: start;
  position: relative;
  text-align: right;
}

.hero-title.right-align {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 0.9;
  top: 0;
  margin: 0 0 1rem 0;
  text-transform: none;
  text-align: right;
}

.hero-subtext.right-align {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.6;
  max-width: 680px;
  color: #f1f1f1;
  margin: 0;
  text-align: right;
  z-index: 1;
}

@media (max-width: 768px) {
  .right-align .hero-title {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }
  .right-align .hero-subtext {
    font-size: 1.15rem;
  }
}


/* ---------- Contact Form Styling ---------- */
.contact-form-wrapper {
  width: 100%;
  max-width: 680px;
  padding: 40px 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  border: 1px solid #444;
  border-radius: 4px;
  background: #10100F;
  color: #FDFAF0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #f2f2f2;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .contact-submit {
  width: 100%;
  max-width: none;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 600;
  box-sizing: border-box;
  align-self: stretch;
}
/* ---------- Work-With-Us hero (independent of intro) ---------- */
.work-section{
  position: relative;
  overflow: hidden;
  min-height: 100vh;          /* grows with form on tall screens */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 5vw;
  scroll-snap-align: start;
}

/* background GIF layer */
.work-section .full-bleed-gif{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* text + form overlay */
.work-section .hero-overlay{
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.work-section .hero-title{
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: clamp(3rem,8vw,6rem);
  line-height: .9;
  margin: 0 0 1rem 0;
}

.work-section .hero-subtext{
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(1.2rem,2vw,1.4rem);
  line-height: 1.6;
  margin: 0 0 2rem 0;
  max-width: 680px;
}
.intro-text-box {
  background: rgb(16, 16, 15, 0.6); /* transparent white */
  padding: 2rem;
  border-radius: 12px 12px 12px 12px; /* rounded on visible side */
  margin-left: -5vw; /* stretch off-screen */
  max-width: 680px;
  z-index: 1;
  position: relative;
}
.intro-text-box-right {
  background: rgb(16, 16, 15, 0.6); /* transparent white */
  padding: 2rem;
  border-radius: 12px 12px 12px 12px; /* rounded on visible side */
  margin-right: -1vw; /* stretch off-screen */
  max-width: 680px;
  z-index: 1;
  position: relative;
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #FDFAF0;
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 10;
  pointer-events: none;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

details p {
  color: #d8ac0e; /* sub-text from drop down */
}

/* Utilities and brand accents for new layout */
:root{ --vh-yellow:#d8ac0e; }
.vh-center{ text-align:center; }
.vh-subtitle{ font-family:'Montserrat',sans-serif; font-weight:500; font-size:clamp(1.2rem,3.5vw,1.8rem); color:var(--vh-yellow); margin:0 0 12px 0; }
.vh-subtitle--lg{ font-size:clamp(1.8rem,4.6vw,2.8rem); }
.vh-subtitle--xl{ font-size:clamp(2.2rem,5vw,3.4rem); }
.recent-work__title{ font-size:clamp(2.8rem,6vw,4.6rem); line-height:1.08; }
.recent-work__title--xl{ font-size:clamp(4rem,9vw,7.2rem); line-height:1.05; letter-spacing:-0.02em; }
.recent-work__subtitle{ margin:6px 0 12px; }
/* Card layout used on Services tiles */
.vh-card{ display:flex; flex-direction:column; align-items:center; text-align:center; }
.vh-card ul{ text-align:left; margin-left:18px; }
.vh-btn-cta{ background:var(--vh-yellow)!important; color:#10100F!important; border:none!important; }

/* --- Readability: add subtle text shadow to section titles --- */
.hero-title,
.hero-title.right-align,
.work-section .hero-title {
  text-shadow: 0 2px 6px rgba(16, 16, 15, 0.55), 0 0 22px rgba(16, 16, 15, 0.35);
}

.vh-title-xl,
.vh-subtitle {
  text-shadow: 0 1px 4px rgba(16, 16, 15, 0.45);
}
