/* =============================================
   HENZA EVENTS — Premium Stylesheet
   Palette: Dark Slate (#0B1120) + Champagne Gold (#C8A96E)
   Headings: Playfair Display | Body: Inter
   Mobile-first, 320px → 1440px
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

/* ─── Design Tokens ─── */
:root {
  /* Colors */
  --slate:        #0B1120;
  --slate-mid:    #111827;
  --slate-soft:   #1F2937;
  --champagne:    #C8A96E;
  --champ-light:  #DFC08A;
  --champ-dim:    rgba(200,169,110,0.10);
  --champ-border: rgba(200,169,110,0.22);
  --cream:        #FAF7F2;
  --warm-gray:    #F4F1EC;
  --white:        #FFFFFF;
  --text-body:    #4B5563;
  --text-muted:   #9CA3AF;
  --border:       rgba(11,17,32,0.08);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(11,17,32,0.07);
  --shadow-md:  0 8px 32px rgba(11,17,32,0.14);
  --shadow-lg:  0 24px 64px rgba(11,17,32,0.20);
  --shadow-xl:  0 40px 90px rgba(11,17,32,0.28);

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* Transitions */
  --ease: all 0.30s cubic-bezier(0.4,0,0.2,1);

  /* Fonts */
  --heading: 'Playfair Display', serif;
  --body:    'Inter', sans-serif;

  /* Section spacing */
  --section-py: 6rem;
  --section-px: 5%;
}

/* ─── Page Enter Overlay (cinematic fade-in) ─── */
#page-enter {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--slate);
  pointer-events: none;
  animation: pageEnter 1s cubic-bezier(0.77,0,0.18,1) 0.1s both;
}
@keyframes pageEnter {
  0%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* ─── Scroll Progress Bar ─── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1002;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--champagne), var(--champ-light));
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px rgba(200,169,110,0.6);
}

/* ─── Base Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--heading);
  line-height: 1.08;
  font-weight: 400;
}
/* Hero H1 — large bold heading */
h1 {
  font-size: clamp(3.0rem, 7vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
}
/* Section H2 */
h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  color: var(--slate);
}
h2.light { color: var(--white); }
h2 em { font-style: italic; color: var(--champagne); font-weight: 400; }
h3 { font-size: 1.2rem; font-weight: 500; }
p { line-height: 1.85; font-size: 0.95rem; }

/* ─── Eyebrow Labels ─── */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--champagne);
  padding: 0.35rem 1rem;
  border: 1px solid var(--champ-border);
  border-radius: 100px;
  margin-bottom: 1.4rem;
  /* Subtle shimmer */
  background: linear-gradient(90deg, transparent 30%, rgba(200,169,110,0.18) 50%, transparent 70%) no-repeat;
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
}
.eyebrow.dark  { color: var(--champagne); border-color: rgba(200,169,110,0.25); }
.eyebrow.light { color: var(--champagne); border-color: rgba(200,169,110,0.30); }

/* ─── Section Header ─── */
.section-hd { text-align: center; margin-bottom: 4rem; }
.section-hd .sub { font-size: 0.97rem; color: var(--text-body); max-width: 580px; margin: 1rem auto 0; }
.section-hd .sub.light { color: rgba(255,255,255,0.60); }
.section-hd .sub.dark  { color: var(--text-body); }

/* Accessibility focus */
*:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--champagne); color: var(--slate);
  padding: 0.9rem 2.2rem;
  border: 1.5px solid var(--champagne);
  border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase;
  transition: var(--ease);
  min-height: 48px;
  animation: ctaPulse 3.5s ease-in-out infinite;
}
.btn-primary:hover {
  background: transparent;
  color: var(--champagne);
}

.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: 0.9rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: var(--r-sm);
  font-weight: 500; font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase;
  transition: var(--ease);
  min-height: 48px;
}
.btn-ghost:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

/* Nav CTA button (hidden on mobile) */
.btn-nav {
  display: none;
  background: var(--champagne); color: var(--slate);
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.5px;
  transition: var(--ease);
  min-height: 44px; align-items: center;
}
.btn-nav:hover { background: var(--champ-light); }

/* ═══════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 90px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
/* Solid on scroll */
#navbar.scrolled {
  height: 70px;
  background: rgba(11, 17, 32, 0.90);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(200, 169, 110, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1240px; margin: 0 auto; height: 100%;
  padding: 0 var(--section-px);
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}

