@font-face {
  font-family: 'cooperative';
  src: url('fonts/Cooperative-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'cooperative';
  src: url('fonts/Cooperative-Regular.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "RodchenkoCond W08 Regular";
  src: url("https://db.onlinewebfonts.com/t/11561c376d2be8e86d6d4efaa154df2e.eot");
  src: url("https://db.onlinewebfonts.com/t/11561c376d2be8e86d6d4efaa154df2e.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/11561c376d2be8e86d6d4efaa154df2e.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/11561c376d2be8e86d6d4efaa154df2e.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/11561c376d2be8e86d6d4efaa154df2e.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/11561c376d2be8e86d6d4efaa154df2e.svg#RodchenkoCond W08 Regular")format("svg");
}


/* ============================================
   BORN Reserve — Design System
   Dark Editorial Theme
   ============================================ */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  /* Core Palette */
  --bg: #151314;
  --surface: #1E1B1C;
  --surface-mid: #252223;
  --surface-elevated: #2D2A2B;
  --text-primary: #F5F0E8;
  --text-secondary: #C0AFA2;
  --text-muted: #8B7D72;
  --accent-gold: #e6c487;
  --accent-warm: #ffb4a2;
  --born-white: #FFFFFF;
  --border-subtle: rgba(230, 196, 135, 0.12);
  --border-hover: rgba(230, 196, 135, 0.3);

  /* Per-Property Accents */
  --double-roti: #00A651;
  --double-dashi: #E8412A;
  --jolly-indian-pink: #E8234A;
  --jolly-indian-gold: #F5A623;
  --fufu-red: #CC2200;
  --fufu-cream: #F2EDE4;
  --sortd-navy: #0F4C6B;
  --sortd-bone: #E8E0CC;
  --cherrypond-green: #5B8C5A;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;
  --space-4xl: 12rem;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;

  /* Layout */
  --max-width: 1400px;
  --nav-height: 72px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

em {
  font-style: normal;
}

/* ---------- TYPOGRAPHY ---------- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.heading-sm {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.body-md {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.body-sm {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Mobile WhatsApp CTA */
.mobile-wa-cta span {
  color: #25d366 !important;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-gold);
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0A0809;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
  overflow: hidden;
}

.preloader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Atmospheric Environment */
.preloader-env {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preloader-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.preloader-glow--1 {
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.preloader-glow--2 {
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.preloader-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Centerpiece Composition */
.preloader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.brand-monolith-wrap {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.brand-monolith {
  width: clamp(100px, 15vw, 160px);
  height: clamp(100px, 15vw, 160px);
  background: #fff;
  border-radius: 4px;
  padding: 12px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 30px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-monolith img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.monolith-shadow {
  position: absolute;
  bottom: -60px;
  width: 80px;
  height: 10px;
  background: rgba(0, 0, 0, 0.6);
  filter: blur(15px);
  border-radius: 50%;
  z-index: 1;
}

/* Footer Progress */
.preloader-footer {
  position: absolute;
  bottom: 80px;
  width: 120px;
}

.preloader-progress {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.preloader-progress-inner {
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  opacity: 0.4;
  transform: translateX(-100%);
}

@keyframes move {
  /* Keyframes removed as they are no longer used by the new loader */
}

/* ---------- GRAIN OVERLAY ---------- */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ---------- CUSTOM CURSOR ---------- */
@media (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  input,
  select,
  textarea,
  .nav-link,
  .nav-dropdown-item {
    cursor: none;
  }

  .cursor-dot,
  .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
  }

  .cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    transition: opacity 0.2s, background-color 0.2s;
  }

  .cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(199, 171, 114, 0.4);
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
  }

  body.cursor-hover .cursor-dot {
    opacity: 0;
  }

  body.cursor-hover .cursor-outline {
    width: 44px;
    height: 44px;
    background-color: rgba(199, 171, 114, 0.1);
    border-color: var(--accent-gold);
  }
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 8, 9, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav.nav-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

/* Nav WhatsApp Reserve CTA */
.nav-reserve-wrap {
  position: relative;
  margin-left: var(--space-md);
}

.nav-reserve-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25d366;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-reserve-btn:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

.nav-reserve-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  background: #1A1819;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

.nav-reserve-dropdown[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nrd-outlet {
  display: block;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.nrd-outlet:hover {
  background: rgba(255, 255, 255, 0.03);
}

.nrd-name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-primary);
}

@media (max-width: 900px) {
  .nav-reserve-wrap {
    display: none;
  }
}

.mobile-wa-cta span {
  color: #25d366 !important;
}

.mobile-wa-cta svg {
  color: #25d366 !important;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--surface-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: var(--space-xs) 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-fast) var(--ease-out);
  backdrop-filter: blur(20px);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: all var(--duration-fast);
}

.nav-dropdown-item:hover {
  color: var(--text-primary);
  background: rgba(201, 169, 110, 0.08);
}

.nav-dropdown-item .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* Mobile Menu */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-burger span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(280px, 80vw);
  height: 100vh;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  padding: calc(var(--nav-height) + 2.5rem) 2rem 2rem;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.55);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  width: 100%;
  transition: color var(--duration-fast);
}

.mobile-menu-link:hover {
  color: var(--text-primary);
}

.mobile-dropdown-menu .mobile-menu-link {
  font-size: 0.75rem !important;
  padding: 0.5rem 0;
  letter-spacing: 0.12em;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-carousel-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 8s linear;
  z-index: 1;
}

.hero-carousel-item.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1.05);
  /* Subtle zoom effect */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(10, 8, 9, 0.4) 0%, var(--bg) 95%);
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: clamp(180px, 25vw, 320px);
  margin: 0 auto var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.3s forwards;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7.5vw, 7rem);
  font-weight: 700;
  font-style: normal;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
  letter-spacing: -0.025em;
  line-height: 1.0;
  display: flex;
  gap: 0.3em;
  justify-content: center;
  overflow: hidden;
}

.tagline-part {
  display: inline-block;
  transition: transform 0.1s linear;
  /* Fast response for scroll */
}

.split-tagline .tagline-left {
  transform: translateX(var(--split-x, 0));
}

.split-tagline .tagline-right {
  transform: translateX(calc(var(--split-x, 0) * -1));
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-out) 1s forwards;
  display: flex;
  gap: 0.4em;
  justify-content: center;
  overflow: hidden;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.3s forwards;
}

.hero-scroll-cue span {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-gold) 0%, transparent 100%);
  animation: scrollPulse 2s var(--ease-in-out) infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

/* ---------- WHO WE ARE ---------- */
.who-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  /* no padding — pin-wrap controls spacing */
  overflow-x: hidden;
  /* Contain BounceCards overflow on mobile */
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.who-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.who-headline em {
  color: var(--accent-gold);
  font-style: normal;
}

.who-body {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.who-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: normal;
  color: var(--accent-gold);
  padding-left: var(--space-md);
  border-left: 2px solid var(--accent-gold);
  margin-top: var(--space-lg);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* Values Cards */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.value-card {
  background: var(--surface-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
  opacity: 0;
  transform: translateY(24px);
}

.value-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.value-letter {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.value-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ---------- VISIONARIES SECTION ---------- */
.visionaries-section {
  padding-top: var(--space-3xl);
}

.visionaries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.visionary-card {
  background: var(--surface);
  border: 1px solid var(--surface-mid);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform var(--duration-normal), background var(--duration-normal);
  border-radius: 4px;
}

.visionary-card:hover {
  background: var(--surface-mid);
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.visionary-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.visionary-role {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.visionary-title {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---------- OUR HOUSES (Restaurants) ---------- */
.houses-section {
  overflow: hidden;
}

.houses-scroll-wrapper {
  padding: var(--space-xl) clamp(1.5rem, 4vw, 4rem);
}

.houses-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl) var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
}

.house-card {
  width: 100%;
  aspect-ratio: 340/480;
  height: auto;
  perspective: 1200px;
  cursor: pointer;
  position: relative;
}

.house-card-content {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px;
}

.house-card:hover .house-card-content,
.house-card:focus .house-card-content {
  transform: rotateY(180deg);
}

.house-card-front,
.house-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.house-card-front {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.house-card-back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Glowing border effect from Uiverse for the back */
.house-card-back-bg {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent 0%, transparent 40%, var(--card-accent) 50%, transparent 60%, transparent 100%);
  animation: rotateGlowing 4s linear infinite;
  opacity: 0.8;
}

@keyframes rotateGlowing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.house-card-back-inner {
  position: absolute;
  inset: 2px;
  background: #161210;
  /* Match surface color to cover inner part of gradient */
  border-radius: 14px;
  z-index: 1;
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.house-card-logo {
  flex-shrink: 0;
  width: 100%;
  height: 240px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1.25rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--surface-mid);
  background-size: cover;
  background-position: center;
}

.house-card-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 18, 16, 0.1) 0%, rgba(22, 18, 16, 0.95) 100%);
  z-index: 0;
}

.house-card-logo img {
  max-width: 120px;
  max-height: 50px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: transform var(--duration-slow) var(--ease-out);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
  background: transparent !important;
}

#house-doubledashi .house-card-logo img {
  max-width: 300px;
  max-height: 120px;
  margin-left: -45px;
  margin-top: -25px;
}

