/* ══════════════════════════════════════════════════════════
   CHAI & CO.  ·  PURE WHITE MONOCHROME & SHARP GLASS THEME
   100% Pure White Text & Crisp White Glass Borders
   Floating Centered Circular Capsule Navbar
══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ── Pure White Monochrome & Crisp White Glass Tokens ────── */
:root {
  --bg-main:       #000000;
  --bg-deep:       #050507;
  --bg-card:       rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.08);

  /* 100% PURE WHITE TEXT THEME */
  --txt-1: #ffffff;
  --txt-2: rgba(255, 255, 255, 0.88);
  --txt-3: rgba(255, 255, 255, 0.65);
  --txt-4: rgba(255, 255, 255, 0.40);

  /* PURE WHITE GLASS BORDER SYSTEM */
  --glass-bg:           rgba(255, 255, 255, 0.03);
  --glass-border:       rgba(255, 255, 255, 0.25);
  --glass-border-t:     rgba(255, 255, 255, 0.50);
  --glass-border-hover: rgba(255, 255, 255, 0.85);
  --glass-blur:         20px;
  --glass-shadow:       0 20px 50px rgba(0, 0, 0, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.35);

  /* High-Fashion Font Stack */
  --f-heading: 'Outfit', -apple-system, sans-serif;
  --f-body:    'Plus Jakarta Sans', -apple-system, sans-serif;

  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   26px;
  --r-xl:   36px;
  --r-pill: 99px;

  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  background: var(--bg-main);
  color: var(--txt-1);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Crisp, Sharp, Well-Defined Photo Engine ──────────── */
img {
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.10) brightness(1.03) saturate(1.05);
  backface-visibility: hidden;
  transform: translateZ(0);
}

::selection { background: #ffffff; color: #000000; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.4); border-radius: 99px; }

/* ═══════════════════════════════════════════════════════
   SUBTLE DARK BACKGROUND
═══════════════════════════════════════════════════════ */
.aurora-bg {
  position: fixed; inset: 0; z-index: 0;
  background: #000000;
  overflow: hidden; pointer-events: none;
}

.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.15;
  animation: aurora-drift 24s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px; height: 600px; top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.blob-2 {
  width: 500px; height: 500px; bottom: 5%; right: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  animation-delay: -8s;
}

@keyframes aurora-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.05); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

/* ═══════════════════════════════════════════════════════
   GLASS PANEL SYSTEM (CRISP WHITE BORDERS)
═══════════════════════════════════════════════════════ */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-border-t);
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.glass-panel::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  pointer-events: none; z-index: 2;
}

.glass-panel:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95), 0 0 20px rgba(255, 255, 255, 0.15);
}

.glass-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-top-color: rgba(255, 255, 255, 0.6);
  border-radius: var(--r-pill);
  font-family: var(--f-body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════════
   FLOATING CENTERED CIRCULAR CAPSULE NAVBAR
═══════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 40px));
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 1000;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-top-color: rgba(255, 255, 255, 0.60);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: all 0.45s var(--ease);
}

#main-nav.scrolled {
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1040px, calc(100% - 32px));
  height: 62px;
  padding: 0 24px;
  border-radius: var(--r-pill);
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-top-color: rgba(255, 255, 255, 0.75);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.95),
    0 0 25px rgba(255, 255, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-logo {
  font-family: var(--f-heading);
  font-size: 1.65rem; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase;
  color: #ffffff;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3));
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  border-radius: var(--r-pill);
  transition: color 0.25s var(--ease);
  letter-spacing: 0.02em;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  position: relative;
}
.nav-link:hover {
  color: rgba(255, 255, 255, 0.90);
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
.nav-link.active {
  color: #ffffff;
  font-weight: 600;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}


.nav-cta {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-top-color: rgba(255, 255, 255, 0.65);
  border-radius: var(--r-pill);
  font-size: 0.8rem; font-weight: 700; color: #ffffff;
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap; transition: all 0.3s var(--spring);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
  cursor: pointer;
}
.nav-cta:hover {
  background: #ffffff; color: #000000;
  border-color: #ffffff; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.3);
}

/* ── Mobile Menu & Hamburger ──────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease);
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 99px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease,
              background 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Menu Backdrop ──────────────────────────── */
.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 1900;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}
.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* ── Floating Mobile Dropdown Menu Card ────────────── */
.mobile-menu {
  position: fixed;
  top: 76px;
  left: 14px;
  right: 14px;
  max-width: 420px;
  margin: 0 auto;
  background: rgba(12, 12, 16, 0.94);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.88), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 18px 16px 16px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-16px) scale(0.96);
  transition: opacity 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.32s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu-title {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-3);
}

.mobile-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.mobile-close:active {
  transform: scale(0.9);
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.mobile-menu-list li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease) calc(var(--i, 1) * 0.035s),
              transform 0.35s var(--spring) calc(var(--i, 1) * 0.035s);
}
.mobile-menu.open .mobile-menu-list li,
.mobile-menu.open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 14px;
  font-family: var(--f-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.2s var(--ease);
  position: relative;
}
.mobile-link .ml-num {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--txt-3);
  font-weight: 500;
}
.mobile-link:active,
.mobile-link.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}
.mobile-link.active::after {
  content: '';
  position: absolute;
  right: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px #ffffff;
}

.mobile-menu-footer {
  padding-top: 4px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease) 0.25s,
              transform 0.35s var(--spring) 0.25s;
}
.mobile-reserve-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--r-pill);
  background: #ffffff;
  color: #000000;
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
  transition: all 0.2s var(--ease);
}
.mobile-reserve-btn:active {
  transform: scale(0.97);
  background: #eaeaea;
}




/* ═══════════════════════════════════════════════════════
   HERO 1 / CANVAS (3D Tea Pour Scroll)
═══════════════════════════════════════════════════════ */
#home { background: transparent; position: relative; z-index: 1; }
#canvas-section { height: 500vh; position: relative; }
#canvas-sticky { position: sticky; top: 0; height: 100vh; height: 100dvh; height: calc(100 * var(--vh, 1vh)); width: 100%; overflow: hidden; }