/* Brand */
.nav-brand { 
  display: flex; align-items: center; gap: 10px; 
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.nav-logo {
  width: 36px; height: 36px;
  background: var(--champagne); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-size: 1.15rem; font-weight: 700;
  color: var(--slate); flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-brand:hover .nav-logo { transform: rotate(-5deg) scale(1.08); box-shadow: 0 4px 15px rgba(200,169,110,0.4); }
.nav-logo-img {
  height: 54px; width: auto; max-width: 200px;
  object-fit: contain;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
#navbar.scrolled .nav-logo-img { height: 44px; }
.nav-brand:hover .nav-logo-img { transform: scale(1.05); filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(200,169,110,0.5)); }
.nav-brand-text { font-family: var(--heading); font-size: 1.45rem; font-weight: 500; color: var(--white); }
.nav-brand-text em { font-style: italic; color: var(--champagne); }

/* Hide navbar background and blur logo when menu open */
#navbar.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}
#navbar.menu-open .nav-brand {
  opacity: 0;
  filter: blur(10px);
  pointer-events: none;
}

/* Nav links */
.nav-links { display: none; align-items: center; gap: 3rem; }
.nav-link {
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2.2px;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}
.nav-link::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--champagne);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; box-shadow: 0 0 8px rgba(200,169,110,0.6); }

/* ─── Hamburger ─── */
.hamburger {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end; gap: 4px;
  width: 36px; height: 30px; padding: 0;
  z-index: 1001; /* Keep above mobile menu */
  background: transparent; border-radius: 50%;
  border: none;
  transition: all 0.4s ease;
  cursor: pointer;
}
.hamburger:hover { opacity: 0.8; }
.hamburger span {
  display: block; height: 1px;
  background: var(--white); border-radius: 1px;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55), width 0.4s ease, opacity 0.3s ease, background 0.3s ease;
  margin-left: auto;
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger:hover span:nth-child(2) { width: 24px; }

/* Hamburger Open Animation */
.hamburger.open span:nth-child(1) { width: 24px; transform: translateY(6px) rotate(45deg); background: var(--champagne); }
.hamburger.open span:nth-child(2) { width: 0; opacity: 0; }
.hamburger.open span:nth-child(3) { width: 24px; transform: translateY(-6px) rotate(-45deg); background: var(--champagne); }

/* ─── Mobile Menu ─── */
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(11,17,32,0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  z-index: 985;
  opacity: 0; pointer-events: none;
  transition: opacity 0.5s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; left: auto;
  background: rgba(11,17,32,0.98);
  border-left: 1px solid rgba(200,169,110,0.15);
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
  z-index: 1005; /* Above navbar so it covers it */
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-start;
  padding: 100px 3rem 3rem 3rem;
  opacity: 0; pointer-events: none; transform: translateX(100%);
  transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1);
  width: 75%; max-width: 450px;
}
.mobile-menu.open { opacity: 1; pointer-events: all; transform: translateX(0); }

.mobile-close { 
  display: flex;
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--white);
  transition: all 0.4s ease;
  cursor: pointer;
}
.mobile-close:hover {
  border-color: var(--champagne);
  color: var(--champagne);
  transform: rotate(90deg);
  background: rgba(200,169,110,0.05);
}

.mobile-menu ul { 
  display: flex; flex-direction: column; gap: 2.5rem; width: 100%; align-items: flex-start; 
  margin-top: 2rem;
}
.mobile-menu li {
  opacity: 0; transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.mobile-menu.open li { opacity: 1; transform: translateX(0); }
.mobile-menu.open li:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.open li:nth-child(2) { transition-delay: 0.25s; }
.mobile-menu.open li:nth-child(3) { transition-delay: 0.35s; }
.mobile-menu.open li:nth-child(4) { transition-delay: 0.45s; }
.mobile-menu.open li:nth-child(5) { transition-delay: 0.55s; }
.mobile-menu.open li:nth-child(6) { transition-delay: 0.65s; }

.mobile-link {
  font-family: var(--heading); font-size: 1.7rem;
  font-weight: 400; color: rgba(255,255,255,0.9);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  display: inline-block; position: relative;
  transform-origin: left center;
  letter-spacing: 1px;
}
.mobile-link:hover { color: var(--champagne); transform: translateX(8px); }
.mobile-link::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width 0.4s ease;
}
.mobile-link:hover::after { width: 100%; box-shadow: 0 0 8px rgba(200,169,110,0.4); }

/* ═══════════════════════════════════════════════
   HERO — Cinematic full-screen redesign
════════════════════════════════════════════════ */
#home {
  min-height: 100vh; height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--section-px);
  overflow: hidden;
  background: var(--slate);
}

/* ── Cinematic video background ── */
.hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: brightness(0.65) saturate(1.15);
  animation: heroVideoZoom 30s ease-in-out infinite alternate;
}
@keyframes heroVideoZoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1.15); }
}

/* ── Animated background image layers (carousel fallback) ── */
.hero-bg-layer {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.15);
  will-change: opacity, transform;
  transition:
    opacity   2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 14s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.hero-bg-layer.active {
  opacity: 1;
  transform: scale(1.0);
}

/* ── Multi-stop cinematic overlay — richer depth ── */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(11,17,32,0.35) 0%, rgba(11,17,32,0.80) 100%),
    linear-gradient(180deg,
      rgba(11,17,32,0.75) 0%,
      rgba(11,17,32,0.15) 35%,
      rgba(11,17,32,0.10) 50%,
      rgba(11,17,32,0.50) 75%,
      rgba(11,17,32,0.85) 100%
    );
  pointer-events: none;
}
/* Vignette edge effect */
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(11,17,32,0.45) 100%);
  pointer-events: none;
}