.logo-light {
  /* Python handles text coloring now, keeping drop shadow */
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5)) !important;
}

.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: transform var(--duration-fast) var(--ease-out);
}

.nav-logo-wrapper:hover .nav-logo {
  transform: scale(1.05);
}

.house-card:hover .house-card-logo img {
  transform: scale(1.05) translateY(-5px);
}

.house-card-body {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Center content vertically now footer is gone */
  text-align: center;
  flex: 1;
}

.house-card-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--card-accent);
  margin-bottom: 0.5rem;
}

.house-card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.house-card-desc {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: justify;
  text-align-last: center;
  hyphens: auto;
  -webkit-hyphens: auto;
  max-width: 280px;
}

#house-cherrypond .house-card-name,
#house-cherrypond .house-card-back-title,
#house-cherrypond .house-card-phone-link {
  color: #F5F0E8;
}

#house-cherrypond .house-card-phone-link {
  border-color: #F5F0E8;
}

#house-fufu .house-card-logo {
  background-size: cover;
  background-position: center;
  justify-content: flex-end;
  /* Move Fufu logo to the top-right so the left-side hand isn't blocked by the logo! */
}

#house-fufu .house-card-logo::before {
  /* Almost transparent gradient so food at bottom isn't hidden */
  background: linear-gradient(180deg, rgba(21, 19, 20, 0) 0%, rgba(21, 19, 20, 0.4) 100%);
}

#house-cherrypond .house-card-phone-link:hover {
  background: #F5F0E8;
  color: var(--bg);
}

#house-cherrypond .iso-pro span {
  background: #F5F0E8;
}

/* BACK CONTENT STYLES */
.house-card-back-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--card-accent);
  margin-bottom: var(--space-sm);
}

.house-card-phone-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.house-card-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--card-accent);
  border-radius: 100px;
  transition: all var(--duration-fast);
}

.house-card-phone-link:hover {
  background: var(--card-accent);
  color: var(--bg);
}

.house-card-website-link {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: var(--card-accent);
  text-underline-offset: 6px;
  margin-bottom: var(--space-md);
  transition: color var(--duration-fast);
}

.house-card-website-link:hover {
  color: var(--card-accent);
}

.house-card-menu-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.house-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: all var(--duration-fast);
}

.house-menu-btn:hover {
  border-color: var(--card-accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.house-menu-btn svg {
  width: 13px;
  height: 13px;
  stroke: var(--card-accent);
}

.house-menu-note {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
}

/* ── Isometric 3D Social Buttons ── */
.iso-social-row {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.iso-pro {
  list-style: none;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iso-pro a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--surface-elevated);
  border: 1px solid var(--border-subtle);
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.iso-pro .svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
  transition: fill 0.3s;
}

.iso-pro span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: var(--card-accent);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.iso-pro span:nth-child(1) {
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.2;
}

.iso-pro span:nth-child(2) {
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.15;
}

.iso-pro span:nth-child(3) {
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.1;
}

.iso-pro:hover a {
  transform: translate(0, -6px);
  background: var(--card-accent);
  border-color: var(--card-accent);
}

.iso-pro:hover .svg {
  fill: var(--bg);
}

.iso-pro:hover span:nth-child(1) {
  transform: translate(0, 12px);
  opacity: 0.25;
}

.iso-pro:hover span:nth-child(2) {
  transform: translate(0, 8px);
  opacity: 0.2;
}

.iso-pro:hover span:nth-child(3) {
  transform: translate(0, 4px);
  opacity: 0.15;
}

/* ---------- REVIEWS MARQUEE ---------- */
.reviews-section {
  background: var(--surface);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  margin-bottom: var(--space-md);
}

.marquee-track {
  display: flex;
  gap: var(--space-lg);
  animation: marquee 60s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track.reverse {
  animation-direction: reverse;
}

.review-card {
  min-width: 380px;
  max-width: 420px;
  background: var(--surface-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: var(--space-lg);
  flex-shrink: 0;
}

.review-stars {
  color: var(--accent-gold);
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
  letter-spacing: 2px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: normal;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.review-source {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ---------- FIND YOUR TABLE (Reservations) ---------- */
.findus-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}

.findus-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.findus-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: var(--space-sm);
}

.findus-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  text-align: justify;
  text-align-last: center;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.findus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.findus-card {
  background: var(--surface-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
  text-align: center;
}

.findus-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.findus-card-logo {
  height: 60px;
  margin: 0 auto var(--space-md);
  object-fit: contain;
}

.findus-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.findus-card-location {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.findus-card-address {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-md);
  min-height: 45px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.findus-card-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--accent-gold);
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out);
  margin-bottom: var(--space-sm);
}

.findus-card-phone:hover {
  background: var(--accent-gold);
  color: var(--bg);
}

.findus-card-map {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--duration-fast);
}

.findus-card-map:hover {
  color: var(--accent-gold);
}

/* ---------- MENUS SECTION ---------- */
.menus-section {
  background: var(--bg);
}

.menus-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
  justify-content: center;
}

.menu-tab {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.menu-tab:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

.menu-tab.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg);
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
  animation: fadeUp 0.4s var(--ease-out);
}

.menu-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.menu-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-mid);
  border: 1px solid var(--border-subtle);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  transition: all var(--duration-fast) var(--ease-out);
}

.menu-download-btn:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.menu-download-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold);
}

.menu-subcopy {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

.menu-subcopy a {
  color: var(--accent-gold);
}

/* ---------- CAREERS ---------- */
.careers-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
}

.careers-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.careers-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  margin-bottom: var(--space-sm);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.career-card {
  background: var(--surface-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.career-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.career-creative-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  font-style: normal;
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
}

.career-plain-role {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.career-property {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.career-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  transition: color var(--duration-fast);
}

.career-apply-btn:hover {
  color: var(--text-primary);
}

.careers-open-app {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: var(--space-xl);
}

.careers-open-app p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: normal;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  text-align: justify;
  text-align-last: center;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent-gold);
  padding: 0.875rem 2rem;
  border-radius: 100px;
  transition: all var(--duration-fast) var(--ease-out);
}

.cta-btn:hover {
  background: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

/* ---------- FAQ ---------- */
.faq-section {
  background: var(--bg);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-top: 2px solid var(--accent-gold);
  padding: 1.5rem;
  transition: border-color var(--duration-fast), transform var(--duration-fast);
}

.faq-card:hover {
  border-color: var(--border-hover);
  border-top-color: var(--accent-gold);
  transform: translateY(-3px);
}

.faq-card-q {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.faq-card-a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--space-sm);
}

.footer-legal-name {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: normal;
  color: var(--text-muted);
}