#tea-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0;
  image-rendering: high-quality;
  filter: contrast(1.08) brightness(1.03);
}
#particle-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 1; pointer-events: none; opacity: 0.35;
}

#canvas-sticky::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 45%, rgba(0,0,0,0.45) 85%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.95) 100%);
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; pointer-events: all;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.hero-overlay.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-24px) !important;
}

.hero-badge { margin-bottom: 28px; animation: hero-in 1s var(--ease) 0.1s both; }

.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px #ffffff;
  animation: pulse-dot 2s ease-in-out infinite; flex-shrink: 0;
}

.hero-title {
  font-family: var(--f-heading);
  font-size: clamp(3.2rem, 8.5vw, 6.8rem);
  font-weight: 800; line-height: 0.98; letter-spacing: -0.03em; text-transform: uppercase;
  color: #ffffff; margin-bottom: 24px;
}
.line-1 { display: block; color: #ffffff; font-weight: 800; }
.line-2 { display: block; color: #ffffff; font-weight: 800; }

.hero-subtitle {
  max-width: 520px; color: var(--txt-2);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem); font-weight: 300; line-height: 1.75;
  margin-bottom: 40px; animation: hero-in 1s var(--ease) 0.4s both;
}

.hero-cta-group {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
  pointer-events: all; animation: hero-in 1s var(--ease) 0.55s both;
}

.pour-label {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 20; opacity: 0; white-space: nowrap;
  transition: opacity 0.5s var(--ease);
}
.pour-label.visible { opacity: 1; }
.pour-icon {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ffffff; box-shadow: 0 0 10px #ffffff;
  animation: pulse-dot 1.6s ease-in-out infinite; flex-shrink: 0;
}

.scroll-hint {
  position: absolute; bottom: 28px; right: 36px; z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--txt-3); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  animation: hero-in 1.2s var(--ease) 1s both; transition: opacity 0.4s;
}
.scroll-hint.hidden { opacity: 0; }
.scroll-arrow {
  width: 16px; height: 16px;
  border-right: 1.5px solid rgba(255,255,255,0.6);
  border-bottom: 1.5px solid rgba(255,255,255,0.6);
  transform: rotate(45deg);
  animation: arrow-bounce 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   ESTATE 3D SCROLL SECTION
═══════════════════════════════════════════════════════ */
.estate-scroll-section { height: 350vh; position: relative; z-index: 1; }
#estate-scroll-sticky { position: sticky; top: 0; height: 100vh; height: 100dvh; height: calc(100 * var(--vh, 1vh)); width: 100%; overflow: hidden; }

#estate-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0;
  image-rendering: high-quality;
  filter: contrast(1.08) brightness(1.03);
}

#estate-scroll-sticky::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 45%, rgba(0,0,0,0.55) 85%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.95) 100%);
}

.estate-hero-overlay {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.estate-hero-title {
  font-family: var(--f-heading);
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  font-weight: 800; line-height: 0.98; letter-spacing: -0.03em; text-transform: uppercase;
  color: #ffffff; margin-bottom: 20px;
}

.estate-hero-subtitle {
  max-width: 500px; color: var(--txt-2);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem); font-weight: 300; line-height: 1.7;
}

.estate-scroll-label {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 20; opacity: 0; white-space: nowrap;
  transition: opacity 0.5s var(--ease);
}
.estate-scroll-label.visible { opacity: 1; }



/* ═══════════════════════════════════════════════════════
   MOBILE FLOATING BOTTOM ACTION BAR (THUMB ZONE UX)
═══════════════════════════════════════════════════════ */
#mobile-bottom-bar {
  display: none;
}

@media (max-width: 900px) {
  #mobile-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    width: min(440px, calc(100% - 24px));
    height: 60px;
    padding: 6px 12px;
    z-index: 1500;
    border-radius: var(--r-pill);
    background: rgba(8, 8, 12, 0.92);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 0.65);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: transform 0.4s var(--spring), opacity 0.4s var(--ease);
  }
  #mobile-bottom-bar.hidden {
    transform: translate(-50%, 100px);
    opacity: 0;
    pointer-events: none;
  }
  .mbar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 14px;
    border-radius: var(--r-pill);
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--f-body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    min-height: 48px;
  }
  .mbar-btn:active {
    transform: scale(0.92);
  }
  .mbar-icon {
    font-size: 1.1rem;
    line-height: 1;
  }
  .mbar-accent {
    background: #ffffff !important;
    color: #000000 !important;
    padding: 8px 20px !important;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25) !important;
  }
}

/* ═══════════════════════════════════════════════════════
   MAP OVERLAY (Prevent Mobile Touch Trapping)
═══════════════════════════════════════════════════════ */
.map-embed-wrap {
  position: relative;
}
.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s var(--ease);
  border-radius: 20px;
}
.map-overlay span {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}
.map-embed-wrap iframe {
  pointer-events: none;
}
.map-embed-wrap.active .map-overlay {
  opacity: 0;
  pointer-events: none;
}
.map-embed-wrap.active iframe {
  pointer-events: auto;
}

/* Touch Open State for Instagram Social Feed on Phone */
.social-card.touch-open .social-overlay {
  opacity: 1;
}

/* Scrollable Category Tabs Bar on Mobile */
.menu-tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}
.menu-tabs::-webkit-scrollbar {
  display: none;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border: 1px solid #ffffff; border-radius: var(--r-pill);
  font-family: var(--f-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer; background: #ffffff; color: #000000;
  transition: all 0.35s var(--spring);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.25), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: #f0f0f0; border-color: #ffffff;
  box-shadow: 0 10px 36px rgba(255, 255, 255, 0.4);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-glass {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: var(--r-pill);
  font-family: var(--f-body); font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3); border-top-color: rgba(255, 255, 255, 0.6);
  color: #ffffff; transition: all 0.3s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2); border-color: rgba(255, 255, 255, 0.7); transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════
   FEATURES STRIP
═══════════════════════════════════════════════════════ */
.features-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 36px 44px; position: relative; z-index: 1; margin-top: -60px;
}

