/* ═══════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES — LUXURY TOKEN SYSTEM
═══════════════════════════════════════════════════════════ */
:root {
  /* Gold palette */
  --gold:         #c9a84c;
  --gold-light:   #e8c97a;
  --gold-dim:     #8a6d2f;
  --gold-pale:    rgba(201,168,76,0.10);
  --gold-glow:    rgba(201,168,76,0.22);

  /* Black palette */
  --black:        #060606;
  --black-2:      #0d0d0d;
  --black-3:      #111111;
  --black-4:      #161616;

  /* White palette */
  --white:        #f7f2ea;
  --white-dim:    rgba(247,242,234,0.72);
  --white-faint:  rgba(247,242,234,0.42);

  /* Glass effects */
  --glass-bg:     rgba(255,255,255,0.030);
  --glass-border: rgba(201,168,76,0.15);

  /* Typography */
  --ff-display:   'Cinzel', serif;
  --ff-serif:     'Cormorant Garamond', serif;
  --ff-sans:      'Raleway', sans-serif;

  /* Transitions — eased for luxury feel */
  --transition:   0.5s cubic-bezier(0.23, 1, 0.32, 1);
  --trans-fast:   0.28s cubic-bezier(0.23, 1, 0.32, 1);

  /* Spacing scale — mobile-first, scaled up */
  --section-pad:  clamp(60px, 10vw, 130px);
  --container-px: clamp(20px, 6vw, 60px);

  /* Nav height for scroll offset calculations */
  --nav-h:        70px;
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Remove iOS tap flash */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overscroll-behavior-x: none; /* Prevent iOS horizontal rubber-band */
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-serif);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; /* Smooth momentum scrolling on iOS */
}

/* Prevent text overflow globally */
h1, h2, h3, h4, p, a, span, li {
  overflow-wrap: break-word;
  word-break: break-word;
}

img, svg { max-width: 100%; display: block; }

::selection { background: var(--gold-dim); color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   GLOBAL ATMOSPHERE — Disabled on mobile (GPU perf)
═══════════════════════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100vw);
  height: 600px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-brand {
  font-family: var(--ff-display);
  font-size: clamp(0.78rem, 3.5vw, 1.4rem);
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
  padding: 0 24px;
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse { 0%,100%{opacity:0.35} 50%{opacity:1} }

.loader-ring {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-dim);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: loaderSpin 1.2s linear infinite;
  will-change: transform;
}
@keyframes loaderSpin { to { transform: rotate(360deg); } }