.footer-houses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.footer-house-link {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.footer-house-link:hover {
  color: var(--accent-gold);
}

.footer-contact {
  text-align: right;
}

.footer-contact-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.footer-contact-email {
  font-size: 0.9rem;
  color: var(--accent-gold);
  text-decoration: none;
}

.footer-address {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.footer-social-link {
  color: var(--text-muted);
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
}

.footer-social-link:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.footer-made {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

.footer:has(.footer-also) {
  padding-top: var(--space-lg);
}

.footer-also {
  padding: 0 0 var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.footer-also-lbl {
  display: inline-block;
  margin-bottom: 1.25rem;
  opacity: .55;
  transition: opacity .2s;
}

.footer-also-lbl:hover {
  opacity: .85;
}

.footer-also-born-logo {
  height: 44px;
  width: auto;
  display: block;
}

.footer-also-logos {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-also-logo-link {
  display: block;
  width: 140px;
  height: 84px;
  overflow: hidden;
  text-decoration: none;
  opacity: .7;
  transition: opacity .2s, transform .2s;
}

.footer-also-logo-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-also-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-home-link {
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color var(--duration-fast);
}

.footer-home-link:hover {
  color: var(--accent-gold);
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: 0ms;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: 100ms;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: 200ms;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: 300ms;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: 400ms;
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.visible>*:nth-child(6) {
  transition-delay: 500ms;
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .findus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .nav-links,
  .nav-wa-link {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .houses-track {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .house-card {
    width: 100%;
    min-width: 0;
  }

  .findus-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: 300px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-houses {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .houses-track {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .house-card {
    width: 100%;
    min-width: 0;
  }

  .review-card {
    min-width: 260px;
  }

  .menus-tabs {
    gap: 0.375rem;
  }

  .menu-tab {
    padding: 0.5rem 0.875rem;
    font-size: 0.65rem;
  }
}

/* ---------- DISCOVER SECTION (GEO/AEO) ---------- */
.discover-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 30%, var(--surface) 70%, var(--bg) 100%);
}

.discover-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.discover-card {
  background: var(--surface-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--duration-normal) var(--ease-out);
}

.discover-card:hover {
  border-color: var(--border-hover);
}

.discover-card.active {
  border-color: var(--discover-accent, var(--accent-gold));
}

.discover-card-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg) var(--space-lg);
  cursor: pointer;
  user-select: none;
  transition: background var(--duration-fast);
}

.discover-card-header:hover {
  background: rgba(201, 169, 110, 0.04);
}

.discover-card-accent {
  width: 4px;
  height: 40px;
  border-radius: 2px;
  background: var(--discover-accent, var(--accent-gold));
  flex-shrink: 0;
  transition: height var(--duration-normal) var(--ease-out);
}

.discover-card.active .discover-card-accent {
  height: 56px;
}

.discover-card-title-group {
  flex: 1;
  min-width: 0;
}

.discover-card-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  transition: color var(--duration-fast) var(--ease-out);
}

.discover-card.active .discover-card-name {
  color: var(--discover-accent, var(--accent-gold));
}

.discover-card-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.discover-card-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.discover-card.active .discover-card-toggle {
  transform: rotate(45deg);
  border-color: var(--discover-accent, var(--accent-gold));
  color: var(--discover-accent, var(--accent-gold));
}

.discover-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}

.discover-card-inner {
  padding: 0 var(--space-lg) var(--space-xl) var(--space-lg);
  padding-left: calc(var(--space-lg) + 4px + var(--space-md));
}

.discover-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.discover-content-grid p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.discover-subhead {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--discover-accent, var(--accent-gold));
  margin-bottom: var(--space-sm);
}

.discover-details-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.discover-detail p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.discover-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.discover-highlights li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.discover-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--discover-accent, var(--accent-gold));
}

.discover-cta-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

.discover-phone {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  transition: all var(--duration-fast);
}

.discover-phone:hover {
  border-color: var(--discover-accent, var(--accent-gold));
  color: var(--discover-accent, var(--accent-gold));
}

.discover-social {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.discover-social:hover {
  color: var(--accent-gold);
}

/* Discover responsive */
@media (max-width: 900px) {
  .discover-content-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .discover-details-row {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .discover-card-inner {
    padding-left: var(--space-lg);
  }
}

@media (max-width: 600px) {
  .discover-card-header {
    padding: var(--space-md);
  }

  .discover-card-name {
    font-size: 1.1rem;
  }

  .discover-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- MODAL & EXPLORE BTN ---------- */
.house-explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  width: 100%;
}

.house-explore-btn:hover {
  background: var(--text-primary);
  color: var(--bg);
  border-color: var(--text-primary);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
  padding: var(--space-md);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--surface-mid);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 10;
  background: var(--surface-mid);
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 1rem;
  border-radius: 0 16px 0 16px;
  transition: color var(--duration-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--accent-gold);
}

.modal-body {
  padding: 0;
}

.modal-body .discover-card-title-group {
  padding: var(--space-xl) var(--space-xl) 0 var(--space-xl);
  text-align: center;
}

.modal-body .discover-card-name {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-body .discover-card-inner {
  padding: var(--space-xl);
}

@media (max-width: 600px) {

  .modal-body .discover-card-title-group,
  .modal-body .discover-card-inner {
    padding: var(--space-lg);
  }
}

/* ---------- NEWSLETTER SECTION ---------- */
.newsletter-section {
  /* Start from --bg so the colour matches who-section's fade-to-black exit */
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 25%, var(--bg) 100%);
}

.newsletter-intro {
  max-width: 560px;
  margin-bottom: var(--space-xl);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.newsletter-card {
  background: var(--surface-mid);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.newsletter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.88), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.newsletter-card-img {
  flex-shrink: 0;
  width: 100%;
  height: 240px;
  position: relative;
  background-color: var(--surface-mid);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out);
}

.newsletter-card-img--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.newsletter-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 18, 16, 0.05) 0%, rgba(22, 18, 16, 0.85) 100%);
  z-index: 1;
}

.newsletter-card-img--contain::before {
  background: linear-gradient(180deg, rgba(22, 18, 16, 0.15) 0%, rgba(22, 18, 16, 0.6) 100%);
}

.newsletter-card:hover .newsletter-card-img {
  transform: scale(1.04);
}

.newsletter-card:hover .newsletter-card-img--contain {
  transform: scale(1.02);
}

.newsletter-card-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
  align-items: center;
}

.newsletter-card-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.newsletter-card-tag {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.newsletter-card-date {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.newsletter-card-headline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  max-width: 280px;
  text-align: justify;
  text-align-last: center;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.newsletter-card-copy {
  display: none;
}

.newsletter-card-cta {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nl-accent, var(--accent-gold));
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  transition: gap var(--duration-fast) var(--ease-out);
}

.newsletter-card:hover .newsletter-card-cta {
  gap: 10px;
}

.newsletter-card-cta svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .newsletter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .newsletter-card-img {
    height: 175px;
  }
}

/* ---------- STRUCTURED DATA (hidden) ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   HOSPITALITY MOTION
   Ambient, on-brand micro-animations inspired by the
   rituals of service: steam rising from hot food, a
   candle's warm breath across brass, a slow pour of
   something golden, and silverware laid down with care.
   ============================================ */

/* ---- 1. RISING STEAM — house cards on hover ----
   Three wisps of warm vapor curl upward through the
   top image on each card when the guest leans in. They
   live only on hover — quiet when ignored. */
.house-card-logo .steam-wisp {
  position: absolute;
  bottom: -20px;
  width: 70px;
  height: 110px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(ellipse at center,
      rgba(248, 240, 225, 0.30) 0%,
      rgba(248, 240, 225, 0.12) 40%,
      rgba(248, 240, 225, 0) 72%);
  filter: blur(9px);
  opacity: 0;
  will-change: transform, opacity;
}

.house-card-logo .steam-wisp.wisp-1 {
  left: 22%;
}

.house-card-logo .steam-wisp.wisp-2 {
  left: 48%;
  width: 56px;
  height: 92px;
}

.house-card-logo .steam-wisp.wisp-3 {
  left: 70%;
  width: 44px;
  height: 78px;
}

.house-card:hover .house-card-logo .steam-wisp,
.house-card:focus-visible .house-card-logo .steam-wisp {
  animation: steamRise 3.8s ease-out infinite;
}

.house-card:hover .house-card-logo .steam-wisp.wisp-2 {
  animation-delay: 0.9s;
}