.feature-card {
  border-radius: var(--r-lg); padding: 32px 24px; text-align: center;
  transition: transform 0.4s var(--spring), box-shadow 0.4s, border-color 0.4s;
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 60px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.4);
}

.feature-badge {
  display: inline-block; padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff; margin-bottom: 16px;
}

.feature-card h3 { font-family: var(--f-heading); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; color: #ffffff; margin-bottom: 8px; }
.feature-card p { font-size: 0.82rem; color: var(--txt-2); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   HIGH-RESOLUTION SCROLL-DRIVEN 3D TEA ESTATE ANIMATION
═══════════════════════════════════════════════════════ */
.estate-scroll-section {
  height: 480vh;
  position: relative;
  background: var(--bg-main);
  z-index: 2;
}

#estate-scroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#estate-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: contrast(1.10) brightness(1.03);
}

#estate-scroll-sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, transparent 45%, rgba(0,0,0,0.45) 85%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.95) 100%);
}

.estate-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  pointer-events: none;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.estate-hero-title {
  font-family: var(--f-heading);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 18px;
  margin-bottom: 18px;
}
.estate-hero-title .line-1 { display: block; color: #ffffff; font-weight: 800; }
.estate-hero-title .line-2 { display: block; color: #ffffff; font-weight: 800; }

.estate-hero-subtitle {
  max-width: 520px;
  color: var(--txt-2);
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
}

.estate-scroll-label {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.5s var(--ease);
}
.estate-scroll-label.visible { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   OUR STORY — ULTRA-RICH PACKED SHOWCASE (Zero Empty Space)
═══════════════════════════════════════════════════════ */
.about-highlights-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.highlight-item {
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s var(--spring), border-color 0.3s;
}

.highlight-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.7);
}

.highlight-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
}

.highlight-item h4 {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.highlight-item p {
  font-size: 0.76rem;
  color: var(--txt-2);
}

.story-subheading {
  font-family: var(--f-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  margin-bottom: 32px;
}

.story-quote-card {
  border-radius: var(--r-lg);
  padding: 28px 32px;
  margin-top: 24px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.quote-text {
  font-family: var(--f-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 12px;
}

.quote-author {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt-3);
}

/* 2. Terroir Slopes Grid */
.terroir-wrap {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.terroir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.terroir-card {
  border-radius: var(--r-lg);
  padding: 28px 22px;
  transition: transform 0.4s var(--spring), border-color 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.terroir-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.7);
}

.terroir-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  margin-bottom: 14px;
}

.terroir-card h4 {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.terroir-desc {
  font-size: 0.8rem;
  color: var(--txt-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.terroir-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--txt-3);
  letter-spacing: 0.05em;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* 3. Craft Standards 6-Grid */
.craft-steps-wrap {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.craft-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: transform 0.4s var(--spring), border-color 0.4s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.7);
}

.step-num {
  display: block;
  font-family: var(--f-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1;
}

.step-card h4 {
  font-family: var(--f-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.82rem;
  color: var(--txt-2);
  line-height: 1.65;
}

/* 4. Interactive Sommelier Quiz Wrapper */
.sommelier-quiz-wrap {
  margin-top: 56px;
  border-radius: var(--r-xl);
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.quiz-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
}

.quiz-header h3 {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 14px;
  margin-bottom: 10px;
}

.quiz-header p {
  font-size: 0.9rem;
  color: var(--txt-2);
}

.quiz-options {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.quiz-btn {
  padding: 10px 26px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--r-pill);
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt-2);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.quiz-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}

.quiz-btn.active {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  font-weight: 700;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
}

.quiz-result {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.6);
}

.quiz-result-photo-wrap {
  height: 180px;
  border-radius: var(--r-md);
  overflow: hidden;
}

.quiz-result-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quiz-result-info h4 {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 8px;
}

.quiz-result-info p {
  font-size: 0.88rem;
  color: var(--txt-2);
  line-height: 1.65;
  margin-bottom: 20px;
}

.quiz-match-price-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 5. Timeline Journey Grid */
.story-timeline-wrap {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.timeline-card {
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: transform 0.4s var(--spring), border-color 0.4s;
}

.timeline-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.65);
}

.timeline-year {
  display: inline-block;
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.timeline-card h4 {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.82rem;
  color: var(--txt-2);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   SECTIONS & HEADERS (SEAMLESS TIGHT SPACING)
═══════════════════════════════════════════════════════ */
.section { padding: 85px 0; position: relative; z-index: 1; background: var(--bg-main); }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 44px; }
.section-header { text-align: center; margin-bottom: 32px; }
.section-tag { margin-bottom: 18px; }

.section-title {
  font-family: var(--f-heading);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; text-transform: uppercase;
  color: #ffffff; margin-bottom: 16px;
}
.section-desc { max-width: 540px; margin: 0 auto; color: var(--txt-2); font-size: 0.95rem; font-weight: 300; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   MENU
═══════════════════════════════════════════════════════ */
.menu-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
  padding: 10px 26px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22); border-top-color: rgba(255, 255, 255, 0.4);
  border-radius: var(--r-pill);
  font-family: var(--f-body); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; color: var(--txt-2);
  cursor: pointer; transition: all 0.3s var(--ease);
}
.tab-btn:hover { color: #ffffff; background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.45); }
.tab-btn.active {
  background: rgba(255, 255, 255, 0.18); border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff; font-weight: 700;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255,255,255,0.35);
}

.tab-content { display: none; animation: fadeIn 0.45s var(--ease); }
.tab-content.active { display: block; }

.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.menu-card {
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform 0.4s var(--spring), box-shadow 0.4s, border-color 0.4s;
  display: flex; flex-direction: column; height: 100%;
}
.menu-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 28px 70px rgba(0,0,0,0.9), inset 0 1px 0 rgba(255,255,255,0.4);
}

.card-photo-wrap {
  height: 210px; width: 100%; position: relative; overflow: hidden; flex-shrink: 0;
}
.card-photo {
  width: 100%; height: 145%; object-fit: cover; object-position: center;
  transform: translate3d(0, var(--par, 0px), 0);
  transition: transform 0.35s var(--ease);
  will-change: transform;
  image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges;
  filter: contrast(1.08) brightness(1.02) saturate(1.04);
}
.menu-card:hover .card-photo { transform: translate3d(0, var(--par, 0px), 0) scale(1.08); }

.card-photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6) 100%);
}