.loader-line {
  width: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderExpand 1.8s ease-in-out infinite;
}
@keyframes loaderExpand {
  0%   { width: 0; opacity: 0; }
  50%  { width: min(140px, 55vw); opacity: 1; }
  100% { width: 0; opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   FIX: Rebuilt mobile nav to be fully reliable
═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background var(--trans-fast), padding var(--trans-fast), border-color var(--trans-fast);
  min-width: 0;
}
#navbar.scrolled {
  background: rgba(6,6,6,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px var(--container-px);
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 3px;
  flex-shrink: 0;
  min-width: 0;
}
.nav-logo-main {
  font-family: var(--ff-display);
  font-size: clamp(0.68rem, 2.5vw, 0.95rem);
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 54vw;
}
.nav-logo-sub {
  font-family: var(--ff-serif);
  font-size: clamp(0.5rem, 1.4vw, 0.62rem);
  letter-spacing: 0.16em;
  color: var(--white-faint);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: clamp(14px, 2.5vw, 34px);
  list-style: none;
  flex-shrink: 1;
}
.nav-links a {
  font-family: var(--ff-sans);
  font-size: clamp(0.58rem, 0.9vw, 0.70rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white-dim);
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  transition: color var(--trans-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ─── Hamburger Button ─── */
/* FIX: Redesigned for reliability — bigger touch target, simpler structure */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  border: none;
  background: none;
  flex-shrink: 0;
  /* Apple HIG minimum touch target 44×44px */
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  /* Ensure it's always above everything it needs to be */
  position: relative;
  z-index: 910;
}
.nav-hamburger span {
  width: 22px; height: 1px;
  background: var(--gold);
  display: block;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}
/* Animated X state — triggered by [aria-expanded="true"] for CSS-only fallback safety */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/* FIX: When menu is open, fully hide the hamburger behind the overlay.
   The hamburger animates into an X shape (z-index:910) and was showing THROUGH
   the overlay (z-index:850), creating the double-X bug. */
.nav-hamburger[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
  z-index: 800; /* Sink below overlay (z-index:950) */
  transition: opacity 0.2s ease, z-index 0s 0.2s;
}

/* FIX: When mobile menu is open, disable the navbar so it can't intercept close-button taps.
   Navbar z-index:900 sits above overlay z-index:950 in the top area where close button lives. */
body.menu-open #navbar {
  pointer-events: none;
}

/* ─── Mobile Nav Overlay ─── */
/* FIX: Changed from display:none → display:flex toggle (which breaks transitions)
        to visibility + opacity + pointer-events approach for smooth animation */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 950; /* MUST be above navbar (z-index:900) so close button is clickable */
  /* Deep opaque background — no heavy blur on mobile for perf */
  background: rgba(6,6,6,0.98);
  display: flex;                /* Always flex — transition-safe */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  /* CLOSED state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Smooth cubic ease */
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              visibility 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  /* Safe area insets for notched phones */
  padding-top: max(80px, env(safe-area-inset-top, 80px));
  padding-bottom: max(40px, env(safe-area-inset-bottom, 40px));
  padding-left: 32px;
  padding-right: 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* OPEN state */
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Gold accent line at top of mobile menu */
.nav-mobile::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Mobile nav logo inside overlay */
.nav-mobile-brand {
  font-family: var(--ff-display);
  font-size: clamp(0.65rem, 3vw, 0.85rem);
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: clamp(32px, 7vw, 56px);
  position: relative;
}
.nav-mobile-brand::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-dim);
  margin: 10px auto 0;
}

/* Mobile nav links — staggered slide-in */
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
}
.nav-mobile-links a {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 5.5vw, 1.6rem);
  letter-spacing: 0.18em;
  color: var(--white-faint);
  text-decoration: none;
  text-transform: uppercase;
  padding: clamp(13px, 3vw, 18px) 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(201,168,76,0.07);
  position: relative;
  /* Individual link animation */
  transform: translateY(16px);
  opacity: 0;
  transition: color 0.28s ease,
              transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-mobile-links a:first-child { border-top: 1px solid rgba(201,168,76,0.07); }
/* Reveal links when menu opens */
.nav-mobile.open .nav-mobile-links a {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays for each link */
.nav-mobile.open .nav-mobile-links a:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile.open .nav-mobile-links a:nth-child(2) { transition-delay: 0.10s; }
.nav-mobile.open .nav-mobile-links a:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile.open .nav-mobile-links a:nth-child(4) { transition-delay: 0.20s; }
.nav-mobile.open .nav-mobile-links a:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile.open .nav-mobile-links a:nth-child(6) { transition-delay: 0.30s; }
.nav-mobile.open .nav-mobile-links a:nth-child(7) { transition-delay: 0.35s; }

.nav-mobile-links a:active,
.nav-mobile-links a:hover { color: var(--gold); }

/* Close button — single clean SVG X, no pseudo-element icons */
.nav-close {
  position: absolute;
  /* Respect iOS status bar */
  top: max(20px, env(safe-area-inset-top, 20px));
  right: 20px;
  z-index: 960; /* Above overlay (z-index:950) */
  pointer-events: auto;
  background: none;
  border: 1px solid rgba(201,168,76,0.2);
  /* FIX: no color set here — prevents any text/content pseudo-elements from inheriting a visible color */
  color: transparent;
  cursor: pointer;
  /* Touch target */
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: border-color 0.28s, background 0.28s, transform 0.28s;
  /* FIX: Explicitly kill any pseudo-element content on the button itself */
  overflow: hidden;
}
/* FIX: Nuke ::before and ::after on the close button so no extra X can appear */
.nav-close::before,
.nav-close::after {
  display: none !important;
  content: none !important;
}
.nav-close:hover,
.nav-close:active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: rotate(90deg);
}
/* SVG X icon — the ONE and ONLY close icon */
.nav-close svg {
  width: 16px; height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  pointer-events: none;
  flex-shrink: 0;
  display: block;
}