.house-card:hover .house-card-logo .steam-wisp.wisp-3 {
  animation-delay: 1.8s;
}

@keyframes steamRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.55) skewX(0deg);
  }

  18% {
    opacity: 0.95;
  }

  55% {
    transform: translate3d(8px, -110px, 0) scale(1.15) skewX(3deg);
    opacity: 0.55;
  }

  100% {
    opacity: 0;
    transform: translate3d(-6px, -220px, 0) scale(1.6) skewX(-4deg);
  }
}

/* ---- 2. CANDLELIGHT — gold accent text ----
   Gold italic highlights ('Visionaries', 'Destination',
   'We build worlds.') breathe with a slow warm glow, as
   if lit by a tabletop candle. On hover the word catches
   the light like polished brass. */
.who-headline em,
em[style*="accent-gold"] {
  position: relative;
  animation: candleBreath 7s ease-in-out infinite;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {

  .who-headline em,
  em[style*="accent-gold"] {
    background-image: linear-gradient(115deg,
        var(--accent-gold) 0%,
        var(--accent-gold) 38%,
        #fff3d6 50%,
        var(--accent-gold) 62%,
        var(--accent-gold) 100%);
    background-size: 260% 100%;
    background-position: 100% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1.6s var(--ease-out);
  }
}

.who-headline:hover em,
h1:hover em[style*="accent-gold"],
h2:hover em[style*="accent-gold"],
.display-md:hover em[style*="accent-gold"] {
  background-position: 0% 50%;
}

@keyframes candleBreath {

  0%,
  100% {
    text-shadow:
      0 0 10px rgba(230, 196, 135, 0.10),
      0 0 22px rgba(230, 196, 135, 0.04);
  }

  38% {
    text-shadow:
      0 0 16px rgba(230, 196, 135, 0.24),
      0 0 38px rgba(230, 196, 135, 0.08);
  }

  52% {
    text-shadow:
      0 0 11px rgba(230, 196, 135, 0.16),
      0 0 28px rgba(230, 196, 135, 0.06);
  }

  68% {
    text-shadow:
      0 0 18px rgba(230, 196, 135, 0.28),
      0 0 42px rgba(230, 196, 135, 0.10);
  }
}

/* ---- 3. POUR FILL — scroll progress as a slow pour ----
   A thin line of warm amber traces across the top of the
   viewport as the page scrolls, like a bartender pouring
   a neat measure. The leading edge holds a small glint. */
.pour-fill-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg,
      rgba(230, 196, 135, 0) 0%,
      rgba(230, 196, 135, 0.55) 25%,
      rgba(255, 221, 150, 0.95) 75%,
      #ffe8b6 100%);
  box-shadow:
    0 0 10px rgba(230, 196, 135, 0.55),
    0 0 3px rgba(255, 232, 182, 0.85);
  z-index: 10000;
  pointer-events: none;
  transition: width 120ms linear;
  transform: translateZ(0);
}

.pour-fill-bar::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  bottom: -3px;
  width: 10px;
  border-radius: 50%;
  background: radial-gradient(circle,
      #fff3d6 0%,
      rgba(255, 221, 150, 0.85) 35%,
      rgba(230, 196, 135, 0) 70%);
  opacity: 0.9;
  filter: blur(0.5px);
}

/* ---- 4. SILVERWARE — section label lays itself down ----
   The tiny gold dash before every section label draws
   itself in on reveal, like a knife set to the right of
   the plate. Same pace as a waiter, never a rush. */
.section-label::before {
  width: 0;
  transition: width 900ms var(--ease-out) 150ms;
}

.section-label.reveal.visible::before,
.reveal.visible .section-label::before,
.reveal.visible.section-label::before {
  width: 32px;
}

/* On mobile, labels show instantly anyway — draw them in
   whenever they paint. */
@supports not (selector(.section-label.reveal.visible)) {
  .section-label::before {
    animation: silverwareLay 900ms var(--ease-out) 150ms forwards;
  }

  @keyframes silverwareLay {
    from {
      width: 0;
    }

    to {
      width: 32px;
    }
  }
}

/* ---- ACCESSIBILITY — honor reduced-motion ---- */
@media (prefers-reduced-motion: reduce) {

  .house-card-logo .steam-wisp,
  .who-headline em,
  em[style*="accent-gold"],
  .pour-fill-bar,
  .section-label::before {
    animation: none !important;
    transition: none !important;
  }

  .house-card-logo .steam-wisp {
    display: none;
  }

  .who-headline em,
  em[style*="accent-gold"] {
    background: none;
    -webkit-text-fill-color: var(--accent-gold);
    color: var(--accent-gold);
  }

  .section-label::before {
    width: 32px;
  }
}

/* ============================================
   PREMIUM UPGRADE — BORN Reserve v2
   Move 1: Typography polish (Cormorant + Manrope + DM Sans)
   Move 2: Hero upgrade
   Move 3: Six Worlds section
   Move 4: Vibe Gallery (Bento)
   Move 5: General polish
   ============================================ */

/* ---- MOVE 2: HERO INDICATOR DOTS ---- */
.hero-indicators {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.5s forwards;
}

.hero-indicator {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  border: none;
  padding: 0;
}

.hero-indicator.active {
  background: var(--indicator-color, var(--accent-gold));
  width: 48px;
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ---- MOVE 2: HERO CINEMATIC VIGNETTE ---- */
.hero-overlay {
  background: radial-gradient(ellipse at 50% 40%, rgba(10, 8, 9, 0.25) 0%, rgba(10, 8, 9, 0.70) 65%, var(--bg) 100%) !important;
}

/* ---- MOVE 2: HERO GOLD RULE ---- */
.hero-gold-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: var(--space-md) auto 0;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}

/* ---- TYPOGRAPHY REFINEMENTS (Move 1 & 5) ---- */
.display-xl,
.display-lg,
.display-md,
.who-headline,
.visionary-name,
.career-creative-title,
.review-text,
.newsletter-card-headline,
.footer-tagline,
.who-quote {
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
}

.display-xl {
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1.05;
}

.display-md {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.who-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
}

/* ---- SECTION DIVIDERS (Move 5) ---- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-subtle) 20%, rgba(230, 196, 135, 0.2) 50%, var(--border-subtle) 80%, transparent 100%);
  margin: 0;
}

/* ---- WHO WE ARE — photo (Move 5) ---- */
.who-grid {
  gap: var(--space-2xl);
}

.who-body {
  font-size: 1.05rem;
  line-height: 1.85;
}

.who-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  border-left-color: rgba(230, 196, 135, 0.4);
  padding-left: var(--space-lg);
}

/* ---- VISIONARIES — editorial layout (Move 5) ---- */
.visionaries-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(260px, calc(50% - 1px)), 1fr));
  gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
}

.visionary-card {
  background: var(--surface);
  border: none;
  border-radius: 0;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.visionary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent-gold);
  transition: height var(--duration-slow) var(--ease-out);
}

.visionary-card:hover::before {
  height: 100%;
}

.visionary-card:hover {
  background: var(--surface-mid);
  transform: none;
  border-color: transparent;
}

.visionary-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.visionary-role {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 0.35rem;
}

.visionary-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- Visionary portrait cards ---- */
.visionary-card--has-photo,
.visionary-card--mono {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
}

.visionary-portrait {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: border-color var(--duration-normal) var(--ease-out),
    box-shadow var(--duration-normal) var(--ease-out);
}

.visionary-card:hover .visionary-portrait {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.15);
}

.visionary-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(10%) contrast(1.05);
  transition: filter var(--duration-normal) var(--ease-out),
    transform var(--duration-normal) var(--ease-out);
}

.visionary-card:hover .visionary-portrait img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.03);
}

.visionary-info {
  flex: 1;
  min-width: 0;
}

@media (max-width: 560px) {

  .visionary-card--has-photo,
  .visionary-card--mono {
    padding: var(--space-sm);
    gap: var(--space-sm);
  }

  .visionary-name {
    font-size: 1.05rem;
  }

  .visionary-role {
    font-size: 0.58rem;
  }

  .visionary-title {
    font-size: 0.72rem;
  }
}