.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; justify-content: space-between; }

.item-tag {
  position: absolute; top: 12px; left: 12px; z-index: 3;
  display: inline-block; padding: 4px 12px; border-radius: var(--r-pill);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4); color: #ffffff;
}

.item-name { font-family: var(--f-heading); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; color: #ffffff; margin-bottom: 6px; }
.item-desc { font-size: 0.78rem; color: var(--txt-2); line-height: 1.6; margin-bottom: 18px; }

.card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price {
  font-family: var(--f-heading); font-size: 1.45rem; font-weight: 800;
  color: #ffffff;
}

.add-btn {
  padding: 8px 18px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3); border-top-color: rgba(255, 255, 255, 0.5);
  font-family: var(--f-body); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; color: #ffffff;
  cursor: pointer; transition: all 0.3s var(--spring);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.25);
}
.add-btn:hover {
  background: #ffffff; border-color: #ffffff;
  color: #000000; transform: scale(1.06);
}

/* ═══════════════════════════════════════════════════════
   ABOUT STORY
═══════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-para { color: var(--txt-2); font-size: 0.95rem; font-weight: 300; line-height: 1.85; margin-bottom: 18px; }

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 36px; }
.stat-card { border-radius: var(--r-md); padding: 22px 16px; text-align: center; }
.stat-num {
  font-family: var(--f-heading); font-size: 2.5rem; font-weight: 800; line-height: 1;
  color: #ffffff;
}
.stat-label { display: block; font-size: 0.7rem; color: var(--txt-3); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 6px; }

.about-cards-stack { display: flex; flex-direction: column; gap: 18px; }

.story-photo-card {
  border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: 150px 1fr; align-items: center;
  transition: transform 0.4s var(--spring), border-color 0.4s;
}
.story-photo-card:hover {
  transform: translateX(8px); border-color: rgba(255, 255, 255, 0.6);
}
.story-img-container { height: 100%; min-height: 130px; width: 100%; overflow: hidden; }
.story-photo {
  width: 100%; height: 145%; object-fit: cover; object-position: center;
  transform: translate3d(0, var(--par, 0px), 0);
  transition: transform 0.35s var(--ease);
  will-change: transform;
  image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges;
  filter: contrast(1.08) brightness(1.02) saturate(1.04);
}
.story-text {
  padding: 22px 24px; display: flex; flex-direction: column; justify-content: center;
}
.story-text h4 { font-family: var(--f-heading); font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; color: #ffffff; margin-bottom: 6px; }
.story-text p { font-size: 0.82rem; color: var(--txt-2); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   SOCIAL MEDIA GALLERY (@chaiandco Instagram Feed)
═══════════════════════════════════════════════════════ */
.social-photo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.social-card {
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  aspect-ratio: 1 / 1; cursor: pointer;
  transition: transform 0.4s var(--spring), border-color 0.4s, box-shadow 0.4s;
}
.social-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}
.social-photo {
  width: 100%; height: 145%; object-fit: cover; object-position: center;
  transform: translate3d(0, var(--par, 0px), 0);
  transition: transform 0.35s var(--ease);
  will-change: transform;
  image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges;
  filter: contrast(1.08) brightness(1.02) saturate(1.04);
}
.social-card:hover .social-photo { transform: translate3d(0, var(--par, 0px), 0) scale(1.08); }