/* WhatsApp CTA at bottom of mobile menu */
.nav-mobile-cta {
  margin-top: clamp(28px, 6vw, 44px);
  font-family: var(--ff-sans);
  font-size: clamp(0.58rem, 2.5vw, 0.65rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 14px 28px;
  text-decoration: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  /* Stagger reveal */
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.4s ease 0.4s,
              transform 0.4s cubic-bezier(0.23, 1, 0.32, 1) 0.4s,
              box-shadow 0.28s ease;
}
.nav-mobile.open .nav-mobile-cta {
  opacity: 1;
  transform: translateY(0);
}
.nav-mobile-cta:active {
  box-shadow: 0 8px 28px rgba(201,168,76,0.3);
}

/* ═══════════════════════════════════════════════════════════
   ORNAMENT DIVIDER
═══════════════════════════════════════════════════════════ */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 14px 0;
}
.ornament-line {
  flex: 1;
  max-width: 100px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.ornament-line.r { background: linear-gradient(90deg, var(--gold-dim), transparent); }
.ornament-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.section-label {
  font-family: var(--ff-sans);
  font-size: clamp(0.56rem, 1.4vw, 0.62rem);
  letter-spacing: 0.30em;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL — Reduced motion on mobile
═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
  will-change: auto;
}

/* Stagger delays — reduced to feel snappier */
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ═══════════════════════════════════════════════════════════
   LAYOUT SHELLS
═══════════════════════════════════════════════════════════ */
section { position: relative; z-index: 1; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
═══════════════════════════════════════════════════════════ */
.section-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 4vw, 2.7rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--white);
  line-height: 1.28;
  margin-bottom: 18px;
}
.section-heading span { color: var(--gold); }

.body-text {
  font-family: var(--ff-serif);
  font-size: clamp(0.97rem, 1.7vw, 1.12rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.85;
  letter-spacing: 0.01em;
}
.body-text + .body-text { margin-top: 16px; }

.text-center { text-align: center; }
.max-680 { max-width: 680px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════════════════════
   GOLD SEPARATOR
═══════════════════════════════════════════════════════════ */
.gold-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dim) 30%, var(--gold) 50%, var(--gold-dim) 70%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(100px, 18vw, 140px) var(--container-px) clamp(80px, 12vw, 110px);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 10%, rgba(201,168,76,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(201,168,76,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating particles — desktop only (spawned via JS) */
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
  will-change: transform, opacity;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.45; }
  90%  { opacity: 0.45; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

.hero-eyebrow {
  font-family: var(--ff-sans);
  font-size: clamp(0.56rem, 1.8vw, 0.66rem);
  letter-spacing: 0.38em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: clamp(14px, 3vw, 26px);
  animation: fadeUp 1.2s ease 0.3s both;
  padding: 0 8px;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 8vw, 5.6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 8px;
  animation: fadeUp 1.2s ease 0.5s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--ff-serif);
  font-weight: 300;
}

.hero-subtitle {
  font-family: var(--ff-serif);
  font-size: clamp(1rem, 3.2vw, 1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-dim);
  letter-spacing: 0.03em;
  margin: clamp(10px, 2vw, 16px) 0 clamp(18px, 3.5vw, 32px);
  animation: fadeUp 1.2s ease 0.7s both;
}

.hero-intro {
  font-family: var(--ff-serif);
  font-size: clamp(0.97rem, 1.9vw, 1.2rem);
  font-weight: 300;
  color: var(--white-faint);
  max-width: 580px;
  margin: 0 auto;
  letter-spacing: 0.01em;
  animation: fadeUp 1.2s ease 0.9s both;
  padding: 0 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: max(24px, env(safe-area-inset-bottom, 24px));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1.2s ease 1.4s both;
}
.scroll-text {
  font-family: var(--ff-sans);
  font-size: clamp(0.52rem, 1.4vw, 0.58rem);
  letter-spacing: 0.28em;
  color: var(--gold-dim);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes scrollDown {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.35; }
}

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

/* ═══════════════════════════════════════════════════════════
   2. OUR STORY
═══════════════════════════════════════════════════════════ */
#story {
  padding: var(--section-pad) 0;
  background: var(--black-2);
  position: relative;
  overflow: hidden;
}
#story::after {
  content: '';
  position: absolute;
  right: -160px; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.story-frame {
  border: 1px solid var(--glass-border);
  padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 36px);
  background: var(--glass-bg);
  position: relative;
}
/* Corner accents */
.story-frame::before, .story-frame::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-color: var(--gold);
  border-style: solid;
}
.story-frame::before { top: 10px; left: 10px; border-width: 1px 0 0 1px; }
.story-frame::after  { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; }