/* ── Floating ambient particles ── */
.hero-particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(200, 169, 110, 0.35);
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}
.particle:nth-child(1) { left: 10%; animation-duration: 18s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation-duration: 22s; animation-delay: 3s; }
.particle:nth-child(3) { left: 40%; animation-duration: 16s; animation-delay: 1s; width: 2px; height: 2px; }
.particle:nth-child(4) { left: 55%; animation-duration: 24s; animation-delay: 5s; }
.particle:nth-child(5) { left: 70%; animation-duration: 20s; animation-delay: 2s; width: 4px; height: 4px; }
.particle:nth-child(6) { left: 82%; animation-duration: 19s; animation-delay: 4s; }
.particle:nth-child(7) { left: 92%; animation-duration: 21s; animation-delay: 6s; width: 2px; height: 2px; }
.particle:nth-child(8) { left: 5%;  animation-duration: 25s; animation-delay: 7s; }

@keyframes particleFloat {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

/* ── Decorative golden frame corners (all four) ── */
.hero-corner {
  position: absolute; z-index: 3; pointer-events: none;
  width: 70px; height: 70px;
  opacity: 0;
  animation: heroCornerIn 1.4s ease 1.6s forwards;
}
.hero-corner--tl {
  top: 36px; left: 36px;
  border-top: 1px solid rgba(200,169,110,0.40);
  border-left: 1px solid rgba(200,169,110,0.40);
}
.hero-corner--tr {
  top: 36px; right: 36px;
  border-top: 1px solid rgba(200,169,110,0.40);
  border-right: 1px solid rgba(200,169,110,0.40);
}
.hero-corner--bl {
  bottom: 36px; left: 36px;
  border-bottom: 1px solid rgba(200,169,110,0.40);
  border-left: 1px solid rgba(200,169,110,0.40);
}
.hero-corner--br {
  bottom: 36px; right: 36px;
  border-bottom: 1px solid rgba(200,169,110,0.40);
  border-right: 1px solid rgba(200,169,110,0.40);
}

/* ── Hero content (above all layers) ── */
.hero-inner {
  position: relative; z-index: 4;
  max-width: 860px; margin: 0 auto; width: 100%;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0;
}

.hero-text {
  display: flex; flex-direction: column; align-items: center;
}

/* ── Eyebrow badge with star icons ── */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 4.5px; text-transform: uppercase;
  color: var(--champagne);
  padding: 0.5rem 1.6rem;
  border: 1px solid rgba(200,169,110,0.30);
  border-radius: 100px;
  background: linear-gradient(90deg, transparent 30%, rgba(200,169,110,0.12) 50%, transparent 70%) no-repeat;
  background-size: 200% auto;
  animation: shimmer 6s linear infinite;
  opacity: 0; transform: translateY(24px);
}
.hero-eyebrow svg {
  width: 10px; height: 10px;
  opacity: 0.7;
  stroke: var(--champagne);
  fill: none;
}
.hero-eyebrow.hero-visible {
  animation: heroItemIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards, shimmer 6s linear 0.9s infinite;
}

/* ── Gold decorative divider with diamond ── */
.hero-divider-line {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  width: 0; height: auto;
  margin: 1.8rem auto;
  opacity: 0;
  position: relative;
}
.hero-divider-line::before,
.hero-divider-line::after {
  content: '';
  height: 1px; flex: 1;
  background: linear-gradient(90deg, transparent, var(--champagne));
}
.hero-divider-line::after {
  background: linear-gradient(90deg, var(--champagne), transparent);
}
.hero-divider-diamond {
  width: 8px; height: 8px;
  background: var(--champagne);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: 0 12px;
  box-shadow: 0 0 12px rgba(200,169,110,0.5);
}
.hero-divider-line.hero-visible {
  animation: heroDividerIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── Large hero heading — cinematic scale ── */
#home h1 {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 8vw, 5.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 1.8rem;
  letter-spacing: -1px;
  opacity: 0; transform: translateY(35px);
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
#home h1.hero-visible {
  animation: heroItemIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
#home h1 em {
  color: var(--champagne); font-style: italic; font-weight: 400;
}

/* ── Subheading ── */
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.95;
  max-width: 560px; margin: 0 auto 3rem;
  opacity: 0; transform: translateY(24px);
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-sub.hero-visible {
  animation: heroItemIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── CTA buttons row ── */
.hero-btns {
  display: flex; gap: 1.2rem; flex-wrap: wrap;
  justify-content: center;
  opacity: 0; transform: translateY(24px);
}
.hero-btns.hero-visible {
  animation: heroItemIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Primary CTA with glow */
.hero-btn-glow {
  position: relative;
  overflow: visible;
}
.hero-btn-glow::before {
  content: '';
  position: absolute; inset: -4px;
  border-radius: inherit;
  background: var(--champagne);
  opacity: 0;
  filter: blur(18px);
  z-index: -1;
  transition: opacity 0.4s ease;
}
.hero-btn-glow:hover::before {
  opacity: 0.30;
}
#home .btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
}
#home .btn-primary svg {
  transition: transform 0.3s ease;
}
#home .btn-primary:hover svg {
  transform: translateX(5px);
}