.social-overlay {
  position: absolute; inset: 0; z-index: 10;
  background: rgba(0, 0, 0, 0.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.social-card:hover .social-overlay { opacity: 1; }
.social-tag {
  font-size: 0.75rem; font-weight: 700; color: #ffffff; margin-bottom: 4px;
}
.social-overlay p { font-size: 0.8rem; color: #ffffff; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.tslider-wrap { overflow: hidden; margin-bottom: 36px; width: 100%; }
.tslider-track { display: flex; gap: 18px; transition: transform 0.6s var(--ease); width: 100%; }
.t-card { min-width: calc(50% - 9px); flex-shrink: 0; border-radius: var(--r-lg); padding: 36px; }
.t-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.t-stars span { width: 12px; height: 12px; background: #ffffff; clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }

.t-text { font-family: var(--f-body); font-size: 1.15rem; font-weight: 400; color: #ffffff; line-height: 1.7; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 14px; }

.t-avatar-photo {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.6); flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges;
  filter: contrast(1.08) brightness(1.02) saturate(1.04);
}

.t-author strong { display: block; font-family: var(--f-heading); font-size: 0.95rem; font-weight: 700; color: #ffffff; }
.t-author span { font-size: 0.75rem; color: var(--txt-3); }

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 18px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #ffffff; cursor: pointer; border: 1px solid rgba(255,255,255,0.3); transition: all 0.3s var(--spring);
}
.slider-btn:hover { background: #ffffff!important; color: #000000!important; border-color: #ffffff!important; transform: scale(1.1); }
.slider-btn:active { transform: scale(0.95); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 99px; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s; }
.dot.active { background: #ffffff; width: 24px; box-shadow: 0 0 10px #ffffff; }

/* ═══════════════════════════════════════════════════════
   CONTACT & RESERVATION (Glass Form)
═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card { display: flex; align-items: flex-start; gap: 16px; padding: 22px; border-radius: var(--r-md); }
.info-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.35); flex-shrink: 0; position: relative; }
.info-icon::after { content: ''; position: absolute; inset: 12px; border-radius: 50%; background: #ffffff; }

.info-card h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #ffffff; margin-bottom: 4px; }
.info-card p { font-size: 0.84rem; color: var(--txt-2); line-height: 1.65; }

.reservation-form-wrap { border-radius: var(--r-xl); padding: 40px; }
.reservation-form-wrap h3 { font-family: var(--f-heading); font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; color: #ffffff; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.72rem; font-weight: 700; color: var(--txt-3); letter-spacing: 0.14em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 17px; background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28); border-top-color: rgba(255, 255, 255, 0.5);
  border-radius: var(--r-sm); color: #ffffff; font-family: var(--f-body); font-size: 0.88rem; outline: none;
  transition: all 0.3s var(--ease); -webkit-appearance: none; appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #ffffff; background: rgba(255, 255, 255, 0.12); box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--txt-4); }
.form-group select option { background: var(--bg-deep); color: #ffffff; }
.form-group textarea { resize: vertical; min-height: 80px; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.visible { display: block; }
.form-success h4 { font-family: var(--f-heading); font-size: 1.8rem; font-weight: 800; color: #ffffff; margin-bottom: 8px; }
.form-success p { color: var(--txt-2); font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#footer { padding: 40px; position: relative; z-index: 1; background: var(--bg-main); }
.footer-glass { border-radius: var(--r-xl); max-width: 1240px; margin: 0 auto; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; padding: 56px 48px 40px; }
.footer-logo { font-family: var(--f-heading); font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; text-transform: uppercase; color: #ffffff; margin-bottom: 14px; }
.footer-tagline { font-size: 0.84rem; color: var(--txt-3); line-height: 1.7; margin-bottom: 24px; }
.social-links,
.mobile-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-social-row {
  margin-top: 14px;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease,
              color 0.25s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.social-btn .social-svg {
  width: 18px;
  height: 18px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.25s ease;
  pointer-events: none;
}

/* 1. Instagram: Vibrant multi-tone gradient with magenta-orange glow */
.social-btn.s-ig:hover,
.social-btn.s-ig:active,
.social-btn.s-ig:focus-visible,
.social-btn.s-ig.touched {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
  border-color: #d6249f !important;
  color: #ffffff !important;
  box-shadow: 0 0 24px rgba(214, 36, 159, 0.8), 0 4px 18px rgba(253, 89, 73, 0.5) !important;
  transform: translateY(-4px) scale(1.12);
}

/* 2. Facebook: Signature #1877F2 royal blue */
.social-btn.s-fb:hover,
.social-btn.s-fb:active,
.social-btn.s-fb:focus-visible,
.social-btn.s-fb.touched {
  background: #1877F2 !important;
  border-color: #1877F2 !important;
  color: #ffffff !important;
  box-shadow: 0 0 24px rgba(24, 119, 242, 0.85), 0 4px 18px rgba(24, 119, 242, 0.5) !important;
  transform: translateY(-4px) scale(1.12);
}

/* 3. Twitter / X: Vibrant #1DA1F2 cyan-blue */
.social-btn.s-tw:hover,
.social-btn.s-tw:active,
.social-btn.s-tw:focus-visible,
.social-btn.s-tw.touched {
  background: #1DA1F2 !important;
  border-color: #1DA1F2 !important;
  color: #ffffff !important;
  box-shadow: 0 0 24px rgba(29, 161, 242, 0.85), 0 4px 18px rgba(29, 161, 242, 0.5) !important;
  transform: translateY(-4px) scale(1.12);
}

/* 4. YouTube: Iconic #FF0000 crimson */
.social-btn.s-yt:hover,
.social-btn.s-yt:active,
.social-btn.s-yt:focus-visible,
.social-btn.s-yt.touched {
  background: #FF0000 !important;
  border-color: #FF0000 !important;
  color: #ffffff !important;
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.85), 0 4px 18px rgba(255, 0, 0, 0.5) !important;
  transform: translateY(-4px) scale(1.12);
}

/* 5. WhatsApp: Lush #25D366 emerald green */
.social-btn.s-wa:hover,
.social-btn.s-wa:active,
.social-btn.s-wa:focus-visible,
.social-btn.s-wa.touched {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #ffffff !important;
  box-shadow: 0 0 24px rgba(37, 211, 102, 0.85), 0 4px 18px rgba(37, 211, 102, 0.5) !important;
  transform: translateY(-4px) scale(1.12);
}

.footer-col h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: var(--txt-3); transition: color 0.25s; }
.footer-col a:hover { color: #ffffff; }

.footer-news h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--txt-3); margin-bottom: 12px; }
.footer-news p { font-size: 0.82rem; color: var(--txt-3); line-height: 1.7; margin-bottom: 18px; }
.news-form { display: flex; border-radius: var(--r-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.3)!important; padding: 4px; }
.news-form input { flex: 1; padding: 10px 14px; background: transparent; border: none; color: #ffffff; font-family: var(--f-body); font-size: 0.84rem; outline: none; }
.news-form input::placeholder { color: var(--txt-4); }
.news-form button { padding: 10px 18px; background: #ffffff; color: #000000; border: none; font-family: var(--f-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; border-radius: var(--r-sm); }

.footer-btm { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 48px; text-align: center; }
.footer-btm p { font-size: 0.76rem; color: var(--txt-4); }

/* ═══════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--f-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #ffffff;
}
.preloader-ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: #ffffff;
  animation: spin 0.9s linear infinite;
}
.preloader-text {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt-3);
}
@keyframes spin { to { transform: rotate(360deg); } }



/* ═══════════════════════════════════════════════════════
   ANIMATIONS & REVEAL
═══════════════════════════════════════════════════════ */
@keyframes hero-in { from { opacity: 0; transform: translateY(22px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse-dot { 0%,100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.6); opacity: 0.4; } }
@keyframes arrow-bounce { 0%,100% { transform: rotate(45deg) translateY(0); opacity: 0.6; } 50% { transform: rotate(45deg) translateY(6px); opacity: 0.2; } }
@keyframes float-slow { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-30px) translateX(20px); } }
@keyframes shine-sweep { 0% { transform: translateX(-150%); } 100% { transform: translateX(250%); } }
@keyframes shake { 0%, 100% { transform: translateX(0); } 20% { transform: translateX(-8px); } 40% { transform: translateX(8px); } 60% { transform: translateX(-5px); } 80% { transform: translateX(5px); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Directional reveal variants */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-zoom { opacity: 0; transform: scale(0.92); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible { opacity: 1; transform: translateX(0) scale(1); }

/* Floating glass decorative orbs that drift with scroll */
.glass-orb {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.glass-orb.orb-1 { width: 320px; height: 320px; top: -60px; left: -80px; animation: float-slow 9s ease-in-out infinite; }
.glass-orb.orb-2 { width: 260px; height: 260px; bottom: -40px; right: -60px; animation: float-slow 11s ease-in-out infinite reverse; }
.glass-orb.orb-3 { width: 180px; height: 180px; top: 40%; left: 5%; animation: float-slow 8s ease-in-out infinite; }
.glass-orb.orb-4 { width: 220px; height: 220px; bottom: 20%; right: 3%; animation: float-slow 10s ease-in-out infinite reverse; }

/* Glass shine sweep on cards on hover */
.glass-shine {
  position: relative;
  overflow: hidden;
}
.glass-shine::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-150%);
  pointer-events: none;
}
.glass-shine:hover::after {
  animation: shine-sweep 0.9s var(--ease);
}

/* Hover lift for glass panels */
.glass-lift {
  transition: transform 0.5s var(--spring), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.glass-lift:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 30px 60px rgba(0,0,0,0.9), 0 0 30px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.4);
}

/* Section content parallax layer */
.parallax-layer {
  will-change: transform;
}

/* Sections that host floating glass orbs need relative positioning */
.has-orbs {
  position: relative;
  overflow: hidden;
}
.has-orbs > .glass-orb {
  z-index: 0;
}
.has-orbs > .section-inner {
  position: relative;
  z-index: 1;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE FIRST
═══════════════════════════════════════════════════════ */

/* ── Tablet: 1100px ─────────────────────────────────── */
@media (max-width: 1100px) {
  .menu-grid              { grid-template-columns: repeat(2, 1fr); }
  .features-strip         { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .about-highlights-bar   { grid-template-columns: repeat(2, 1fr); }
  .terroir-grid           { grid-template-columns: repeat(2, 1fr); }
  .craft-steps-grid       { grid-template-columns: repeat(2, 1fr); }
  .timeline-grid          { grid-template-columns: repeat(2, 1fr); }
  .social-photo-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .contact-grid           { grid-template-columns: 1fr; }
  .quiz-result            { grid-template-columns: 1fr; }
  .quiz-result-photo-wrap { height: 220px; }
  .footer-inner           { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile Nav: 900px ──────────────────────────────── */
@media (max-width: 900px) {
  /* Navbar pill shrinks on mobile */
  #main-nav {
    top: 12px;
    width: calc(100% - 24px);
    height: 58px;
    padding: 0 18px;
  }
  #main-nav.scrolled {
    top: 8px;
    width: calc(100% - 20px);
    height: 54px;
    padding: 0 16px;
  }
  .nav-logo { font-size: 1.35rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger {
    display: flex;
  }

  /* Sections */
  .t-card { min-width: 100%; }
  #footer { padding: 20px; }
  .footer-inner { padding: 36px 24px; }
}
.mobile-bg-video {
  display: none;
}

/* ── Tablet & Mobile: 768px ─────────────────────────── */
@media (max-width: 768px) {
  /* Mobile: Video runs in background (normal viewport height, not scroll-scrub) */
  #canvas-section {
    height: auto !important;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
  }
  #canvas-sticky {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  /* Hardware-accelerated background video on mobile generated from teacup frames */
  .mobile-bg-video {
    display: block !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 1;
  }

  #mobile-estate-video {
    object-fit: cover;
  }

  #tea-canvas,
  #estate-canvas {
    display: none !important;
  }

  .hero-overlay {
    position: relative !important;
    inset: auto !important;
    z-index: 10;
    min-height: 90vh;
    min-height: 90dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 40px;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: none !important;
  }
  .pour-label, .scroll-hint {
    display: none !important;
  }

  /* Estate section on mobile: background video loop */
  .estate-scroll-section {
    height: 65vh !important;
    height: 65dvh !important;
    position: relative !important;
    overflow: hidden;
  }
  #estate-scroll-sticky {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .estate-hero-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    transform: none !important;
  }
  .estate-scroll-label {
    display: none !important;
  }
}

/* ── Small Mobile: 640px ────────────────────────────── */
@media (max-width: 640px) {
  /* Global spacing */
  .section-inner  { padding: 0 16px; }
  .section        { padding: 60px 0; }





  /* Hero text readable on small screens */
  .hero-title {
    font-size: clamp(1.95rem, 9.2vw, 2.85rem);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    max-width: 100%;
  }
  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 320px;
    padding: 0 4px;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 260px;
  }
  .btn-primary,
  .btn-glass {
    width: 100%;
    max-width: 260px;
    padding: 13px 20px; /* Comfortable touch target */
    font-size: 0.84rem;
  }

  /* Features strip */
  .features-strip       { grid-template-columns: 1fr; padding: 20px 16px; gap: 12px; }
  .feature-card         { padding: 24px 18px; }

  /* About section */
  .about-highlights-bar { grid-template-columns: 1fr 1fr; gap: 10px; }
  .highlight-item       { padding: 16px 12px; }
  .about-grid           { gap: 28px; }
  .stats-grid           { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-card            { padding: 16px 8px; }
  .stat-num             { font-size: 1.6rem; }

  /* Terroir + craft grids */
  .terroir-grid         { grid-template-columns: 1fr; gap: 12px; }
  .craft-steps-grid     { grid-template-columns: 1fr; gap: 12px; }
  .timeline-grid        { grid-template-columns: 1fr; gap: 12px; }

  /* Menu */
  .menu-grid            { grid-template-columns: 1fr; gap: 16px; }
  .menu-tabs            { gap: 6px; flex-wrap: wrap; justify-content: center; }
  .tab-btn              { padding: 10px 14px; font-size: 0.75rem; }
  .card-photo-wrap      { height: 200px; }
  .card-body            { padding: 16px; }
  .item-name            { font-size: 1.05rem; }
  .item-desc            { font-size: 0.82rem; }
  .flavor-chips         { gap: 5px; margin: 8px 0 2px; }
  .flavor-chip          { font-size: 0.65rem; padding: 3px 9px; }

  /* Social grid */
  .social-photo-grid    { grid-template-columns: 1fr 1fr; gap: 10px; }
  .social-card          { border-radius: 14px; }

  /* Testimonials */
  .t-card               { min-width: 100%; padding: 28px 20px; }
  .t-text               { font-size: 0.9rem; }
  .t-avatar-photo       { width: 42px; height: 42px; }
  .slider-controls      { gap: 12px; margin-top: 18px; }
  .slider-btn           { width: 40px; height: 40px; font-size: 1rem; }

  /* Contact & form */
  .form-row             { grid-template-columns: 1fr; gap: 14px; }
  .reservation-form-wrap { padding: 24px 16px; }
  .form-group label     { font-size: 0.8rem; }
  .form-group input,
  .form-group select,
  .form-group textarea  {
    font-size: 1rem; /* prevents iOS zoom on focus */
    padding: 14px 16px;
    min-height: 48px; /* accessible touch target */
  }
  .contact-cards        { gap: 10px; }
  .info-card            { padding: 18px 16px; gap: 14px; }
  .map-embed-wrap       { border-radius: 14px; margin-bottom: 24px; }
  .map-embed-wrap iframe { height: 200px; }

  /* Footer */
  .footer-inner         { grid-template-columns: 1fr; gap: 32px; padding: 36px 20px; }
  .footer-logo          { font-size: 1.6rem; }
  .footer-tagline       { font-size: 0.82rem; }
  .social-links         { gap: 8px; flex-wrap: wrap; }
  .social-btn           { width: 40px; height: 40px; font-size: 0.72rem; }
  .news-form            { flex-direction: column; gap: 8px; border-radius: 12px; }
  .news-form input      { padding: 14px 16px; font-size: 1rem; }
  .news-form button     { padding: 14px 20px; width: 100%; border-radius: 10px; }

  /* Misc */
  .scroll-hint          { display: none; }
  .sommelier-quiz-wrap  { padding: 24px 16px; }
  .quiz-opts            { gap: 8px; }
  .quiz-opt             { padding: 12px 16px; font-size: 0.82rem; }
  .about-para           { font-size: 0.9rem; }
  .story-quote-card     { padding: 20px 18px; }
  .quote-text           { font-size: 0.88rem; }
  .section-title        { font-size: clamp(1.65rem, 7.5vw, 2.25rem); line-height: 1.1; }
  .section-desc         { font-size: 0.86rem; }
  .pour-label           { font-size: 0.75rem; padding: 8px 14px; }
  .estate-hero-title    { font-size: clamp(1.75rem, 8vw, 2.45rem); line-height: 1.08; }
}

/* ── Tiny Mobile: 400px ─────────────────────────────── */
@media (max-width: 400px) {
  #main-nav           { width: calc(100% - 16px); height: 52px; padding: 0 14px; }
  .nav-logo           { font-size: 1.15rem; }
  .hero-title         { font-size: clamp(1.7rem, 8.8vw, 2.1rem); }
  .about-highlights-bar { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr; gap: 8px; }
  .social-photo-grid  { grid-template-columns: 1fr; }
  .menu-tabs          { gap: 4px; }
  .tab-btn            { padding: 9px 10px; font-size: 0.72rem; }
  .section-inner      { padding: 0 12px; }
  .estate-hero-title  { font-size: 1.6rem; }
  .section-title      { font-size: 1.55rem; }
}

/* ═══════════════════════════════════════════════════════
   PURE BLACK & WHITE THEME — All colors pure white
═══════════════════════════════════════════════════════ */

/* ── 1. Pure White Accent Token ─────────────────────── */
:root {
  --accent-warm:        #ffffff;
  --accent-warm-glow:   rgba(255, 255, 255, 0.15);
  --accent-warm-border: rgba(255, 255, 255, 0.35);
}

/* ── 2. Pure White Section Titles ───────────────────── */
.section-title {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset !important;
  color: #ffffff !important;
  letter-spacing: -0.03em;
}

/* ── 3. Nav Active White Dot Indicator ──────────────── */
.nav-link { position: relative; }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  transition: all 0.3s var(--ease);
}

/* ── 4. Flavor Chips — Pure White Glass ─────────────── */
.flavor-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 4px;
}
.flavor-chip {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.68rem;
  font-weight: 500;
  font-family: var(--f-body);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.flavor-chip:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.50);
  color: #ffffff;
}

/* ── 5. Social Engagement Metadata ─────────────────── */
.social-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 4px;
}
.social-handle {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}
.social-likes {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.01em;
}
.social-view-btn {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 12px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: rgba(255, 255, 255, 0.90);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
.social-view-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
}