.story-number {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 50%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.32;
  display: block;
  margin-bottom: 10px;
}
.story-caption {
  font-family: var(--ff-serif);
  font-size: clamp(0.92rem, 1.7vw, 1.02rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   3. FOUNDERS
═══════════════════════════════════════════════════════════ */
#founders {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
}

.founders-intro {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(36px, 6vw, 72px);
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 40px);
}

.founder-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: clamp(28px, 5vw, 52px) clamp(22px, 4vw, 44px);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.founder-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.founder-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(201,168,76,0.09);
}
.founder-card:hover::before { opacity: 1; }

.founder-initial {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-dim), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
  display: block;
}
.founder-name {
  font-family: var(--ff-display);
  font-size: clamp(0.78rem, 1.7vw, 1.1rem);
  letter-spacing: 0.14em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.founder-role {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.4vw, 0.93rem);
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.founder-bio {
  font-family: var(--ff-serif);
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.82;
}
/* Bottom accent bar */
.founder-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}
.founder-card:hover .founder-accent { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════
   4. WHAT MAKES US DIFFERENT
═══════════════════════════════════════════════════════════ */
#difference {
  padding: var(--section-pad) 0;
  background: var(--black-3);
  position: relative;
  overflow: hidden;
}
#difference::before {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  opacity: 0.15;
  pointer-events: none;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 26px);
  margin-top: clamp(36px, 5.5vw, 66px);
}

.diff-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: clamp(24px, 3.8vw, 42px) clamp(18px, 2.8vw, 30px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.diff-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.diff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.32);
  box-shadow: 0 22px 55px rgba(0,0,0,0.45), 0 0 32px rgba(201,168,76,0.06);
}
.diff-card:hover::after { transform: scaleX(1); }

.diff-icon {
  width: 48px; height: 48px;
  margin: 0 auto 18px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.diff-card:hover .diff-icon {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.18);
}
.diff-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