/* ── Hero Bottom Bar ── */
.hero-bottom-bar {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 5;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 40px 36px;
  pointer-events: none;
}
.hero-bottom-bar > * { pointer-events: auto; }

/* Slide indicator */
.hero-slide-indicator {
  display: flex; align-items: center; gap: 14px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 2.0s forwards;
}
.hero-slide-label {
  font-family: var(--body);
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.40);
}

/* Dot indicators */
.hc-dots {
  display: flex; gap: 6px; align-items: center;
}
.hc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; padding: 0; flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.hc-dot.active {
  background: var(--champagne); border-color: var(--champagne);
  width: 28px; border-radius: 4px;
  box-shadow: 0 0 14px rgba(200,169,110,0.45);
}

/* ── Scroll cue — Mouse icon ── */
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 2.2s forwards;
}
.scroll-mouse {
  width: 22px; height: 34px;
  border: 1.5px solid rgba(200,169,110,0.50);
  border-radius: 12px;
  display: flex; justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--champagne);
  border-radius: 3px;
  animation: scrollWheelBounce 2s ease-in-out infinite;
}
@keyframes scrollWheelBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(8px); opacity: 0.3; }
}
.scroll-cue span {
  font-size: 0.52rem; letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(200,169,110,0.50); font-weight: 500;
}

/* ── Hero Keyframes ── */
@keyframes heroItemIn {
  from { opacity: 0; transform: translateY(35px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroDividerIn {
  from { opacity: 0; width: 0; }
  to   { opacity: 1; width: 120px; }
}
@keyframes heroCornerIn {
  from { opacity: 0; transform: scale(0.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Old carousel classes kept for JS compatibility — not visually shown */
.hero-carousel-wrap { display: none; }
.hero-carousel { display: none; }
.hc-track { display: none; }
.hc-slide { display: none; }
.hc-caption { display: none; }
.hc-controls { display: none; }
.hc-btn { display: none; }

/* Hero stats (kept for backward compat) */
.hero-stats { display: none; }
.h-stat { display: none; }

/* Est. badge (kept for backward compat) */
.hero-img-badge { display: none; }

/* ═══════════════════════════════════════════════
   STATS BAR — Animated counters
════════════════════════════════════════════════ */
#stats {
  background: var(--slate);
  padding: 3rem var(--section-px);
  border-top: 1px solid rgba(200,169,110,0.12);
  border-bottom: 1px solid rgba(200,169,110,0.12);
}
.stats-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.stat-item { flex: 1; min-width: 140px; text-align: center; padding: 0.8rem 1rem; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.07); flex-shrink: 0; }
.stat-num {
  display: block;
  font-family: var(--heading);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 500; color: var(--champagne);
  line-height: 1;
}
.stat-lbl {
  display: block; font-size: 0.67rem;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.38); margin-top: 6px;
}

/* ═══════════════════════════════════════════════
   ABOUT — Premium two-column layout
════════════════════════════════════════════════ */
#about {
  background: var(--cream);
  padding: var(--section-py) var(--section-px);
  overflow: hidden;
}

.about-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Image column ── */
.about-images {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

/* Primary image with gold accent frame */
.about-img-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-hero-img {
  width: 100%; height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-img-frame:hover .about-hero-img {
  transform: scale(1.04);
}

/* Gold accent border offset */
.about-img-accent {
  position: absolute;
  top: -10px; left: -10px;
  width: 40%; height: 40%;
  border-top: 2px solid var(--champagne);
  border-left: 2px solid var(--champagne);
  border-radius: var(--r-lg) 0 0 0;
  pointer-events: none;
  opacity: 0.50;
  z-index: 1;
}

/* Secondary image — overlaps bottom-right */
.about-img-secondary-wrap {
  position: absolute;
  bottom: -30px; right: -15px;
  width: 48%; max-width: 220px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-secondary-img {
  width: 100%; height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-img-secondary-wrap:hover .about-secondary-img {
  transform: scale(1.05);
}

/* Floating badge */
.about-badge {
  position: absolute;
  top: -16px; right: 20px;
  background: var(--champagne); color: var(--slate);
  padding: 0.8rem 1.1rem; border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 3;
  transition: transform 0.3s ease;
}
.about-badge:hover { transform: translateY(-3px); }
.about-badge span {
  font-size: 0.58rem; display: block;
  text-transform: uppercase; letter-spacing: 2px;
  font-weight: 500; opacity: 0.8;
}
.about-badge strong {
  font-family: var(--heading);
  font-size: 1.8rem; font-weight: 600;
  display: block; line-height: 1.1;
}

/* ── Text column ── */
.about-text {
  align-self: center;
}
.about-text h2 {
  margin-bottom: 0;
  line-height: 1.12;
}

/* Gold divider accent */
.about-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--champagne), rgba(200,169,110,0.3));
  margin: 1.4rem 0 1.8rem;
  border-radius: 2px;
}

/* Lead paragraph — slightly larger */
.about-lead {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 0.8rem;
}

/* Detail paragraph — lighter */
.about-detail {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 2.4rem;
}

/* ── Check-list with icon circles ── */
.check-list {
  margin-bottom: 2.6rem;
  display: flex; flex-direction: column;
  gap: 1.2rem;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 1rem;
}

.check-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--champ-dim);
  border: 1px solid var(--champ-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--champagne);
  margin-top: 2px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.check-list li:hover .check-icon {
  transform: scale(1.1);
  background: rgba(200,169,110,0.18);
}

.check-list li div strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 2px;
  line-height: 1.3;
}
.check-list li div span {
  display: block;
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* About CTA with arrow */
#about .btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
}
#about .btn-primary svg {
  transition: transform 0.3s ease;
}
#about .btn-primary:hover svg {
  transform: translateX(5px);
}