/* ── 6. Google Maps Embed Wrap ──────────────────────── */
.map-embed-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  margin-bottom: 40px;
}
.map-embed-wrap iframe { display: block; width: 100%; }

/* ── 7. Back to Top Button — Pure White ─────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(8, 8, 12, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.7), 0 0 16px rgba(255,255,255,0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), background 0.2s;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.70);
  box-shadow: 0 8px 32px rgba(0,0,0,0.8), 0 0 24px rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

/* ── 8. Pure White Badges, Tags, Pills ──────────────── */
.feature-badge,
.item-tag,
.terroir-badge,
.glass-pill.section-tag {
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: rgba(255, 255, 255, 0.88) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* ── 9. Pure White Glass CTA Buttons ────────────────── */
.btn-primary {
  background: rgba(255, 255, 255, 0.95) !important;
  color: #000000 !important;
  border: 1px solid rgba(255, 255, 255, 0.80) !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5) !important;
}
.btn-primary:hover {
  background: #ffffff !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255,255,255,0.18) !important;
  transform: translateY(-2px) !important;
}

/* ── 10. Pure White Price + Stat Numbers ─────────────── */
.price { color: #ffffff !important; font-weight: 700; }
.stat-num { color: #ffffff !important; }

@media (max-width: 480px) {
  #back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.1rem; }
  .flavor-chips { gap: 4px; }
  .flavor-chip { font-size: 0.62rem; padding: 3px 8px; }
}

/* ══════════════════════════════════════════════════════════
   ENHANCED GLASSMORPHISM & SCROLL EFFECTS — B&W MONOCHROME
   (Refractions, light streaks, cursor glow, scroll progress)
══════════════════════════════════════════════════════════ */

/* ── Custom Cursor Glow (subtle white aura) ─────────── */
#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 35%, transparent 70%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
body.cursor-live #cursor-glow { opacity: 0.9; }

/* ── Glass Refractive Lighting Streaks (animated) ───── */
.glass-panel {
  --streak-x: -60%;
  --streak-y: -80%;
}
.glass-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 120%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.10) 40%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0.08) 60%, transparent 100%);
  transform: translate(var(--streak-x), var(--streak-y)) rotate(8deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  z-index: 3;
}
.glass-panel:hover::after {
  opacity: 1;
  transform: translate(180%, 80%) rotate(8deg);
}