/* ---- REVIEW CARD UPGRADE (Move 5) ---- */
.review-card {
  border-left: 3px solid var(--review-accent, var(--border-subtle));
  border-radius: 0 12px 12px 0;
}

.review-restaurant-tag {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--review-accent, var(--accent-gold));
  margin-bottom: 0.5rem;
  display: block;
}

.review-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* ============================================
   MOVE 3: SIX WORLDS SECTION
   ============================================ */
.worlds-section {
  background: var(--bg);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.worlds-header {
  padding-top: var(--space-3xl);
}

.world-panel {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.world-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--world-tint, transparent);
  pointer-events: none;
  z-index: 0;
}

.world-panel-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.world-panel:nth-child(even) .world-panel-inner {
  grid-template-columns: 3fr 2fr;
}

.world-panel:nth-child(even) .world-text {
  order: 2;
}

.world-panel:nth-child(even) .world-images {
  order: 1;
}

.world-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-3xl) clamp(2rem, 5vw, 6rem);
  position: relative;
}

.world-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(230, 196, 135, 0.15);
  position: absolute;
  top: var(--space-xl);
  left: clamp(1.5rem, 4vw, 5rem);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.world-text-content {
  position: relative;
  z-index: 1;
}

.world-accent-bar {
  width: 40px;
  height: 2px;
  background: var(--world-accent, var(--accent-gold));
  margin-bottom: var(--space-lg);
  transition: width var(--duration-slow) var(--ease-out);
}

.world-panel.visible .world-accent-bar {
  width: 80px;
}

.world-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.world-mood {
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--world-accent, var(--accent-gold));
  margin-bottom: var(--space-lg);
}

.world-copy {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 420px;
  margin-bottom: var(--space-xl);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.world-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--world-accent, var(--accent-gold));
  border-bottom: 1px solid var(--world-accent, var(--accent-gold));
  padding-bottom: 4px;
  width: fit-content;
  transition: gap var(--duration-normal) var(--ease-out), opacity var(--duration-fast);
}

.world-cta:hover {
  gap: 20px;
  opacity: 0.8;
}

/* ─── PORTAL IMAGE SYSTEM ─── */
.world-images {
  height: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 22px color-mix(in srgb, var(--world-accent, var(--accent-gold)) 28%, transparent));
  transition: filter 0.5s var(--ease-out);
}

.world-images:hover {
  filter: drop-shadow(0 0 40px color-mix(in srgb, var(--world-accent, var(--accent-gold)) 50%, transparent));
}

/* Clipped asymmetric portal */
.world-portal {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: zoom-in;
  clip-path: url(#portal-r);
}

.world-portal.portal-l {
  clip-path: url(#portal-l);
}

/* Full-bleed image inside portal */
.world-portal-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.world-images:hover .world-portal-img {
  transform: scale(1.05);
}

/* ─── SCROLL-DRIVEN SLIDES — Tailwind easing ─── */
.world-portal-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(0);
  transition:
    opacity 350ms cubic-bezier(0.4, 0, 0.2, 1),
    transform 350ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.world-portal-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.world-portal-slide.is-leaving-fwd {
  opacity: 0;
  transform: translateX(-5%);
  z-index: 1;
}

.world-portal-slide.is-leaving-back {
  opacity: 0;
  transform: translateX(5%);
  z-index: 1;
}

.world-portal-slide.is-entering-fwd {
  transform: translateX(5%);
}

.world-portal-slide.is-entering-back {
  transform: translateX(-5%);
}

/* Frame counter */
.world-portal-counter {
  position: absolute;
  bottom: clamp(1.4rem, 3vh, 2.2rem);
  right: clamp(1.2rem, 2.5vw, 2rem);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 232, 0.5);
  pointer-events: none;
  z-index: 3;
  transition: color 0.3s;
}

.world-images:hover .world-portal-counter {
  color: rgba(245, 240, 232, 0.8);
}

/* Radial vignette removed — orbit images float freely */
.world-portal-vignette {
  display: none;
}

/* Hover / entry hint overlay */
.world-portal-hint {
  position: absolute;
  bottom: clamp(1.8rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  opacity: 0;
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
  pointer-events: none;
  z-index: 2;
}

.world-images:hover .world-portal-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.portal-hint-icon {
  width: 50px;
  height: 20px;
  color: rgba(245, 240, 232, 0.75);
}

.portal-hint-text {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.60);
}

/* ─── SIX WORLDS — scroll reveal ─── */
/* Text zones: owned by GSAP ScrollReveal — no CSS animation */
.world-panel .world-portal {
  opacity: 0;
  transform: scale(0.93);
  will-change: opacity, transform;
}

.world-panel.visible .world-portal {
  animation: portalReveal 1.3s cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

.world-panel.visible .world-portal-hint {
  animation: hintPeek 3.2s 1.6s both;
}

/* ─── SCROLL REVEAL — word spans ─── */
.sr-word {
  display: inline-block;
}

@keyframes portalReveal {
  from {
    opacity: 0;
    transform: scale(0.93);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hintPeek {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
  }

  18% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  72% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }
}

/* ─── ORBIT PORTAL IMAGES ─── */
.orbit-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-item {
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  will-change: offset-distance, transform, opacity;
  pointer-events: auto;
  cursor: zoom-in;
  transform-origin: center;
  border-radius: 2px;
}


@media (max-width: 900px) {

  .world-panel-inner,
  .world-panel:nth-child(even) .world-panel-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .world-panel:nth-child(even) .world-text {
    order: 1;
  }

  .world-panel:nth-child(even) .world-images {
    order: 2;
  }

  .world-text {
    padding: var(--space-2xl) clamp(1.5rem, 5vw, 3rem) var(--space-xl);
    min-height: auto;
  }

  .world-number {
    font-size: clamp(4rem, 20vw, 8rem);
  }
}

@media (max-width: 600px) {

  .world-name {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
}

/* ============================================
   MOVE 4: VIBE GALLERY — BENTO/MASONRY
   ============================================ */
.gallery-section {
  background: var(--bg);
  padding: var(--space-3xl) 0;
}

.gallery-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.gallery-filter-btn {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.gallery-filter-btn:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
}

.gallery-filter-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--surface-mid);
  cursor: pointer;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 8, 9, 0.85) 100%);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-restaurant {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--item-accent, var(--accent-gold));
  margin-bottom: 0.5rem;
}

.gallery-item-mood {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.2;
}

.gallery-item.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.featured,
  .gallery-item.wide {
    grid-column: span 2;
    grid-row: span 1;
  }
}

/* ============================================
   MOVE 5: POLISH — hero, newsletter accent bar
   ============================================ */
.newsletter-card {
  border-top: 3px solid var(--nl-accent, var(--border-subtle));
}

/* Smoother house card hover */
.house-card-content {
  transition: transform 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gold section separator line */
.gold-separator {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin: var(--space-lg) 0;
}

/* Worlds nav (sticky dots) */
.worlds-sticky-nav {
  position: fixed;
  right: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.worlds-sticky-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.worlds-sticky-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  padding: 0;
  display: block;
}

.worlds-sticky-dot.active {
  background: var(--dot-color, var(--accent-gold));
  border-color: var(--dot-color, var(--accent-gold));
  transform: scale(1.5);
}

.worlds-sticky-dot:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .worlds-sticky-nav {
    display: none;
  }
}

/* =========================================
   WORLD PANEL — EDITORIAL STORY LAYOUT
   Each panel = exactly one viewport.
   Text side: chapter number → name → mood
   → narrative → signatures → best-for note.
   Images: 3-shot collage fills the full height.
   ========================================= */

/* Panel flows naturally — no sticky/scroll-extend behavior */
.world-panel {
  height: auto;
  min-height: 100vh;
  align-items: stretch;
  border-bottom: none;
  position: relative;
}

/* No border between panels — seamless scroll */

/* Normal flow — no sticky positioning */
.world-panel-inner {
  position: relative;
  height: auto;
  min-height: 100vh;
  align-items: stretch;
  z-index: 2;
}

/* Hide any leftover scroll-extend zones */
.world-scroll-extend {
  display: none;
}