/* ═══════════════════════════════════════════════
   SERVICES — Premium image cards with overlay
════════════════════════════════════════════════ */
#services {
  background: var(--slate);
  padding: var(--section-py) var(--section-px);
}

.svc-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 1.2rem;
}

/* ── Service card — full image tile ── */
.svc-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 340px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

/* Full-bleed image */
.svc-card > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.svc-card:hover > img {
  transform: scale(1.10);
}

/* ── Persistent gradient overlay ── */
.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(11,17,32,0.92) 0%,
    rgba(11,17,32,0.60) 35%,
    rgba(11,17,32,0.15) 65%,
    rgba(11,17,32,0.05) 100%
  );
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.8rem;
  transition: background 0.5s ease;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(
    to top,
    rgba(11,17,32,0.95) 0%,
    rgba(11,17,32,0.70) 40%,
    rgba(11,17,32,0.25) 70%,
    rgba(11,17,32,0.10) 100%
  );
}

/* Service number */
.svc-num {
  font-family: var(--heading);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 3px;
  color: var(--champagne);
  opacity: 0.7;
  margin-bottom: 0.6rem;
  display: block;
}

/* Title */
.svc-overlay h3 {
  font-family: var(--heading);
  font-size: 1.4rem; font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  transition: transform 0.4s ease;
}
.svc-card:hover .svc-overlay h3 {
  transform: translateY(-4px);
}

/* Description — visible on hover */
.svc-overlay p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.60);
  line-height: 1.7;
  margin-bottom: 0.9rem;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease 0.1s;
}
.svc-card:hover .svc-overlay p {
  max-height: 80px;
  opacity: 1;
}

/* Enquire link — slides up on hover */
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body);
  font-size: 0.72rem; font-weight: 600;
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s, gap 0.25s ease;
}
.svc-card:hover .svc-link {
  opacity: 1;
  transform: translateY(0);
}
.svc-link:hover { gap: 12px; }
.svc-link svg {
  transition: transform 0.3s ease;
}
.svc-link:hover svg {
  transform: translateX(3px);
}

/* ── Gold top border accent on hover ── */
.svc-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--champagne), rgba(200,169,110,0.3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.svc-card:hover::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════════════
   WHY CHOOSE US — Two-column image + content
════════════════════════════════════════════════ */
#why-us {
  background: var(--warm-gray);
  padding: var(--section-py) var(--section-px);
}

.why-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 3.5rem; align-items: center;
}

/* Image collage (same visuals as previous "Our Catering Promise") */
.why-images {
  display: flex; gap: 0.8rem;
  width: 100%; max-width: 520px; height: 340px;
}
.cg-main {
  flex: 1.4; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cg-main img {
  width: 100%; height: 100%; object-fit: cover;
  transform: translateY(var(--px-y, 0)) scale(1);
  transition: transform 0.45s ease;
}
.cg-main:hover img { transform: translateY(var(--px-y, 0)) scale(1.04); }
.cg-stack {
  flex: 1; display: flex; flex-direction: column; gap: 0.8rem;
}
.cg-stack img {
  flex: 1; width: 100%; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transform: translateY(calc(var(--px-y, 0) * -0.9)) scale(1);
  transition: transform 0.45s ease;
}
.cg-stack img:hover { transform: translateY(calc(var(--px-y, 0) * -0.9)) scale(1.04); }

/* Text side */
.why-text { width: 100%; align-self: center; }
.why-text h2 { margin-bottom: 1.2rem; }
.why-text > p { color: var(--text-body); margin-bottom: 2rem; }

/* Icon + point list */
.why-list {
  display: flex; flex-direction: column;
  gap: 1.1rem; margin-bottom: 2.5rem;
}
.why-list li {
  display: flex; align-items: flex-start; gap: 1rem;
}
.why-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--champ-dim); border: 1px solid var(--champ-border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--champagne);
  margin-top: 2px;
}
.why-list li div strong {
  display: block; font-size: 0.9rem;
  font-weight: 600; color: var(--slate); margin-bottom: 2px;
}
.why-list li div span {
  display: block; font-size: 0.84rem;
  color: var(--text-body); line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   GALLERY — Grid with hover zoom + overlay + title
════════════════════════════════════════════════ */
#gallery {
  background: var(--cream);
  padding: var(--section-py) var(--section-px);
}