/* ── Soft edge sheen on glass cards ─────────────────── */
.feature-card, .terroir-card, .step-card, .timeline-card,
.social-card, .menu-card, .t-card, .info-card, .highlight-item {
  position: relative;
}
.feature-card::before, .terroir-card::before, .step-card::before,
.timeline-card::before, .social-card::before, .menu-card::before,
.t-card::before, .info-card::before, .highlight-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, transparent 35%, transparent 70%, rgba(255,255,255,0.25) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.4;
  transition: opacity 0.4s var(--ease);
}
.feature-card:hover::before, .terroir-card:hover::before, .step-card:hover::before,
.timeline-card:hover::before, .social-card:hover::before, .menu-card:hover::before,
.t-card:hover::before, .info-card:hover::before, .highlight-item:hover::before {
  opacity: 1;
}

/* ── Enhanced aurora blobs (more organic drift) ─────── */
.aurora-blob { will-change: transform, opacity; }

/* ── Refined reveal: add blur + slight scale ────────── */
.reveal {
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
  filter: blur(0px);
}
.reveal:not(.visible) {
  filter: blur(6px);
}

/* ── Magnetic hover elevation on primary CTAs ───────── */
.nav-cta, .btn-primary, .btn-glass, .add-btn {
  will-change: transform;
}