.diff-title {
  font-family: var(--ff-display);
  font-size: clamp(0.62rem, 1.3vw, 0.78rem);
  letter-spacing: 0.16em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.diff-text {
  font-family: var(--ff-serif);
  font-size: clamp(0.9rem, 1.45vw, 0.97rem);
  color: var(--white-faint);
  line-height: 1.76;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   5. OUR VISION
═══════════════════════════════════════════════════════════ */
#vision {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 5.5vw, 80px);
  align-items: start;
}
.vision-label-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 6px;
}
.vision-number {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-dim);
  opacity: 0.28;
}
.vision-quote-mark {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.28;
}
.vision-heading {
  font-family: var(--ff-display);
  font-size: clamp(1.3rem, 3.2vw, 2.3rem);
  font-weight: 400;
  letter-spacing: 0.07em;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 26px;
}
.vision-heading em {
  color: var(--gold);
  font-style: italic;
  font-family: var(--ff-serif);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   6. CRAFTSMANSHIP
═══════════════════════════════════════════════════════════ */
#craft {
  padding: var(--section-pad) 0;
  background: var(--black-4);
  position: relative;
  overflow: hidden;
}
.craft-header { text-align: center; margin-bottom: clamp(36px, 5.5vw, 76px); }

.craft-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
/* Vertical timeline line */
.craft-steps::before {
  content: '';
  position: absolute;
  left: 33px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim) 15%, var(--gold-dim) 85%, transparent);
  opacity: 0.5;
}

.craft-step {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: clamp(14px, 2.8vw, 32px);
  padding: clamp(22px, 3.8vw, 38px) 0;
  align-items: start;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.craft-step:last-child { border-bottom: none; }

.craft-num {
  width: 48px; height: 48px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--black-4);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.craft-step:hover .craft-num {
  border-color: var(--gold);
  box-shadow: 0 0 16px rgba(201,168,76,0.20);
}
.craft-step-title {
  font-family: var(--ff-display);
  font-size: clamp(0.72rem, 1.5vw, 0.96rem);
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.craft-step-text {
  font-family: var(--ff-serif);
  font-size: clamp(0.92rem, 1.55vw, 1.01rem);
  color: var(--white-faint);
  font-weight: 300;
  line-height: 1.82;
}

/* ═══════════════════════════════════════════════════════════
   7. CUSTOMER EXPERIENCE
═══════════════════════════════════════════════════════════ */
#experience {
  padding: var(--section-pad) 0;
  background: var(--black-2);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
  margin-top: clamp(36px, 5.5vw, 66px);
}
.exp-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: clamp(26px, 3.8vw, 46px) clamp(20px, 3.2vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.exp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.28);
}
.exp-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.exp-card-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exp-card-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.exp-card-title {
  font-family: var(--ff-display);
  font-size: clamp(0.68rem, 1.3vw, 0.78rem);
  letter-spacing: 0.17em;
  color: var(--white);
  text-transform: uppercase;
}
.exp-card-text {
  font-family: var(--ff-serif);
  font-size: clamp(0.92rem, 1.5vw, 0.99rem);
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.82;
}
/* Top accent glow */
.exp-card-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.exp-card:hover .exp-card-glow { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════
   8. WHY CUSTOMERS LOVE US
═══════════════════════════════════════════════════════════ */
#love {
  padding: var(--section-pad) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#love::before {
  content: '';
  position: absolute;
  left: -80px; top: 50%;
  transform: translateY(-50%);
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04), transparent 70%);
  pointer-events: none;
}
.love-header { text-align: center; margin-bottom: clamp(36px, 5.5vw, 76px); }