.gallery-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Gallery item — image with hover overlay */
.gallery-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--slate-soft);
  box-shadow: var(--shadow-sm);
  /* Consistent height mobile */
  height: 220px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1), filter 0.55s ease;
  will-change: transform, filter;
  filter: contrast(1.12) saturate(1.18) brightness(1.05); /* Premium photo enhancement */
}
.gallery-item:hover img { 
  transform: scale(1.08); 
  filter: contrast(1.15) saturate(1.22) brightness(1.08);
}

/* Dark overlay */
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,17,32,0.88) 0%, rgba(11,17,32,0.30) 60%, rgba(11,17,32,0) 100%);
  display: flex; align-items: flex-end;
  padding: 1.4rem 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay-text span {
  display: block;
  font-family: var(--heading); font-size: 1.2rem;
  font-weight: 500; color: var(--white);
  margin-bottom: 3px;
  transform: translateY(8px);
  transition: transform 0.4s ease 0.05s;
}
.gallery-overlay-text p {
  font-size: 0.78rem; color: var(--champagne);
  text-transform: uppercase; letter-spacing: 2px;
  transform: translateY(8px);
  transition: transform 0.4s ease 0.10s;
}
.gallery-item:hover .gallery-overlay-text span,
.gallery-item:hover .gallery-overlay-text p { transform: translateY(0); }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════════════ */
#how-it-works {
  background: var(--slate);
  padding: var(--section-py) var(--section-px);
}
#how-it-works .section-hd h2 { color: var(--white); }
#how-it-works .section-hd .eyebrow { }

.hiw-block { max-width: 1240px; margin: 0 auto; }

.steps-row {
  display: grid; grid-template-columns: 1fr;
  gap: 1.3rem; align-items: center;
}
.step-arrow { display: none; justify-content: center; color: var(--champagne); opacity: 0.45; }

.step {
  background: var(--slate-soft); border-radius: var(--r-lg);
  padding: 2.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
  border: 1px solid rgba(200,169,110,0.10);
  transition: var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.32);
  border-color: rgba(200,169,110,0.22);
}

.step-num {
  font-family: var(--heading); font-size: 0.72rem; font-weight: 600;
  color: var(--champagne); letter-spacing: 2.5px; margin-bottom: 0.7rem;
}
.step-ico { color: var(--champagne); margin-bottom: 0.8rem; }
.step h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.5rem; }
.step p  { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.75; }

/* ═══════════════════════════════════════════════


/* ═══════════════════════════════════════════════
   CONTACT — Light split layout
════════════════════════════════════════════════ */
#contact {
  background: var(--cream);
  padding: 8rem var(--section-px);
  position: relative;
  overflow: hidden;
}
.contact-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 4.5rem;
  position: relative; z-index: 2;
}
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info p.sub { margin-bottom: 2.5rem; line-height: 1.7; max-width: 90%; }

.cinfo-list { display: flex; flex-direction: column; gap: 1.5rem; }
.cinfo-row  { display: flex; align-items: flex-start; gap: 1rem; }
.cinfo-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--champ-dim); border: 1px solid var(--champ-border);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--champagne);
}
.cinfo-row label { display: block; font-size: 0.67rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 4px; }
.cinfo-row span,
.cinfo-row a { font-size: 0.93rem; color: var(--slate); transition: color 0.25s; font-weight: 500; }
.cinfo-row a:hover { color: var(--champagne); }

/* Contact form card */
.contact-form-wrap {
  background: var(--white); 
  border-radius: calc(var(--r-xl) + 4px);
  padding: 3.5rem; 
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}
#contact-form { display: flex; flex-direction: column; gap: 1.3rem; }

/* Floating label input group */
.fl-group { position: relative; }
.fl-group input, .fl-group textarea {
  padding-top: 1.5rem; padding-bottom: 0.45rem;
}
.fl-label {
  position: absolute; left: 1rem; top: 0.95rem;
  font-size: 0.83rem; font-weight: 500;
  color: var(--text-muted);
  pointer-events: none;
  transition: top 0.22s ease, font-size 0.22s ease, color 0.22s ease;
}
/* Float label up when focused or has content */
.fl-group input:focus ~ .fl-label,
.fl-group input:not(:placeholder-shown) ~ .fl-label,
.fl-group textarea:focus ~ .fl-label,
.fl-group textarea:not(:placeholder-shown) ~ .fl-label {
  top: 0.30rem; font-size: 0.63rem;
  color: var(--champagne); letter-spacing: 0.5px;
}
.fl-group input:focus, .fl-group textarea:focus {
  border-color: var(--champagne); outline: none;
}

/* Static labels for selects & date */
.fl-select-label {
  display: block; font-size: 0.73rem; font-weight: 600;
  color: var(--champagne); letter-spacing: 0.5px; margin-bottom: 6px;
}