/* Text column: three-zone flex layout
   Zone A (top)   — chapter number + location
   Zone B (middle) — name, mood, narrative
   Zone C (bottom) — signatures + best-for   */
.world-text {
  height: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.world-text-zone-a {
  padding: clamp(2rem, 4vh, 3.5rem) clamp(2.5rem, 5vw, 5rem) 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}

.world-text-zone-b {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vh, 4rem) clamp(2.5rem, 5vw, 5rem);
}

.world-text-zone-c {
  padding: clamp(1.5rem, 3vh, 2.5rem) clamp(2.5rem, 5vw, 5rem) clamp(2.5rem, 5vh, 4rem);
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Zone A: accent rule trailing the location label */
.world-chapter-sep {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--world-accent, var(--accent-gold)) 0%, transparent 100%);
  opacity: 0.3;
  align-self: center;
}

.world-location {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Zone B: name / mood / story */
.world-name {
  font-size: clamp(2.8rem, 5.5vw, 5.5rem) !important;
  margin-bottom: 1.25rem !important;
  line-height: 1.1 !important;
}

.world-mood {
  margin-bottom: clamp(1.25rem, 2.5vh, 2rem) !important;
}

.world-story {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-secondary);
  max-width: 440px;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

/* Zone C: signatures + best-for */
.world-signatures {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(0.75rem, 1.5vh, 1.25rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}

.world-signatures li {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.4;
}

/* · separator between items */
.world-signatures li:not(:last-child)::after {
  content: ' ·';
  color: var(--world-accent, var(--accent-gold));
  margin-right: 0.5rem;
  opacity: 0.6;
}

.world-best-for {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.world-best-for strong {
  font-style: normal;
  font-weight: 600;
  color: var(--world-accent, var(--accent-gold));
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-right: 0.4rem;
}

/* Portal column — height driven by .world-images */
.world-images-sticky {
  position: relative;
  overflow: visible;
}

/* Flip layout */
.world-panel--flip .world-panel-inner {
  grid-template-columns: 3fr 2fr;
}

.world-panel--flip .world-text {
  order: 2;
}

.world-panel--flip .world-images {
  order: 1;
}

/* Override legacy nth-child flip */
.world-panel:nth-child(even) .world-panel-inner {
  grid-template-columns: 2fr 3fr;
}

.world-panel:nth-child(even) .world-text {
  order: 1;
}

.world-panel:nth-child(even) .world-images {
  order: 2;
}

/* Hide old concept elements if somehow still present */
.world-concept,
.world-concept-block,
.world-concept-label,
.world-actions {
  display: none !important;
}

/* ---- responsive ---- */
@media (max-width: 900px) {

  .world-panel,
  .world-panel-inner {
    height: auto;
    min-height: 0;
  }

  .world-panel-inner,
  .world-panel:nth-child(even) .world-panel-inner,
  .world-panel--flip .world-panel-inner {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
  }

  .world-panel .world-text,
  .world-panel:nth-child(even) .world-text,
  .world-panel--flip .world-text {
    order: 1 !important;
  }

  .world-panel .world-images,
  .world-panel:nth-child(even) .world-images,
  .world-panel--flip .world-images {
    order: 2 !important;
  }

  .world-text {
    height: auto;
    overflow: visible;
  }

  .world-text-zone-a,
  .world-text-zone-b,
  .world-text-zone-c {
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
  }

  .world-text-zone-b {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
  }

  /* Compact image area on tablet/mobile — no orbit */
  .world-images {
    height: 58vw;
    min-height: 220px;
    max-height: 380px;
    padding: 0 var(--space-lg);
  }

  /* Drop the asymmetric clip-path — full-bleed card with subtle rounding */
  .world-portal,
  .world-portal.portal-l {
    clip-path: none;
    border-radius: 10px;
    overflow: hidden;
  }

  .world-panel--flip .world-text {
    order: 1;
  }

  .world-panel--flip .world-images {
    order: 2;
  }
}

@media (max-width: 600px) {
  .world-images {
    height: 68vw;
    max-height: 320px;
  }

  .world-portal,
  .world-portal.portal-l {
    clip-path: none;
    border-radius: 8px;
  }
}

/* Mobile portal swipe dots */
.mobile-portal-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
  pointer-events: none;
}

.mobile-portal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.35);
  transition: background 0.3s, transform 0.3s;
}

.mobile-portal-dot.active {
  background: var(--accent-gold, #C9A96E);
  transform: scale(1.4);
}

@media (min-width: 901px) {
  .mobile-portal-dots {
    display: none;
  }
}

/* ============================================
   WORLD LIGHTBOX
   ============================================ */
.wlb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.wlb[aria-hidden="false"] {
  display: flex;
}

.wlb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wlb-stage {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wlb-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}

.wlb-close {
  position: fixed;
  top: 1.5rem;
  right: 1.75rem;
  z-index: 2;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.wlb-close:hover {
  opacity: 1;
}

.wlb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.wlb-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.wlb-prev {
  left: 1.5rem;
}

.wlb-next {
  right: 1.5rem;
}

.wlb-counter {
  position: fixed;
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.wlb-thumbs {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  max-width: 90vw;
  padding: 0.25rem;
}

.wlb-thumb {
  width: 4rem;
  height: 2.75rem;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.45;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.wlb-thumb.active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.75);
}

/* ══════════════════════════════════════════════════════════════════
   WORLD CTA TOGGLE SYSTEM
   ══════════════════════════════════════════════════════════════════ */
.world-ctas {
  --card-accent: var(--world-accent);
  margin-top: clamp(1.5rem, 3vh, 2.5rem);
  padding-top: clamp(1.5rem, 3vh, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Phone row */
.world-phone-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.world-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: border-color 0.2s var(--ease-out), color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.world-phone-pill::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--card-accent);
  flex-shrink: 0;
  opacity: 0.85;
}

.world-phone-pill:hover {
  border-color: var(--card-accent);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Menu row */
.world-menu-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.world-menu-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--world-accent, var(--accent-gold));
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
}

.world-menu-link svg {
  opacity: 0.8;
  transition: transform 0.25s var(--ease-out);
}

.world-menu-link:hover {
  background: var(--world-accent, var(--accent-gold));
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.world-menu-link:hover svg {
  opacity: 1;
  transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .world-menu-row {
    justify-content: flex-start;
  }
}

.cta-toggle {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 3px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.cta-tab {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.42rem 1.15rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease-out);
  white-space: nowrap;
  user-select: none;
}

.cta-tab.is-active {
  color: #fff;
}

.cta-indicator {
  position: absolute;
  top: 3px;
  bottom: 3px;
  border-radius: 999px;
  background: var(--card-accent);
  transition: left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

/* CTA panels */
.cta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: flex-start;
}

.cta-panel.cta-panel--hidden {
  display: none;
}

/* Menu download buttons */
.cta-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.cta-menu-btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.cta-menu-btn:hover {
  border-color: var(--card-accent);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateY(-1px);
}

.cta-menu-btn:hover svg {
  opacity: 1;
}

/* Icon buttons (maps / IG / website) */
.cta-icon-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 54px;
  padding: 0.65rem 0.25rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: border-color 0.2s var(--ease-out), background 0.2s var(--ease-out), color 0.2s var(--ease-out), transform 0.22s var(--ease-out);
}

.cta-icon-btn svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.cta-icon-btn span {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.cta-icon-btn:hover {
  border-color: var(--card-accent);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  transform: translateY(-2px);
}

/* On-request note */
.cta-on-request {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  font-style: italic;
  letter-spacing: 0.025em;
  align-self: center;
}

/* ══════════════════════════════════════════════════════════════════
   GLOBAL POLISH — SCROLLBAR · SELECTION · FOCUS
   ══════════════════════════════════════════════════════════════════ */
::selection {
  background: rgba(230, 196, 135, 0.25);
  color: #fff;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: rgba(230, 196, 135, 0.25);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(230, 196, 135, 0.5);
}

:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ══════════════════════════════════════════════════════════════════
   HERO UPGRADE — CTA buttons + slide caption
   ══════════════════════════════════════════════════════════════════ */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(1.75rem, 3.5vh, 2.75rem);
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}

.hero-cta-primary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}