.love-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 22px);
}
.love-card {
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  padding: clamp(22px, 3.8vw, 40px) clamp(16px, 2.8vw, 28px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.love-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 16px 44px rgba(201,168,76,0.09);
}
.love-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.055), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.love-card:hover::before { opacity: 1; }
.love-icon {
  font-size: clamp(1.7rem, 2.8vw, 2.1rem);
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 5px rgba(201,168,76,0.32));
}
.love-title {
  font-family: var(--ff-display);
  font-size: clamp(0.62rem, 1.2vw, 0.76rem);
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.love-text {
  font-family: var(--ff-serif);
  font-size: clamp(0.88rem, 1.4vw, 0.95rem);
  color: var(--white-faint);
  font-weight: 300;
  line-height: 1.76;
}

/* ═══════════════════════════════════════════════════════════
   9. QUOTE
═══════════════════════════════════════════════════════════ */
#quote-section {
  padding: clamp(60px, 11vw, 130px) var(--container-px);
  background: var(--black-3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.big-quote-mark {
  font-family: var(--ff-serif);
  font-size: clamp(3.5rem, 11vw, 8.5rem);
  color: var(--gold);
  opacity: 0.10;
  line-height: 0.6;
  display: block;
  margin-bottom: 14px;
}
.quote-text {
  font-family: var(--ff-serif);
  font-size: clamp(1.15rem, 3.2vw, 2.3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  max-width: 780px;
  margin: 0 auto 24px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}
.quote-text em { color: var(--gold); font-style: normal; }
.quote-attr {
  font-family: var(--ff-sans);
  font-size: clamp(0.58rem, 1.4vw, 0.66rem);
  letter-spacing: 0.28em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   10. CONTACT / VISIT
═══════════════════════════════════════════════════════════ */
#contact {
  padding: var(--section-pad) 0;
  background: var(--black-2);
}
.contact-header { text-align: center; margin-bottom: clamp(36px, 5.5vw, 76px); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2.2vw, 26px);
  margin-bottom: clamp(24px, 4vw, 52px);
}
.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: clamp(26px, 3.8vw, 42px) clamp(16px, 2.8vw, 28px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.32);
}
.contact-card-top {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact-card-top svg { width: 19px; height: 19px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-card-label {
  font-family: var(--ff-display);
  font-size: clamp(0.60rem, 1.2vw, 0.70rem);
  letter-spacing: 0.20em;
  color: var(--white-dim);
  text-transform: uppercase;
  margin-bottom: 9px;
}
.contact-card-value {
  font-family: var(--ff-serif);
  font-size: clamp(0.92rem, 1.5vw, 1.03rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.6;
  text-decoration: none;
  display: block;
  transition: color 0.28s;
  word-break: break-word;
}
.contact-card-value:hover { color: var(--gold-light); }

.visit-banner {
  text-align: center;
  padding: clamp(32px, 5.5vw, 58px) clamp(18px, 4.5vw, 40px);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  position: relative;
  overflow: hidden;
}
.visit-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.06), transparent 60%);
  pointer-events: none;
}
.visit-banner-title {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.8vw, 1.9rem);
  letter-spacing: 0.11em;
  color: var(--white);
  margin-bottom: 13px;
  position: relative;
}
.visit-banner-text {
  font-family: var(--ff-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.06rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white-faint);
  max-width: 540px;
  margin: 0 auto 26px;
  line-height: 1.78;
  position: relative;
}

/* CTA Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-sans);
  font-size: clamp(0.60rem, 1.3vw, 0.70rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: clamp(13px, 1.9vw, 15px) clamp(22px, 3.8vw, 34px);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  min-height: 48px; /* iOS touch target */
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  transform: translateX(-105%);
  transition: transform 0.38s ease;
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,168,76,0.28); }
.cta-btn:hover::before { transform: translateX(105%); }
.cta-btn:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--glass-border);
  padding: clamp(44px, 7.5vw, 76px) var(--container-px) clamp(26px, 4vw, 40px);
  position: relative;
  padding-bottom: max(clamp(26px, 4vw, 40px), env(safe-area-inset-bottom, 26px));
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(680px, 80vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(28px, 4.5vw, 56px);
  margin-bottom: clamp(36px, 4.5vw, 56px);
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: clamp(0.82rem, 1.8vw, 1.2rem);
  letter-spacing: 0.26em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(0.8rem, 1.3vw, 0.88rem);
  color: var(--gold-dim);
  letter-spacing: 0.07em;
  display: block;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-family: var(--ff-serif);
  font-size: clamp(0.86rem, 1.3vw, 0.93rem);
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.78;
}
.footer-col-title {
  font-family: var(--ff-sans);
  font-size: clamp(0.55rem, 1.1vw, 0.60rem);
  letter-spacing: 0.30em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-family: var(--ff-serif);
  font-size: clamp(0.86rem, 1.3vw, 0.93rem);
  font-weight: 300;
  color: var(--white-faint);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.28s;
  display: block;
  padding: 2px 0;
}
.footer-links a:hover { color: var(--gold); }