/* Form rows */
.f-row { width: 100%; }
.f-row.two { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.f-group { display: flex; flex-direction: column; }
.f-group label { font-size: 0.78rem; font-weight: 500; color: var(--slate); margin-bottom: 5px; }

/* All input/select/textarea */
.f-group input,
.f-group select,
.f-group textarea {
  background: #FDFCFB; border: 1.5px solid #EBE9E5;
  border-radius: var(--r-md); padding: 0.9rem 1.15rem;
  font-family: var(--body); font-size: 0.9rem; color: var(--slate);
  transition: all 0.3s ease; min-height: 52px;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { 
  outline: none; 
  border-color: var(--champagne); 
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,169,110,0.1); 
}
.f-group textarea { resize: vertical; min-height: 120px; }

.f-err { font-size: 0.73rem; color: #C0392B; margin-top: 4px; min-height: 1rem; display: block; }

.btn-submit {
  width: 100%; 
  background: linear-gradient(135deg, var(--champ-light), var(--champagne));
  color: var(--slate);
  padding: 1.1rem; border: none; border-radius: var(--r-md);
  font-family: var(--body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; 
  min-height: 56px;
  box-shadow: 0 8px 30px rgba(200,169,110,0.35);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 0.5rem;
}
.btn-submit:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 12px 40px rgba(200,169,110,0.45); 
}
.btn-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.btn-spinner { animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }

.form-success {
  display: flex; align-items: center; gap: 10px;
  background: #F0FAF4; border: 1px solid #86EFAC;
  border-radius: var(--r-md); padding: 1rem 1.3rem;
  color: #166534; font-size: 0.88rem; font-weight: 500;
  animation: fadeIn 0.4s ease both;
}

.form-trust-points {
  display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center;
  margin-top: 2.2rem;
}
.form-trust-points span {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--slate);
}
.form-trust-points span svg {
  color: var(--champagne);
}

/* ═══════════════════════════════════════════════
   FOOTER — Dark navy
════════════════════════════════════════════════ */
#footer {
  background: var(--slate);
  border-top: 1px solid rgba(200,169,110,0.12);
  padding: 5rem var(--section-px) 0;
}
.footer-top {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; padding-bottom: 3.5rem;
}
.tagline { font-size: 0.85rem; color: rgba(255,255,255,0.9); margin: 1rem 0 1.5rem; font-style: italic; }
.socials { display: flex; gap: 0.6rem; }
.footer-socials {
  display: flex; justify-content: center; gap: 1rem;
  max-width: 1240px; margin: 0 auto;
  padding: 3rem 0 1.5rem;
}
.soc-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(200,169,110,0.3); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--ease);
}
.soc-btn:hover { background: var(--champagne); color: var(--slate); border-color: var(--champagne); transform: translateY(-3px); }

.f-title {
  font-family: var(--body); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--champagne); margin-bottom: 1.5rem; font-weight: 600;
}
.f-links { display: flex; flex-direction: column; gap: 0.85rem; }
.f-links a { font-size: 0.9rem; color: rgba(255,255,255,0.85); transition: color 0.25s; }
.f-links a:hover { color: var(--champagne); }

.f-brand-desc { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.85; margin: 0 0 1.5rem; max-width: 300px; }
.f-app-coming  { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 0.9rem; line-height: 1.6; }

.f-contact { display: flex; flex-direction: column; gap: 1rem; }
.f-contact-row {
  display: flex; align-items: flex-start; gap: 0.7rem;
}
.f-contact-row > svg {
  flex-shrink: 0; margin-top: 3px;
  color: var(--champagne);
}
.f-contact-label {
  display: block; font-size: 0.65rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: rgba(255,255,255,0.45); margin-bottom: 4px;
}
.f-contact a { color: rgba(255,255,255,0.85); font-size: 0.9rem; transition: color 0.25s; line-height: 1.5; }
.f-contact a:hover { color: var(--champagne); }

.f-dl-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: var(--r-sm); padding: 0.6rem 1rem;
  font-size: 0.84rem; color: var(--white);
  margin-bottom: 0.6rem; transition: var(--ease); min-height: 44px;
}
.f-dl-btn:hover { border-color: var(--champagne); transform: translateY(-2px); }
.f-dl-soon { cursor: not-allowed; opacity: 0.8; }
.f-dl-soon:hover { border-color: rgba(200,169,110,0.18); transform: translateY(0); }
.f-coming-tag {
  font-style: normal; font-size: 0.6rem; font-weight: 500;
  background: rgba(255,255,255,0.08); padding: 2.5px 7px;
  border-radius: 10px; color: var(--champagne);
  margin-left: auto; letter-spacing: 0.5px; text-transform: uppercase;
}