.hero-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
}

.hero-cta-wa:hover {
  background: #20c45a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

/* Slide caption — restaurant name lower-left */
.hero-slide-caption {
  position: absolute;
  bottom: calc(var(--nav-height) + 1.5rem);
  left: clamp(1.5rem, 4vw, 4rem);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}

.hero-slide-caption::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.6rem;
}

/* ══════════════════════════════════════════════════════════════════
   WORLD PANEL ZONE-A UPGRADES — price · hours · WA book link
   ══════════════════════════════════════════════════════════════════ */
.world-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.world-price-tier {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--world-accent, var(--accent-gold));
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-color: var(--world-accent, rgba(255, 255, 255, 0.1));
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  opacity: 0.9;
}

.world-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.world-hours::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--world-accent, var(--accent-gold));
  flex-shrink: 0;
}

.world-book-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #25D366;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.world-book-wa:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════════
   VISIONARIES — monogram fallback portrait
   ══════════════════════════════════════════════════════════════════ */
.visionary-portrait--mono {
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visionary-mono-letter {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
  opacity: 0.65;
}

/* ══════════════════════════════════════════════════════════════════
   CAREERS — BORN values strip
   ══════════════════════════════════════════════════════════════════ */
.careers-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: var(--space-xl);
}

.careers-value-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  transition: border-color 0.2s;
}

.careers-value-card:hover {
  border-color: rgba(230, 196, 135, 0.2);
}

.cv-letter {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.7;
}

.cv-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  padding-top: 0.3rem;
}

.cv-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER RESERVE BAR
   ══════════════════════════════════════════════════════════════════ */
.footer-reserve-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: clamp(1.5rem, 4vh, 2.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: var(--space-lg);
}

.footer-reserve-copy {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.01em;
}

/* Wrap that positions the dropdown relative to the button */
.footer-reserve-wrap {
  position: relative;
}

.footer-reserve-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  background: #25D366;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
}

.footer-reserve-btn:hover {
  background: #20c45a;
  transform: translateY(-1px);
}

.footer-reserve-btn[aria-expanded="true"] {
  background: #20c45a;
}

/* Chevron flips when open */
.frd-chevron {
  transition: transform 0.25s var(--ease-out);
  flex-shrink: 0;
}

.footer-reserve-btn[aria-expanded="true"] .frd-chevron {
  transform: rotate(180deg);
}

/* ── Outlet chooser dropdown ── */
.footer-reserve-dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  background: #1E1B1C;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.6rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
}

.footer-reserve-dropdown[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* "Choose your world" label */
.frd-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.75rem 0.5rem;
}

/* Individual outlet row */
.frd-outlet {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.frd-outlet:hover {
  background: rgba(37, 211, 102, 0.1);
}

.frd-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.frd-loc {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE FLOATING RESERVE STRIP
   ══════════════════════════════════════════════════════════════════ */
.mobile-reserve-strip {
  display: none;
}

@media (max-width: 768px) {
  .mobile-reserve-strip {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: rgba(21, 19, 20, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
    gap: 0;
    justify-content: stretch;
  }

  .mrs-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.5rem 0.25rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
    border-radius: 8px;
  }

  .mrs-btn:active {
    opacity: 0.7;
  }

  .mrs-reserve {
    color: #25D366;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 8px;
    flex: 1.4;
  }

  .mrs-btn svg {
    flex-shrink: 0;
  }

  /* Push page content above strip */
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }
}

/* ══════════════════════════════════════════════════════════════════
   TYPOGRAPHY REFINEMENTS
   ══════════════════════════════════════════════════════════════════ */
.display-xl,
.display-lg,
.display-md,
.hero-tagline {
  letter-spacing: -0.02em;
}

.world-name {
  letter-spacing: -0.03em;
}

/* Who-We-Are: wider column without the values grid */
.who-grid {
  grid-template-columns: 1fr;
  max-width: 680px;
}

@media (min-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr;
  }

  .who-headline {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
  }
}

/* ── Phone entry: pill + inline WA icon ──────────────────────────────────── */
.world-phone-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.world-phone-entry {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.world-phone-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.22);
  color: #25D366;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.18s var(--ease-out), border-color 0.18s var(--ease-out), transform 0.18s var(--ease-out);
}

.world-phone-wa svg {
  display: block;
}

.world-phone-wa:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
  transform: scale(1.12);
}

/* world-hours lives in zone-b (after story) — no override needed here */

/* Nullify old standalone WA button if any stale rule remains */
.world-book-wa {
  display: none;
}

/* ── Who We Are – BounceCards ────────────────────────────────────────────── */
.who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: var(--space-lg);
  overflow: hidden;
  /* contain BounceCard transforms at all breakpoints */
}

/* Prevent grid children from overflowing their columns on Android Chrome */
.who-text-col {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.who-body,
.who-quote {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 860px) {
  .who-layout {
    grid-template-columns: 1fr;
  }

  .who-text-col {
    width: 100%;
    max-width: calc(100vw - 3rem);
    /* explicit cap: viewport minus container padding */
  }

  .bc-wrap {
    padding: 3rem 0;
    overflow: hidden;
    min-height: 300px;
  }

  .bc-container {
    transform: scale(0.62);
    transform-origin: center center;
  }
}

@media (max-width: 480px) {
  .bc-wrap {
    min-height: 240px;
  }

  .bc-container {
    transform: scale(0.5);
  }
}

/* BounceCards wrapper — generous horizontal padding so fanned cards don't clip */
.bc-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem clamp(80px, 12vw, 180px);
  overflow: visible;
}

/* Override: on mobile, BounceCards must be clipped to prevent page overflow */
@media (max-width: 860px) {
  .bc-wrap {
    overflow: hidden;
    padding: 3rem 0;
  }
}

/* Container: cards position relative to this centre point */
.bc-container {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual photo cards */
.bc-card {
  position: absolute;
  width: clamp(150px, 13vw, 190px);
  aspect-ratio: 1;
  border: 6px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  will-change: transform;
}

.bc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}


/* ── Section-to-section flow polish ─────────────────────────────────────── */

/* Every .section needs position:relative so its ::before renders */
.section {
  position: relative;
}

/* Top gradient bridge — each section "emerges from the dark".
   Height is small so it doesn't overlay the section-label or heading. */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(40px, 6vh, 80px);
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
  /* no z-index — renders behind content naturally in stacking order */
}

/* Who-section: position:relative inherited from .section */

/* Worlds section — extra top gradient since it follows Press which ends at --bg */
.worlds-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(60px, 10vh, 120px);
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
}

/* Reviews and Visionaries share --surface bg — bridge to/from --bg */
.reviews-section::before,
.visionaries-section::before {
  background: linear-gradient(to bottom, var(--bg), transparent);
}

/* Newsletter cards: GSAP re-animates them — pre-hide here so no flash */
.newsletter-card {
  will-change: transform, opacity;
}

/* ── MOBILE OPTIMISATION ─────────────────────────────────────────────────── */

/* Tighten spacing variables and force single-column careers on narrow phones */
@media (max-width: 600px) {
  :root {
    --space-2xl: 3.5rem;
    --space-3xl: 4.5rem;
    --space-4xl: 6rem;
  }

  .careers-grid {
    grid-template-columns: 1fr;
  }

  .career-card {
    padding: var(--space-md);
  }
}