/* ── Menu card photo zoom glow on hover ─────────────── */
.menu-card:hover { box-shadow: 0 28px 70px rgba(0,0,0,0.9), 0 0 34px rgba(255,255,255,0.10), inset 0 1px 0 rgba(255,255,255,0.4); }

/* ── Testimonial card border glow ───────────────────── */
.t-card { backdrop-filter: blur(26px); -webkit-backdrop-filter: blur(26px); }

/* ── Reduced motion: disable non-essential animation ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .aurora-blob, .glass-panel::after, #cursor-glow { display: none !important; }
}

/* ══════════════════════════════════════════════════════════
   MOMENTUM SCROLL EFFECTS — LETTER CASCADE, WORD MASKS,
   IN-FRAME PHOTO PARALLAX, INFINITE MARQUEE
══════════════════════════════════════════════════════════ */

/* ── 1. Infinite Glass Marquee ─────────────────────────── */
.marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0;
  border-left: none;
  border-right: none;
  box-shadow: none;
  contain: paint;
}
.marquee::before { z-index: 3; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.marquee-rev .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-group {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 44px);
  padding: 18px 0;
  flex-shrink: 0;
}
.mq-item {
  font-family: var(--f-heading);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}
.mq-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── 2. Hero Title Letter Cascade (on page load) ──────── */
.hw { display: inline-block; white-space: nowrap; }
.hc {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.06em;
  margin-bottom: -0.06em;
}
.hci {
  display: inline-block;
  transform: translateY(120%) rotate(6deg);
  opacity: 0;
  transition: transform 0.9s var(--spring) calc(var(--wd, 0s) + var(--d, 0s)),
              opacity 0.55s var(--ease) calc(var(--wd, 0s) + var(--d, 0s));
  will-change: transform, opacity;
}
body.loaded .hci {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

/* ── 3. Section Title Word-Mask Reveal (on scroll) ─────── */
.title-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.title-word {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.85s var(--ease) var(--d, 0s),
              opacity 0.55s var(--ease) var(--d, 0s);
  will-change: transform, opacity;
}
.ts.visible .title-word {
  transform: translateY(0);
  opacity: 1;
}

/* ── Reduced motion overrides for the new effects ─────── */
@media (prefers-reduced-motion: reduce) {
  .hci, .title-word { transform: none !important; opacity: 1 !important; }
  .marquee-track { animation: none !important; }
}