.footer-info { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-info li {
  font-family: var(--ff-serif);
  font-size: clamp(0.86rem, 1.3vw, 0.93rem);
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.5;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-info li span:first-child {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.76rem;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--ff-sans);
  font-size: clamp(0.56rem, 1.1vw, 0.63rem);
  letter-spacing: 0.12em;
  color: var(--white-faint);
  opacity: 0.45;
}
.footer-love {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(0.78rem, 1.2vw, 0.84rem);
  color: var(--gold-dim);
  opacity: 0.55;
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FAB
═══════════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 24px));
  right: 20px;
  z-index: 800;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37,211,102,0.32);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fabPop 0.55s ease 2s both;
  will-change: transform;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.42);
}
.whatsapp-fab:active { transform: scale(0.96); }
.whatsapp-fab svg { width: 25px; height: 25px; fill: #fff; }

@keyframes fabPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.fab-ping {
  position: absolute;
  top: -2px; right: -2px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #25D366;
  animation: ping 2s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes ping {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.85); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   CARD STAGGER DELAYS
═══════════════════════════════════════════════════════════ */
.diff-grid > *:nth-child(1) { transition-delay: 0.04s; }
.diff-grid > *:nth-child(2) { transition-delay: 0.10s; }
.diff-grid > *:nth-child(3) { transition-delay: 0.16s; }
.diff-grid > *:nth-child(4) { transition-delay: 0.22s; }
.diff-grid > *:nth-child(5) { transition-delay: 0.28s; }
.diff-grid > *:nth-child(6) { transition-delay: 0.34s; }
.love-grid > *:nth-child(1) { transition-delay: 0.04s; }
.love-grid > *:nth-child(2) { transition-delay: 0.10s; }
.love-grid > *:nth-child(3) { transition-delay: 0.16s; }
.love-grid > *:nth-child(4) { transition-delay: 0.22s; }
.love-grid > *:nth-child(5) { transition-delay: 0.28s; }
.love-grid > *:nth-child(6) { transition-delay: 0.34s; }

/* ═══════════════════════════════════════════════════════════
   ██████████████████████████████████████████████████████████
   RESPONSIVE BREAKPOINTS — MOBILE-FIRST GROUPED STRUCTURE
   ██████████████████████████████████████████████████████████
═══════════════════════════════════════════════════════════ */

/* ─── TABLET — 1024px ─────────────────────────────── */
@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .love-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ─── LARGE MOBILE / SMALL TABLET — 860px ─────────── */
@media (max-width: 860px) {
  /* Show hamburger, hide desktop links */
  .nav-links { display: none !important; }
  .nav-hamburger { display: flex !important; }

  /* Layout switches */
  .story-grid   { grid-template-columns: 1fr; gap: 32px; }
  .vision-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }

  /* Vision — show decorative row instead of column */
  .vision-label-col {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding-top: 0;
  }
}

/* ─── TABLET PORTRAIT — 768px ────────────────────── */
@media (max-width: 768px) {
  .founders-grid { grid-template-columns: 1fr; gap: 18px; }
  .exp-grid      { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  /* Hero padding to keep scroll hint from overlapping text */
  #hero { padding-bottom: 84px; }
}

/* ─── SMALL PHONES LANDSCAPE — 640px ─────────────── */
@media (max-width: 640px) {
  .diff-grid    { grid-template-columns: 1fr; gap: 12px; }
  .love-grid    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Craft timeline — tighten column width */
  .craft-steps::before { left: 22px; }
  .craft-step { grid-template-columns: 46px 1fr; gap: 12px; }
  .craft-num  { width: 38px; height: 38px; font-size: 0.62rem; }

  .story-frame { padding: 22px 18px; }
  .ornament-line { max-width: 60px; }
}

/* ─── PRIMARY MOBILE TARGET — 480px ────────────────
   This is the most important breakpoint for optimization
   ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  body { font-size: 15px; }

  /* Navbar */
  #navbar { padding: 14px var(--container-px); }
  #navbar.scrolled { padding: 10px var(--container-px); }
  /* Hide sub-label on smallest screens — keeps logo clean */
  .nav-logo-sub { display: none; }

  /* Hero — adjusted padding for comfortable layout */
  #hero {
    min-height: 95svh;
    padding-top: clamp(82px, 21vw, 105px);
    padding-bottom: 76px;
    align-items: flex-start;
  }
  .hero-eyebrow { letter-spacing: 0.22em; margin-bottom: 12px; }
  .hero-title   { letter-spacing: 0.03em; line-height: 1.13; }
  .hero-subtitle { margin: 8px 0 14px; }

  /* Section headings — tighter tracking */
  .section-heading { letter-spacing: 0.05em; margin-bottom: 14px; }

  /* Love grid — single column on very small phones */
  .love-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Visit banner */
  .visit-banner { padding: 26px 16px; }
  /* Full-width CTA on mobile */
  .cta-btn { width: 100%; justify-content: center; text-align: center; }

  /* Quote section */
  #quote-section { padding: 48px var(--container-px); }
  .big-quote-mark { font-size: 3rem; margin-bottom: 8px; }

  /* Footer */
  footer { padding: 40px var(--container-px) 30px; }
  .footer-grid { gap: 26px; }
  .footer-bottom { padding-top: 18px; }

  /* WhatsApp FAB */
  .whatsapp-fab { width: 48px; height: 48px; right: 14px; }
  .whatsapp-fab svg { width: 23px; height: 23px; }

  /* Founder cards — tighter */
  .founder-card { padding: 26px 20px; }

  /* Exp grid text alignment */
  .exp-card-top { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ─── TINY PHONES — 375px (SE, older Androids) ────── */
@media (max-width: 375px) {
  /* Logo even tighter */
  .nav-logo-main { font-size: clamp(0.60rem, 3.8vw, 0.78rem); letter-spacing: 0.14em; }

  .hero-title { font-size: clamp(1.7rem, 8.5vw, 2.4rem); }

  /* Hide decorative story visual to reduce scroll length */
  .story-visual { display: none; }
  .story-grid { grid-template-columns: 1fr; }

  /* Hide decorative vision number column */
  .vision-label-col { display: none; }
  .vision-inner { grid-template-columns: 1fr; }

  .craft-step { gap: 9px; }
  .founders-grid { gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   PERFORMANCE — .is-mobile class added by JS
   Reduces GPU-heavy effects on touch devices
═══════════════════════════════════════════════════════════ */
.is-mobile body::before {
  display: none; /* Remove fixed gradient overlay — frees GPU layer */
}
/* Remove backdrop-filter on mobile cards — biggest perf gain */
.is-mobile .founder-card,
.is-mobile .diff-card,
.is-mobile .love-card,
.is-mobile .exp-card,
.is-mobile .contact-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* Keep light blur only on navbar */
.is-mobile #navbar.scrolled {
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}
/* Mobile menu — solid bg, lighter blur */
.is-mobile .nav-mobile {
  background: rgba(6,6,6,0.99) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* Snappier transitions on mobile */
.is-mobile * {
  transition-duration: 0.22s !important;
}
.is-mobile .nav-mobile-links a {
  /* Keep stagger transitions slightly longer for elegance */
  transition-duration: 0.32s !important;
}
/* No particles on mobile */
.is-mobile .particle { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION PREFERENCE
═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .particle { display: none !important; }
  /* Show nav links immediately */
  .nav-mobile-links a { opacity: 1 !important; transform: none !important; }
  .nav-mobile-cta { opacity: 1 !important; transform: none !important; }
}