/* Further tighten on very compact phones (≤390px covers iPhone SE/13 mini/360px Android) */
@media (max-width: 390px) {
  :root {
    --space-xl: 3rem;
    --space-2xl: 3rem;
    --space-3xl: 3.5rem;
  }

  .review-card {
    min-width: 240px;
  }

  .world-text {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .footer-house-link {
    font-size: 0.65rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
  }
}

/* Remove excessive 100vh on stacked world panels — stacked layout needs auto height */
@media (max-width: 900px) {

  .world-panel,
  .world-panel-inner {
    min-height: 0;
  }
}

/* Kill justified text on narrow screens — word-spacing artifacts on short line lengths */
@media (max-width: 600px) {

  .who-body,
  .who-quote {
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
  }
}

@media (max-width: 480px) {

  .world-copy,
  .world-story,
  .world-best-for,
  .career-property,
  .faq-card-a,
  .press-excerpt,
  .review-body {
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
  }
}

/* ── ANDROID / MOBILE OVERFLOW SAFETY ────────────────────────────────────── */
/* Prevent ANY section from causing horizontal scroll on narrow viewports.
   Android Chrome doesn't always respect html/body overflow-x:hidden alone. */
@media (max-width: 900px) {

  .section,
  .who-section,
  .worlds-section,
  .newsletter-section,
  .reviews-section,
  .visionaries-section,
  .careers-section,
  .footer {
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Ensure text never overflows its container */
  .who-headline,
  .who-body,
  .who-quote,
  .world-story,
  .world-mood,
  .world-best-for,
  .world-name,
  .newsletter-card-headline,
  .newsletter-intro,
  .display-xl,
  .display-md,
  .display-lg,
  .body-lg,
  .body-md {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
  }

  /* All grid and flex direct children: prevent auto min-width blowout on Android */
  .who-layout>*,
  .who-grid>*,
  .world-panel-inner>*,
  .visionaries-grid>*,
  .footer-top>*,
  .faq-grid>* {
    min-width: 0;
  }

  /* who-text-col extra safety */
  .who-text-col {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

/* ─── Quick Facts Block ─────────────────────────────────────────────────── */
.quick-facts {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg);
}

.quick-facts .section-label {
  margin-bottom: var(--space-sm);
}

.quick-facts-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.01em;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: var(--space-md) var(--space-lg);
}

.quick-fact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.quick-fact-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.quick-fact-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.55;
}

@media (max-width: 600px) {
  .quick-facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }
}
/* Six Worlds — explicit Explore link below brand name */
.world-explore-link{display:inline-flex;align-items:center;gap:.4rem;font-family:var(--font-body);font-size:.66rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;color:var(--world-accent,#E8412A);text-decoration:none;padding:.5rem 0;border-bottom:1px solid currentColor;margin-bottom:.9rem;transition:opacity .2s,letter-spacing .2s;width:fit-content;}
.world-explore-link:hover{opacity:.78;letter-spacing:.28em;}
.world-explore-link span{transition:transform .25s;}
.world-explore-link:hover span{transform:translateX(4px);}

/* Restaurant page hero — per-location action blocks */
.rp-hero-actions{display:flex;flex-direction:column;gap:.9rem;margin-top:.5rem;}
.rp-hero-actions--single{flex-direction:row;flex-wrap:wrap;align-items:center;}
.rp-loc-block{display:flex;flex-direction:column;gap:.4rem;}
.rp-loc-label{font-family:var(--font-body);font-size:.58rem;font-weight:700;letter-spacing:.28em;text-transform:uppercase;color:var(--text-muted);margin:0;}
.rp-loc-btns{display:flex;gap:.5rem;flex-wrap:wrap;}
.rp-hero-cta-ghost{display:inline-flex;align-items:center;gap:.4rem;background:transparent;color:var(--text-primary);font-family:var(--font-body);font-size:.66rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;text-decoration:none;padding:.78rem 1.1rem;border:1px solid rgba(255,255,255,.18);transition:border-color .2s,color .2s;}
.rp-hero-cta-ghost:hover{border-color:var(--world-accent);color:var(--world-accent);}
.rp-hero-cta-ig{display:inline-flex;align-items:center;gap:.4rem;background:transparent;color:var(--text-muted);font-family:var(--font-body);font-size:.62rem;font-weight:700;letter-spacing:.22em;text-transform:uppercase;text-decoration:none;padding:.5rem 0;margin-top:.2rem;border-bottom:1px solid rgba(255,255,255,.12);transition:color .2s,border-color .2s;width:fit-content;}
.rp-hero-cta-ig:hover{color:var(--world-accent);border-color:var(--world-accent);}
.rp-hero-cta.rp-cta-wa{display:inline-flex;align-items:center;gap:.45rem;padding:.78rem 1.2rem;font-size:.66rem;letter-spacing:.18em;}
.rp-cta-wa svg{width:13px;height:13px;}
@media(max-width:560px){
  .rp-hero-actions--single{flex-direction:column;align-items:flex-start;}
}

/* Nested location dropdown — Double Roti & Double Dashi */
.nrd-parent{display:flex;align-items:center;justify-content:space-between;width:100%;background:none;border:none;cursor:pointer;text-align:left;font:inherit;color:inherit;padding:0.7rem 1rem;border-radius:8px;transition:background 0.2s ease;}
.nrd-parent:hover,.nrd-parent[aria-expanded="true"]{background:rgba(255,255,255,0.04);}
.nrd-caret{transition:transform 0.25s ease;opacity:.6;flex-shrink:0;}
.nrd-parent[aria-expanded="true"] .nrd-caret{transform:rotate(180deg);opacity:1;}
.nrd-sub{display:flex;flex-direction:column;padding:0 0 0.25rem 0.5rem;margin:0;border-left:1px solid rgba(255,255,255,0.07);margin-left:0.85rem;}
.nrd-sub[hidden]{display:none;}
.nrd-suboutlet{display:flex;align-items:center;justify-content:space-between;gap:0.75rem;padding:0.55rem 1rem;border-radius:6px;text-decoration:none;color:var(--text-primary);transition:background 0.2s ease;}
.nrd-suboutlet:hover{background:rgba(255,255,255,0.05);}
.nrd-subname{font-family:var(--font-heading);font-size:0.78rem;font-weight:600;letter-spacing:0.02em;color:var(--text-primary);}
.nrd-subnumber{font-family:var(--font-body);font-size:0.7rem;color:var(--text-muted);letter-spacing:0.04em;}

/* Mobile menu scoped overrides */
.mobile-dropdown-menu .nrd-parent{padding:0.4rem 0;font-size:1.4rem;opacity:0.8;color:#fff;}
.mobile-dropdown-menu .nrd-sub{padding-left:1.25rem;margin-left:0;border-left:1px solid rgba(255,255,255,0.1);}
.mobile-dropdown-menu .nrd-suboutlet{padding:0.45rem 0;}
.mobile-dropdown-menu .nrd-subname{font-size:1.15rem;font-weight:500;color:rgba(255,255,255,0.85);}
.mobile-dropdown-menu .nrd-subnumber{font-size:0.85rem;color:rgba(255,255,255,0.45);}


/* Find Us & Reserve dropdowns (Double Dashi + Double Roti) */
.rp-book-dd{position:relative;display:inline-block;}
.rp-book-dd-toggle{cursor:pointer;display:inline-flex;align-items:center;gap:.5rem;border:none;font:inherit;}
.rp-book-dd-toggle::after{content:'';display:inline-block;width:0;height:0;border-left:5px solid transparent;border-right:5px solid transparent;border-top:5px solid currentColor;transition:transform .2s;}
.rp-book-dd.open .rp-book-dd-toggle::after{transform:rotate(180deg);}
.rp-book-dd-menu{position:absolute;top:calc(100% + .35rem);left:0;right:auto;min-width:100%;background:#fff;color:var(--world-accent,#E8412A);box-shadow:0 12px 30px rgba(0,0,0,.25);opacity:0;pointer-events:none;transform:translateY(-6px);transition:opacity .18s,transform .18s;z-index:30;}
.rp-book-dd.open .rp-book-dd-menu{opacity:1;pointer-events:auto;transform:translateY(0);}
.rp-book-dd-menu a{display:block;font-family:var(--font-body);font-size:.7rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--world-accent,#E8412A);text-decoration:none;padding:.85rem 1.2rem;border-bottom:1px solid rgba(0,0,0,.08);white-space:nowrap;}
.rp-book-dd-menu a:last-child{border-bottom:none;}
.rp-book-dd-menu a:hover{background:rgba(0,0,0,.04);}
.rp-book-dd .rp-book-dir.rp-book-dd-toggle{color:#fff;}
.rp-book-dd .rp-book-dir.rp-book-dd-toggle::after{border-top-color:#fff;}