.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.65); letter-spacing: 0.5px; }
.f-legal { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.f-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.65); transition: color 0.25s; }
.f-legal a:hover { color: var(--champagne); }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════════════ */
.reveal-init {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
.reveal-init.revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════
   KEYFRAME ANIMATIONS
════════════════════════════════════════════════ */
@keyframes fadeUp    { from { opacity:0; transform:translateY(28px); }  to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn    { from { opacity:0; }                               to { opacity:1; } }
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes softDrift  { 0%,100%{transform:translateY(0);}  50%{transform:translateY(-8px);} }
@keyframes shimmer    { 0%{background-position:200% center;} 100%{background-position:-200% center;} }
@keyframes glowPulse  {
  0%,100% { box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 0 rgba(200,169,110,0); }
  60%     { box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 42px 5px rgba(200,169,110,0.12); }
}
@keyframes ctaPulse   { 0%,100%{ box-shadow:0 0 0 0 rgba(200,169,110,0); } 50%{ box-shadow:0 0 0 6px rgba(200,169,110,0.18); } }

/* ═══════════════════════════════════════════════
   RESPONSIVE — Small mobile hero adjustments
════════════════════════════════════════════════ */
@media (max-width: 479px) {
  .hero-bottom-bar { padding: 0 20px 20px; }
  .hero-slide-label { display: none; }
  .hero-corner { width: 40px; height: 40px; }
  .hero-corner--tl { top: 16px; left: 16px; }
  .hero-corner--tr { top: 16px; right: 16px; }
  .hero-corner--bl { bottom: 16px; left: 16px; }
  .hero-corner--br { bottom: 16px; right: 16px; }
  .hero-eyebrow { font-size: 0.52rem; letter-spacing: 2.5px; padding: 0.35rem 0.9rem; gap: 6px; }
  .hero-eyebrow svg { width: 8px; height: 8px; }
  .hero-divider-line.hero-visible { animation: heroDividerIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  @keyframes heroDividerIn { from { opacity: 0; width: 0; } to { opacity: 1; width: 60px; } }
  .hero-divider-diamond { width: 6px; height: 6px; margin: 0 8px; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 2.4rem; }
  .hero-btns { gap: 0.9rem; }
  .hero-btns .btn-primary,
  .hero-btns .btn-ghost { padding: 0.8rem 1.6rem; font-size: 0.72rem; }
  .scroll-mouse { width: 18px; height: 28px; }
  .scroll-wheel { width: 2px; height: 6px; }
  .scroll-cue span { font-size: 0.45rem; letter-spacing: 2.5px; }
  .hero-particles { display: none; } /* hide particles on small screens for perf */
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE ONLY (max-width: 767px)
════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .f-col-services {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — TABLET 768px+
════════════════════════════════════════════════ */
@media (min-width: 480px) {
  .about-hero-img { height: 400px; }
  .about-secondary-img { height: 180px; }
  .about-img-secondary-wrap { bottom: -35px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 240px; }
}

@media (min-width: 768px) {
  :root { --section-py: 7rem; --section-px: 6%; }

  /* Navbar */
  .nav-links { display: flex; }
  .btn-nav   { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }

  /* Hero — stays centered at all sizes */
  .hero-inner { max-width: 880px; }
  #home h1 { font-size: clamp(2.8rem, 6vw, 5.6rem); }
  .hero-sub { font-size: 1.1rem; max-width: 580px; }
  .hero-corner { width: 80px; height: 80px; }

  /* Stats */
  .stat-divider { display: block; }

  /* About */
  .about-inner { grid-template-columns: 1fr 1.1fr; gap: 5rem; }
  .about-images { max-width: none; margin: 0; }
  .about-hero-img { height: 480px; }
  .about-secondary-img { height: 200px; }
  .about-img-secondary-wrap { bottom: -40px; right: -25px; max-width: 240px; }
  .about-img-accent { width: 45%; height: 45%; }

  /* Services */
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card { height: 380px; }

  /* Why choose us */
  .why-inner {
    flex-direction: row; align-items: center; gap: 4.5rem;
  }
  .why-images { width: 45%; max-width: none; margin: 0; height: 420px; flex-shrink: 0; }
  .why-text   { flex: 1; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .gallery-item { height: 260px; }
  .gallery-large     { grid-column: span 2; }
  .gallery-large-end { grid-column: span 2; }

  /* Steps */
  .steps-row {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  }
  .step-arrow { display: flex; }

  /* Testimonials */
  #testimonials { padding: var(--section-py) 0; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr 1.4fr; gap: 5rem; }
  .f-row.two     { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-top    { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  :root { --section-px: 8%; }

  /* Services — 4 columns on desktop */
  .svc-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .svc-card { height: 420px; }
  .svc-overlay { padding: 1.8rem 1.5rem; }
  .svc-overlay h3 { font-size: 1.25rem; }

  /* Gallery — larger items on desktop */
  .gallery-item { height: 290px; }

  /* Footer */
  .footer-top { grid-template-columns: 2fr 1fr 1.2fr 1fr; }
}

@media (min-width: 1280px) {
  .hero-inner { max-width: 940px; }
  .hero-corner { width: 110px; height: 110px; }
  .hero-divider-line.hero-visible {
    animation: heroDividerIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes heroDividerIn { from { opacity: 0; width: 0; } to { opacity: 1; width: 160px; } }
}

/* ─── Reduced motion support ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
