/* ==========================================================================
   THE NARRATORS - CREATIVE CHRONICLE
   Luxury Event Planning & Hospitality Architecture
   Warm Light Luxury Theme (Pearl Ivory, Soft Sand & Faith Ibiza Slate Header)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design Tokens & CSS Variables (Warm Light Luxury Palette)
   -------------------------------------------------------------------------- */
:root {
  /* Warm Ivory, Pearl Sand & Rich Chocolate Palette */
  --color-bg-base: #FBF8F4;
  --color-bg-primary: #F5EFEB;
  --color-bg-secondary: #EFE7DE;
  --color-bg-card: #FFFFFF;
  --color-bg-card-hover: #FDFBF8;
  --color-bg-muted: #E6DCD1;

  /* Light Luxury Capsule Pill */
  --color-bg-pill: rgba(255, 255, 255, 0.92);
  --color-text-pill: #241610;
  --color-border-pill: rgba(184, 134, 11, 0.35);
  --color-bg-pill-hover: #B8860B;
  --color-text-pill-hover: #FFFFFF;

  --color-gold: #B8860B;
  --color-gold-light: #C5A880;
  --color-gold-hover: #9E743F;
  --color-gold-dim: rgba(184, 134, 11, 0.10);
  --color-gold-border: rgba(184, 134, 11, 0.25);

  --color-terracotta: #A85A3A;
  --color-bronze: #6E4728;
  --color-text-main: #241610;
  --color-text-light: #241610; /* Primary readable text */
  --color-text-muted: #5C4638;
  --color-text-dim: #8C7667;
  --color-text-dark: #1A0E08;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-cursive: 'Alex Brush', 'Great Vibes', cursive;

  /* Spacing */
  --space-unit: 8px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  --space-3xl: 140px;

  /* Transitions & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 9999px;
  --ease-luxury: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.25s var(--ease-luxury);
  --transition-normal: 0.45s var(--ease-luxury);
  --transition-slow: 0.85s var(--ease-luxury);

  /* Shadows for Light Theme */
  --shadow-card: 0 15px 35px -10px rgba(60, 36, 22, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 25px 50px -12px rgba(60, 36, 22, 0.16), 0 8px 25px rgba(184, 134, 11, 0.12);
  --shadow-gold: 0 10px 25px -5px rgba(184, 134, 11, 0.28);
  --shadow-polaroid: 0 20px 40px rgba(60, 36, 22, 0.15), 0 5px 15px rgba(0, 0, 0, 0.06);
}

/* --------------------------------------------------------------------------
   Reset & Normal Browser Cursor
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto !important; /* Managed by Lenis */
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: default;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  cursor: default;
}

/* Custom Cursor Disabled */
.custom-cursor, .custom-cursor-follower {
  display: none !important;
}

body.scroll-lock {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   Typography Utilities (Light Theme High Contrast)
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-text-main);
  letter-spacing: 0.015em;
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.font-cursive {
  font-family: var(--font-cursive);
  font-weight: 400;
  color: var(--color-bronze);
  display: inline-block;
  line-height: 1;
}

.text-gold {
  color: var(--color-gold) !important;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #8C6239 0%, #B8860B 50%, #6E4728 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Layout Containers & Grid
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-header {
  margin-bottom: var(--space-2xl);
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-tag::before, .section-tag::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--color-gold);
  opacity: 0.6;
}

.section-title {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  margin-bottom: 16px;
  color: var(--color-text-dark);
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   MAJESTIC HEAVEN'S GATES (ROYAL 3D PALACE OPENING SEQUENCE)
   -------------------------------------------------------------------------- */
.heaven-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  perspective: 1400px;
  overflow: hidden;
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
  transition: opacity 0.4s ease 1.1s;
}

.heaven-gate-overlay.gate-opened {
  opacity: 0;
  pointer-events: none;
}

/* 3D Gate Panel Doors */
.heaven-gate-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.5%;
  height: 100%;
  background: linear-gradient(135deg, #FAF6F0 0%, #F5EFEB 50%, #EFE7DE 100%);
  z-index: 5;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.35);
  transition: transform 1.2s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform;
}

.heaven-gate-left {
  left: 0;
  transform-origin: left center;
  border-right: 2px solid rgba(212, 175, 55, 0.85);
}

.heaven-gate-right {
  right: 0;
  transform-origin: right center;
  border-left: 2px solid rgba(212, 175, 55, 0.85);
}

.heaven-gate-overlay.gate-opened .heaven-gate-left {
  transform: rotateY(-96deg);
}

.heaven-gate-overlay.gate-opened .heaven-gate-right {
  transform: rotateY(96deg);
}

/* Gate Inner Carvings & Filigree */
.gate-filigree-layer {
  position: absolute;
  inset: 24px;
  border: 1.5px solid rgba(184, 134, 11, 0.35);
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.6) 0%, rgba(240, 230, 218, 0.25) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 35px rgba(184, 134, 11, 0.12);
}

.gate-royal-arch {
  position: absolute;
  top: 12%;
  width: 68%;
  height: 35%;
  border: 2px solid rgba(212, 175, 55, 0.55);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.2);
}

.gate-inner-carving {
  width: 60%;
  height: 50%;
  border: 1px solid rgba(184, 134, 11, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gate-motif {
  width: 55px;
  height: 55px;
  border: 1px dashed rgba(212, 175, 55, 0.45);
  transform: rotate(45deg);
}

.gate-gold-handle {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 75px;
  background: linear-gradient(to right, #B8860B, #FFD700, #996515);
  border-radius: 7px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 10px rgba(212, 175, 55, 0.6);
  transform: translateY(-50%);
}

.handle-left {
  right: 25px;
}

.handle-right {
  left: 25px;
}

/* Center Monogram Seal */
.heaven-gate-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: auto;
  transition: transform 1.0s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.8s ease-out;
}

.heaven-gate-overlay.gate-opened .heaven-gate-center {
  transform: translate(-50%, -50%) scale(1.3);
  opacity: 0;
  filter: blur(6px);
  pointer-events: none;
}

.heaven-flare-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 215, 140, 0.65) 0%, rgba(212, 175, 55, 0.3) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: flareGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes flareGlowPulse {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.heaven-royal-seal {
  background: rgba(255, 255, 255, 0.96);
  border: 2px solid rgba(212, 175, 55, 0.85);
  border-radius: 50px;
  padding: 18px 40px;
  box-shadow: 0 14px 40px rgba(60, 36, 22, 0.2), 0 0 30px rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}

.seal-crest-icon {
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.45));
}

.seal-brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  line-height: 1.1;
}

.seal-brand-tag {
  font-family: var(--font-cursive);
  font-size: 1.4rem;
  color: #936B2B;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.seal-desc {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #8C6D52;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}

/* Majestic Interactive TAP TO ENTER Button */
.heaven-tap-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #2D1A0E 0%, #1A0D06 100%);
  color: #F8EFE3;
  border: 1.5px solid rgba(212, 175, 55, 0.9);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(45, 26, 14, 0.35), 0 0 20px rgba(212, 175, 55, 0.45);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease;
  overflow: visible;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  user-select: none;
  pointer-events: auto;
}

.heaven-tap-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, #3D2413 0%, #201007 100%);
  border-color: #FFD700;
  box-shadow: 0 16px 40px rgba(45, 26, 14, 0.45), 0 0 35px rgba(212, 175, 55, 0.7);
  color: #FFF;
}

.heaven-tap-btn:active {
  transform: translateY(0) scale(0.97);
}

.tap-btn-halo {
  position: absolute;
  inset: -6px;
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 60px;
  animation: tapHaloPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes tapHaloPulse {
  0% {
    transform: scale(0.96);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.12);
    opacity: 0;
  }
  100% {
    transform: scale(0.96);
    opacity: 0;
  }
}

.tap-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E6C687;
  transition: transform 0.3s ease;
}

.heaven-tap-btn:hover .tap-btn-icon {
  transform: translateX(3px);
  color: #FFD700;
}

.tap-btn-text {
  position: relative;
  z-index: 1;
}

.tap-btn-sparkle {
  color: #D4AF37;
  font-size: 1.1rem;
  animation: sparkleTwinkle 1.8s ease-in-out infinite alternate;
}

@keyframes sparkleTwinkle {
  0% { transform: scale(0.8) rotate(0deg); opacity: 0.6; }
  100% { transform: scale(1.3) rotate(45deg); opacity: 1; color: #FFF; }
}

.heaven-gate-hint {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7A5328;
  font-weight: 600;
  margin-top: 14px;
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Floating Decorative Assets (Flying Elements)
   -------------------------------------------------------------------------- */
.floating-elements-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.floating-leaf {
  position: absolute;
  opacity: 0.35;
  filter: drop-shadow(0 8px 18px rgba(90, 55, 30, 0.15));
  animation: leafSway 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.floating-stamp {
  position: absolute;
  opacity: 0.45;
  filter: drop-shadow(0 6px 14px rgba(90, 55, 30, 0.12));
  animation: floatSlight 9s ease-in-out infinite alternate;
}

.floating-plane {
  position: absolute;
  opacity: 0.35;
  animation: planeDrift 18s linear infinite;
}

@keyframes leafSway {
  0% { transform: translateY(0px) rotate(0deg) scale(1); }
  50% { transform: translateY(-30px) rotate(8deg) scale(1.04); }
  100% { transform: translateY(15px) rotate(-6deg) scale(0.98); }
}

@keyframes floatSlight {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-25px) rotate(5deg); }
}

@keyframes planeDrift {
  0% { transform: translate(-10%, 10%) rotate(15deg); }
  50% { transform: translate(15%, -15%) rotate(18deg); }
  100% { transform: translate(-10%, 10%) rotate(15deg); }
}

/* --------------------------------------------------------------------------
   Site Header (Faith Ibiza Style: Left MENU Pill, Center Brand, Right BOOK Pill)
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: padding 0.4s var(--ease-luxury), background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

.site-header.scrolled {
  padding: 14px 0;
  background: rgba(251, 248, 244, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184, 134, 11, 0.2);
  box-shadow: 0 10px 30px rgba(60, 36, 22, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-left {
  display: flex;
  justify-content: flex-start;
}

.header-center {
  display: flex;
  justify-content: center;
  text-align: center;
}

.header-right, .header-right-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-pdf-btn {
  padding: 9px 18px;
  font-size: 0.78rem;
}

/* Light Luxury Capsule Buttons */
.header-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  border: 1.5px solid var(--color-gold-border);
  box-shadow: 0 4px 16px rgba(60, 36, 22, 0.08);
  backdrop-filter: blur(14px);
  transition: var(--transition-normal);
  cursor: pointer;
}

.site-header.scrolled .header-pill-btn {
  background: var(--color-bg-pill);
  color: var(--color-text-pill);
  border-color: var(--color-border-pill);
}

.header-pill-btn .header-pill-icon {
  color: var(--color-gold);
  transition: transform 0.3s var(--ease-spring), color 0.3s;
}

.header-pill-btn:hover {
  background: var(--color-gold);
  color: #FFFFFF;
  border-color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.header-pill-btn:hover .header-pill-icon {
  color: #FFFFFF;
}

.header-pill-btn:hover .plane-icon {
  transform: translateX(4px) translateY(-3px);
}

.header-pill-btn:hover .wave-icon {
  transform: scaleX(1.15);
}

/* Centered Brand Title */
.header-center-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.brand-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  line-height: 1.1;
  transition: color 0.3s;
}

.header-center-brand:hover .brand-title {
  color: var(--color-gold);
}

.brand-sub {
  font-family: var(--font-cursive);
  font-size: 1.25rem;
  color: var(--color-bronze);
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Fullscreen Luxury Navigation Overlay (Faith Ibiza Style 2-Column Masterpiece)
   -------------------------------------------------------------------------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 85% 15%, rgba(255, 253, 249, 0.98) 0%, rgba(247, 241, 235, 0.98) 60%, rgba(239, 231, 221, 0.98) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 5vw 28px 5vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: opacity 0.45s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.45s;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Overlay Top Header */
.nav-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.nav-overlay-brand {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text-dark);
  text-transform: uppercase;
}

.nav-brand-sub {
  font-family: var(--font-cursive);
  font-size: 1.15rem;
  color: #936B2B;
  letter-spacing: 0.05em;
  margin-top: -2px;
}

.nav-overlay-locations {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8C6D52;
  font-weight: 600;
}

.nav-overlay-locations .location-dot {
  color: #D4AF37;
  font-size: 0.8rem;
}

.nav-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  border-radius: 50px;
  cursor: pointer;
  color: var(--color-text-dark);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(60, 36, 22, 0.08);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-close-btn:hover {
  background: #2D1A0E;
  color: #FFF;
  border-color: #D4AF37;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(45, 26, 14, 0.25);
}

.nav-close-icon {
  font-size: 0.95rem;
  color: #D4AF37;
}

/* Main 2-Column Split Grid */
.nav-overlay-body {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5vw;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: auto auto;
  padding: 16px 0;
}

/* Left Column: Chapters Menu List */
.overlay-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-item-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nav-item-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #C5A059;
  min-width: 32px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.0vw, 2.1rem);
  font-weight: 600;
  color: #2D1A0E;
  letter-spacing: 0.01em;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-item-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A08268;
  font-weight: 500;
  margin-left: auto;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.nav-item-link:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: translateX(12px);
}

.nav-item-link:hover .nav-item-num {
  color: #936B2B;
  transform: scale(1.1);
}

.nav-item-link:hover .nav-item-title {
  color: #936B2B;
}

.nav-item-link:hover .nav-item-tag {
  opacity: 1;
  transform: translateX(0);
}

/* Right Column: Luxury Showcase & Concierge Box */
.nav-overlay-details {
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(212, 175, 55, 0.38);
  border-radius: 24px;
  padding: 36px 40px;
  box-shadow: 0 20px 50px rgba(60, 36, 22, 0.08), 0 0 30px rgba(212, 175, 55, 0.12);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
}

.nav-card-badge {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #936B2B;
  font-weight: 700;
  margin-bottom: 12px;
}

.nav-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 600;
  color: #2D1A0E;
  line-height: 1.25;
  margin-bottom: 14px;
}

.nav-card-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.65;
  color: #6E533F;
  margin-bottom: 24px;
}

.nav-contact-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.nav-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(248, 244, 238, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  color: #4A3324;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-contact-pill svg {
  color: #C5A059;
  flex-shrink: 0;
}

.nav-contact-pill:hover {
  background: #FFF;
  border-color: #D4AF37;
  color: #2D1A0E;
  transform: translateX(6px);
  box-shadow: 0 4px 15px rgba(60, 36, 22, 0.08);
}

.nav-card-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav-card-actions .btn {
  padding: 12px 24px;
  font-size: 0.82rem;
}

/* Bottom Bar */
.nav-overlay-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 18px;
  margin-top: 20px;
}

.nav-social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6E533F;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-social-links a:hover {
  color: #936B2B;
}

.social-sep {
  color: #D4AF37;
  font-size: 0.8rem;
}

.nav-copyright {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: #8C6D52;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .nav-overlay-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .nav-overlay-locations {
    display: none;
  }
  .nav-overlay-details {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .nav-overlay {
    padding: 24px 20px;
  }
  .nav-overlay-footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .nav-social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   Hero Banner (Pristine Ultra-Luxury Light Silk & Sunlit Marble Palace)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 100px;
  background-color: #FAF7F2;
  overflow: hidden;
}

/* Ultra-Luxury Champagne Silk & Golden Hour Sunlit Backdrop */
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-luxury-light.jpg');
  background-size: cover;
  background-position: center 38%;
  opacity: 0.95;
  transform: scale(1.02);
  animation: heroSilkFloat 22s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(251, 248, 244, 0.28) 0%, rgba(251, 248, 244, 0.60) 60%, rgba(245, 239, 233, 0.88) 100%);
  pointer-events: none;
  z-index: 2;
}

/* Floating Stardust Shimmer Particles */
.hero-particles-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(184, 134, 11, 0.3) 1.2px, transparent 1.2px), radial-gradient(rgba(212, 175, 55, 0.2) 1.2px, transparent 1.2px);
  background-size: 70px 70px, 110px 110px;
  background-position: 0 0, 35px 55px;
  pointer-events: none;
  opacity: 0.7;
  animation: particlesDrift 28s linear infinite;
  z-index: 3;
}

@keyframes particlesDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(-70px); }
}

@keyframes heroSilkFloat {
  0% { transform: scale(1.02) translateY(0); }
  50% { transform: scale(1.05) translateY(-8px); }
  100% { transform: scale(1.02) translateY(0); }
}

/* Hero Floating Polaroid Photo Previews */
.hero-floating-card {
  position: absolute;
  z-index: 12;
  pointer-events: auto;
  transition: transform 0.4s var(--ease-spring), filter 0.4s, z-index 0.4s;
  cursor: pointer;
}

.hero-card-left {
  top: 30%;
  left: 4.5%;
  transform: rotate(-7deg);
}

.hero-card-right {
  top: 26%;
  right: 4.5%;
  transform: rotate(6deg);
}

.hero-card-left:hover {
  transform: rotate(-2deg) scale(1.08) translateY(-8px);
  z-index: 25;
}

.hero-card-right:hover {
  transform: rotate(2deg) scale(1.08) translateY(-8px);
  z-index: 25;
}

.hero-polaroid-inner {
  width: 175px;
  background: #FFFFFF;
  padding: 10px 10px 16px;
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(60, 36, 22, 0.14), 0 2px 8px rgba(184, 134, 11, 0.12);
  border: 1px solid rgba(184, 134, 11, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-polaroid-inner img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-polaroid-caption {
  font-family: var(--font-cursive);
  font-size: 1.15rem;
  color: #4A3324;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.1;
}

.hero-polaroid-tape {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 18px;
  background: rgba(230, 215, 195, 0.85);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-left: 2px dashed rgba(184, 134, 11, 0.35);
  border-right: 2px dashed rgba(184, 134, 11, 0.35);
}

@media (max-width: 1100px) {
  .hero-floating-card {
    display: none;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 26px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.95);
  border: 1.5px solid var(--color-gold-border);
  color: var(--color-bronze);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 20px rgba(60, 36, 22, 0.06);
  font-weight: 600;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  display: inline-block;
  box-shadow: 0 0 10px rgba(184, 134, 11, 0.6);
}

.hero-title {
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--color-text-dark);
}

.hero-title .cursive-lead {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  display: block;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #8E5D1D 0%, #C89938 50%, #764A12 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.2));
}

.hero-main-title {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-dark);
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero-description {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  color: #4A3528;
  max-width: 680px;
  margin: 0 auto 38px;
  font-weight: 400;
  line-height: 1.8;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary Luxury Button */
.btn-luxury-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #C5A880 0%, #B8860B 50%, #8C6239 100%);
  color: #FFF;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-luxury-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.btn-luxury-primary:hover::before {
  left: 100%;
}

.btn-luxury-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(184, 134, 11, 0.4);
}

.btn-luxury-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: #FFF;
  border: 1.5px solid var(--color-gold-border);
  color: var(--color-bronze);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(60, 36, 22, 0.05);
  transition: var(--transition-normal);
  font-weight: 600;
}

.btn-luxury-secondary:hover {
  background: var(--color-bg-primary);
  border-color: var(--color-gold);
  color: var(--color-text-dark);
  transform: translateY(-3px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-bronze);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}

.scroll-mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid var(--color-bronze);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse-icon::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Founders Section (Editorial Polaroid Spread)
   -------------------------------------------------------------------------- */
.founders-section {
  background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-primary) 50%, var(--color-bg-base) 100%);
  position: relative;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.founders-content .founders-title {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  margin-bottom: 24px;
}

.founders-lead {
  font-size: 1.35rem;
  color: var(--color-bronze);
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.founders-body {
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.stats-bar {
  display: flex;
  gap: 36px;
  border-top: 1.5px solid var(--color-gold-border);
  padding-top: 28px;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  font-weight: 600;
}

/* Polaroid Cards Spread */
.polaroids-wrapper {
  position: relative;
  height: 520px;
}

.polaroid-card {
  position: absolute;
  width: 310px;
  background: #FFF;
  padding: 16px 16px 28px;
  border-radius: 4px;
  box-shadow: var(--shadow-polaroid);
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.polaroid-card.lakshay {
  top: 10px;
  left: 20px;
  transform: rotate(-5deg);
  z-index: 2;
}

.polaroid-card.tripti {
  bottom: 10px;
  right: 20px;
  transform: rotate(6deg);
  z-index: 3;
}

.polaroid-card:hover {
  transform: scale(1.06) rotate(0deg);
  z-index: 10;
  box-shadow: 0 25px 50px rgba(60, 36, 22, 0.25);
}

.washi-tape {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 100px;
  height: 26px;
  background: rgba(235, 215, 195, 0.85);
  backdrop-filter: blur(2px);
  border-left: 2px dashed rgba(168, 90, 58, 0.4);
  border-right: 2px dashed rgba(168, 90, 58, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 12;
}

.polaroid-img-wrapper {
  width: 100%;
  height: 310px;
  overflow: hidden;
  background: #EFE8DF;
  border-radius: 2px;
}

.polaroid-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-luxury);
}

.polaroid-card:hover .polaroid-img-wrapper img {
  transform: scale(1.08);
}

.polaroid-caption {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-align: center;
  color: var(--color-text-dark);
  margin-top: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.polaroid-role {
  font-family: var(--font-cursive);
  font-size: 1.4rem;
  color: var(--color-bronze);
  text-align: center;
  display: block;
}

/* --------------------------------------------------------------------------
   Core Services Interactive Royal Pavilion Showcase (Dual-Pane Experience)
   -------------------------------------------------------------------------- */
.services-section {
  background-color: var(--color-bg-base);
  position: relative;
  overflow: hidden;
}

.services-pavilion-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5vw;
  align-items: stretch;
  margin-top: 50px;
}

/* Left: 8 Interactive Chapter Matrix */
.services-nav-matrix {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-strip-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(212, 175, 55, 0.22);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 16px rgba(60, 36, 22, 0.04);
}

.service-strip-item .strip-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-strip-item .strip-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #C5A059;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.service-strip-item .strip-text-group {
  display: flex;
  flex-direction: column;
}

.service-strip-item .strip-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #936B2B;
  margin-bottom: 2px;
}

.service-strip-item .strip-title {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

.service-strip-item .strip-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  color: #C5A059;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.service-strip-item:hover {
  background: #FFF;
  border-color: #D4AF37;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(60, 36, 22, 0.09);
}

.service-strip-item:hover .strip-indicator {
  background: #D4AF37;
  color: #FFF;
  transform: rotate(-45deg);
}

.service-strip-item.active {
  background: linear-gradient(135deg, #FFFFFF 0%, #FBF7F0 100%);
  border-color: #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.22), 0 0 20px rgba(212, 175, 55, 0.15);
  transform: translateX(12px);
}

.service-strip-item.active .strip-num {
  color: #936B2B;
  transform: scale(1.15);
}

.service-strip-item.active .strip-title {
  color: #936B2B;
}

.service-strip-item.active .strip-indicator {
  background: #2D1A0E;
  color: #D4AF37;
  border-color: #D4AF37;
  transform: rotate(0deg);
}

/* Right: Live Curatorial Stage Pane (Dynamic Deep Dive) */
.services-stage-card {
  position: sticky;
  top: 100px;
  background: radial-gradient(circle at 80% 20%, #FFFFFF 0%, #FAF6EE 60%, #F5ECDD 100%);
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: 28px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 24px 60px rgba(60, 36, 22, 0.12), 0 0 40px rgba(212, 175, 55, 0.18);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.stage-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.stage-pillar-badge {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #936B2B;
}

.stage-gold-crest {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-content-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.stage-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.4vw, 2.3rem);
  font-weight: 600;
  color: #2D1A0E;
  line-height: 1.25;
  margin-bottom: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.stage-narrative {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  line-height: 1.75;
  color: #634C3A;
  margin-bottom: 28px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.stage-deliverables-box {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 30px;
}

.deliverables-title {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #936B2B;
  margin-bottom: 12px;
}

.deliverables-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2D1A0E;
  line-height: 1.45;
}

.deliv-sparkle {
  color: #D4AF37;
  font-size: 0.9rem;
  line-height: 1;
}

.stage-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
}

.stage-guarantee-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8C6D52;
}

.stage-guarantee-tag svg {
  color: #D4AF37;
}

.stage-ambient-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1024px) {
  .services-pavilion-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-stage-card {
    position: static;
    min-height: auto;
    padding: 32px 24px;
  }
}

/* --------------------------------------------------------------------------
   What Makes Us Stand Out (Royal Bento Excellence Matrix)
   -------------------------------------------------------------------------- */
.standout-section {
  background: radial-gradient(circle at 50% 10%, #FFFFFF 0%, #FAF6EE 60%, #F5ECDD 100%);
  position: relative;
  overflow: hidden;
}

/* The Royal Contrast Bar */
.standout-contrast-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 24px 36px;
  margin: 40px auto 48px auto;
  max-width: 1100px;
  box-shadow: 0 12px 35px rgba(60, 36, 22, 0.06);
  backdrop-filter: blur(16px);
}

.contrast-col {
  flex: 1;
}

.contrast-col p {
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

.contrast-old {
  color: #8A7263;
  padding-right: 20px;
}

.contrast-old .contrast-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #9C7E68;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contrast-divider {
  padding: 0 24px;
}

.contrast-crest {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #D4AF37;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.contrast-narrators {
  color: #2D1A0E;
  padding-left: 20px;
}

.contrast-narrators .contrast-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #936B2B;
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* The Bento Excellence Matrix */
.standout-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  border-radius: 22px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(60, 36, 22, 0.05);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 18px 45px rgba(212, 175, 55, 0.18), 0 0 25px rgba(212, 175, 55, 0.1);
}

.bento-feature {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 248, 241, 0.95) 100%);
  border: 2px solid rgba(212, 175, 55, 0.45);
}

.bento-badge-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bento-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #936B2B;
}

.bento-icon-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #936B2B;
  transition: all 0.3s ease;
}

.bento-card:hover .bento-icon-ring {
  background: #D4AF37;
  color: #FFF;
  transform: rotate(12deg) scale(1.08);
}

.bento-title {
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 600;
  color: #2D1A0E;
  line-height: 1.3;
  margin-bottom: 12px;
}

.bento-feature .bento-title {
  font-size: 1.68rem;
}

.bento-desc {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  line-height: 1.65;
  color: #634C3A;
  margin-bottom: 22px;
  flex: 1;
}

.bento-tags-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.bento-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(248, 244, 238, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #4A3324;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .standout-bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-feature {
    grid-column: span 1;
  }
  .standout-contrast-bar {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }
  .contrast-old {
    padding-right: 0;
  }
  .contrast-narrators {
    padding-left: 0;
  }
}

/* --------------------------------------------------------------------------
   How We Operate (Royal Theatrical Blueprint Studio)
   -------------------------------------------------------------------------- */
.operate-section {
  background: radial-gradient(circle at 50% 20%, #FAF6EE 0%, #F5ECDD 100%);
  position: relative;
  overflow: hidden;
}

.operate-studio-container {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 3.5vw;
  align-items: stretch;
  margin-top: 45px;
}

/* Left: 5 Interactive Blueprint Matrix */
.operate-nav-matrix {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.operate-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 16px rgba(60, 36, 22, 0.04);
}

.operate-nav-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #C5A059;
  letter-spacing: 0.06em;
  min-width: 36px;
  transition: all 0.3s ease;
}

.operate-nav-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 16px;
}

.operate-nav-tag {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #936B2B;
  margin-bottom: 2px;
}

.operate-nav-title {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

.operate-nav-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  color: #C5A059;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.operate-nav-item:hover {
  background: #FFF;
  border-color: #D4AF37;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(60, 36, 22, 0.09);
}

.operate-nav-item:hover .operate-nav-arrow {
  background: #D4AF37;
  color: #FFF;
  transform: rotate(-45deg);
}

.operate-nav-item.active {
  background: linear-gradient(135deg, #FFFFFF 0%, #FBF7F0 100%);
  border-color: #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.22), 0 0 20px rgba(212, 175, 55, 0.15);
  transform: translateX(12px);
}

.operate-nav-item.active .operate-nav-num {
  color: #936B2B;
  transform: scale(1.15);
}

.operate-nav-item.active .operate-nav-title {
  color: #936B2B;
}

.operate-nav-item.active .operate-nav-arrow {
  background: #2D1A0E;
  color: #D4AF37;
  border-color: #D4AF37;
  transform: rotate(0deg);
}

/* Right: Dynamic Theatrical Blueprint Terminal Cards */
.operate-display-card {
  background: radial-gradient(circle at 85% 15%, #FFFFFF 0%, #FAF6EE 65%, #F4EBDC 100%);
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: 28px;
  padding: 40px 42px;
  box-shadow: 0 24px 60px rgba(60, 36, 22, 0.12), 0 0 40px rgba(212, 175, 55, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.operate-dossier {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  animation: dossierFade 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.dossier-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 16px;
  margin-bottom: 22px;
}

.dossier-code {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #936B2B;
}

.dossier-status {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5C7A58;
}

.dossier-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  font-weight: 600;
  color: #2D1A0E;
  line-height: 1.25;
  margin-bottom: 14px;
}

.dossier-desc {
  font-family: var(--font-sans);
  font-size: 0.94rem;
  line-height: 1.7;
  color: #634C3A;
  margin-bottom: 24px;
}

/* Blueprint Cues Timeline Box */
.blueprint-cues-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 18px;
  padding: 20px 24px;
  margin-bottom: 26px;
}

.cue-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.25);
}

.cue-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cue-time {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #936B2B;
  background: rgba(212, 175, 55, 0.12);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  white-space: nowrap;
}

.cue-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cue-info strong {
  font-size: 0.95rem;
  color: #2D1A0E;
  font-family: var(--font-serif);
}

.cue-info span {
  font-size: 0.86rem;
  color: #6E533F;
  line-height: 1.45;
}

.highlight-cue {
  background: rgba(254, 250, 240, 0.9);
  border-radius: 10px;
  padding: 10px 12px;
  margin: 0 -12px;
}

/* Blueprint Roles Grid */
.blueprint-roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}

.role-tile {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 18px;
}

.role-tile .role-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}

.role-tile strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #2D1A0E;
  margin-bottom: 4px;
}

.role-tile p {
  font-size: 0.84rem;
  color: #6E533F;
  margin: 0;
  line-height: 1.45;
}

.dossier-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.dossier-metric {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #936B2B;
}

.dossier-seal {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8C6D52;
}

@media (max-width: 1024px) {
  .operate-studio-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blueprint-roles-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Venue Footprints (Royal Destination Odyssey Showcase)
   -------------------------------------------------------------------------- */
.venues-section {
  background: radial-gradient(circle at top center, #FAF6EE 0%, var(--color-bg-base) 100%);
  position: relative;
  overflow: hidden;
}

.venues-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.venue-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 14px rgba(60, 36, 22, 0.05);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-weight: 600;
  cursor: pointer;
}

.venue-tab-btn .tab-count {
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.15);
  color: #936B2B;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: var(--transition-fast);
}

.venue-tab-btn.active, .venue-tab-btn:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #A07422 100%);
  color: #FFFFFF;
  border-color: #D4AF37;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.venue-tab-btn.active .tab-count, .venue-tab-btn:hover .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Destination Pavilions Grid */
.destination-pavilions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dest-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(60, 36, 22, 0.08);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.dest-card:hover {
  transform: translateY(-10px);
  border-color: #D4AF37;
  box-shadow: 0 24px 55px rgba(212, 175, 55, 0.22), 0 0 25px rgba(212, 175, 55, 0.12);
}

.dest-photo-frame {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #1C110C;
}

.dest-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dest-card:hover .dest-photo {
  transform: scale(1.08);
}

.dest-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 17, 12, 0.8) 0%, rgba(28, 17, 12, 0.2) 60%, transparent 100%);
  pointer-events: none;
}

.dest-category-badge {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(28, 17, 12, 0.85);
  color: #F5E6BE;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.dest-hub-status {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #936B2B;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  z-index: 2;
}

.dest-body {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.dest-location-tag {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #936B2B;
  margin-bottom: 6px;
}

.dest-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: #2D1A0E;
  line-height: 1.3;
  margin-bottom: 10px;
}

.dest-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #6E533F;
  margin-bottom: 20px;
}

.dest-venues-block {
  background: #FAF6F0;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 22px;
}

.dest-venues-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #936B2B;
  margin-bottom: 8px;
}

.dest-venues-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dest-venues-chips .property-pill {
  background: #FFFFFF;
  color: #3C2416;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(60, 36, 22, 0.03);
  transition: all 0.2s ease;
}

.dest-venues-chips .property-pill:hover {
  background: #D4AF37;
  color: #FFFFFF;
  border-color: #D4AF37;
}

.dest-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 16px;
}

.dest-metric {
  display: flex;
  flex-direction: column;
}

.dest-metric strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #936B2B;
}

.dest-metric span {
  font-size: 0.7rem;
  color: #8C6D52;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dest-inquire-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D1A0E;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
}

.dest-inquire-link .dest-arrow {
  color: #D4AF37;
  transition: transform 0.3s ease;
}

.dest-inquire-link:hover {
  background: #2D1A0E;
  color: #F5E6BE;
  border-color: #D4AF37;
}

.dest-inquire-link:hover .dest-arrow {
  transform: translateX(4px);
  color: #F5E6BE;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .destination-pavilions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .destination-pavilions-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Core Team Members (Royal Editorial Portraits Gallery)
   -------------------------------------------------------------------------- */
.team-section {
  background: radial-gradient(circle at 50% 15%, #FAF6EE 0%, #F5ECDD 100%);
  position: relative;
  overflow: hidden;
}

.editorial-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.portrait-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  padding: 16px 16px 24px;
  box-shadow: 0 10px 30px rgba(60, 36, 22, 0.06);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.portrait-card:hover {
  transform: translateY(-10px);
  border-color: #D4AF37;
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.22), 0 0 25px rgba(212, 175, 55, 0.12);
}

.portrait-photo-arch {
  position: relative;
  width: 100%;
  height: 290px;
  border-radius: 18px 18px 14px 14px;
  overflow: hidden;
  background: #2D1A0E;
  margin-bottom: 18px;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portrait-card:hover .portrait-img {
  transform: scale(1.08);
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 17, 12, 0.75) 0%, rgba(28, 17, 12, 0.1) 60%, transparent 100%);
  pointer-events: none;
}

.portrait-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(28, 17, 12, 0.85);
  color: #F5E6BE;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.portrait-exp {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: #936B2B;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  z-index: 2;
}

.portrait-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
}

.portrait-name {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: #2D1A0E;
  margin-bottom: 4px;
  line-height: 1.2;
}

.portrait-role {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #936B2B;
  margin-bottom: 8px;
}

.portrait-desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  line-height: 1.5;
  color: #6E533F;
  margin: 0;
}

/* Team Trust & Strength Bar */
.team-trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 24px 32px;
  margin-top: 48px;
  box-shadow: 0 10px 30px rgba(60, 36, 22, 0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #2D1A0E;
  margin-bottom: 2px;
}

.trust-item span {
  font-size: 0.82rem;
  color: #6E533F;
  line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .editorial-team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .editorial-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-trust-bar {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 540px) {
  .editorial-team-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   "How We Show Up" Royal Couture Lookbook Studio
   -------------------------------------------------------------------------- */
.lookbook-section {
  background: radial-gradient(circle at 50% 20%, #FAF6EE 0%, #F5ECDD 100%);
  position: relative;
  overflow: hidden;
}

.lookbook-studio-layout {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr;
  gap: 3.5vw;
  align-items: stretch;
  margin-top: 45px;
}

/* Left: 4 Couture Selectors Matrix */
.lookbook-nav-matrix {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lookbook-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1.5px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  cursor: pointer;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 16px rgba(60, 36, 22, 0.04);
}

.lookbook-nav-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #C5A059;
  letter-spacing: 0.06em;
  min-width: 36px;
  transition: all 0.3s ease;
}

.lookbook-tab-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 16px;
}

.lookbook-mood-tag {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #936B2B;
  margin-bottom: 3px;
}

.lookbook-tab-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0 0 4px 0;
  transition: color 0.3s ease;
}

.lookbook-tab-desc {
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: #6E533F;
  line-height: 1.5;
  margin: 0;
}

.lookbook-nav-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF;
  color: #C5A059;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lookbook-tab-btn:hover {
  background: #FFF;
  border-color: #D4AF37;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(60, 36, 22, 0.09);
}

.lookbook-tab-btn:hover .lookbook-nav-arrow {
  background: #D4AF37;
  color: #FFF;
  transform: rotate(-45deg);
}

.lookbook-tab-btn.active {
  background: linear-gradient(135deg, #FFFFFF 0%, #FBF7F0 100%);
  border-color: #D4AF37;
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.22), 0 0 20px rgba(212, 175, 55, 0.15);
  transform: translateX(12px);
}

.lookbook-tab-btn.active .lookbook-nav-num {
  color: #936B2B;
  transform: scale(1.15);
}

.lookbook-tab-btn.active .lookbook-tab-title {
  color: #936B2B;
}

.lookbook-tab-btn.active .lookbook-nav-arrow {
  background: #2D1A0E;
  color: #D4AF37;
  border-color: #D4AF37;
  transform: rotate(0deg);
}

/* Right: Royal Runway Editorial Stage Card */
.lookbook-runway-card {
  background: radial-gradient(circle at 85% 15%, #FFFFFF 0%, #FAF6EE 65%, #F4EBDC 100%);
  border: 2px solid rgba(212, 175, 55, 0.45);
  border-radius: 28px;
  padding: 34px 36px;
  box-shadow: 0 24px 60px rgba(60, 36, 22, 0.12), 0 0 40px rgba(212, 175, 55, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.lookbook-runway-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.runway-code {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #936B2B;
}

.runway-status {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #5C7A58;
}

.lookbook-img-frame {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  background: #1C110C;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 30px rgba(60, 36, 22, 0.12);
}

.lookbook-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.4s var(--ease-luxury), transform 0.6s var(--ease-luxury);
}

.lookbook-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 17, 12, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.lookbook-stage-badge {
  position: absolute;
  bottom: 16px;
  left: 18px;
  background: rgba(28, 17, 12, 0.85);
  color: #F5E6BE;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.lookbook-footer-dossier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.lookbook-dossier-left {
  flex: 1;
  min-width: 250px;
}

.lookbook-caption-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  color: #2D1A0E;
  margin-bottom: 4px;
}

.lookbook-caption-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #6E533F;
  line-height: 1.5;
  margin: 0;
}

.lookbook-dossier-badge {
  display: flex;
  align-items: center;
}

.couture-seal {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #936B2B;
  background: rgba(212, 175, 55, 0.12);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .lookbook-studio-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* --------------------------------------------------------------------------
   SECTION 9: Bespoke Gifting & Styling Atelier
   -------------------------------------------------------------------------- */
.gifting-section {
  background: radial-gradient(circle at 50% 15%, #FAF6EE 0%, var(--color-bg-base) 100%);
  position: relative;
  overflow: hidden;
}

.gifting-atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.gifting-craft-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(60, 36, 22, 0.07);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.gifting-craft-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 22px 50px rgba(212, 175, 55, 0.2), 0 0 25px rgba(212, 175, 55, 0.1);
}

.craft-photo-frame {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #2D1A0E;
}

.craft-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gifting-craft-card:hover .craft-photo {
  transform: scale(1.08);
}

.craft-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 17, 12, 0.75) 0%, rgba(28, 17, 12, 0.1) 60%, transparent 100%);
  pointer-events: none;
}

.craft-tag {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(28, 17, 12, 0.85);
  color: #F5E6BE;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(6px);
  z-index: 2;
}

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

.craft-meta {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #936B2B;
  margin-bottom: 4px;
}

.craft-title {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
  color: #2D1A0E;
  margin-bottom: 8px;
  line-height: 1.3;
}

.craft-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #6E533F;
  margin-bottom: 20px;
}

.craft-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding-top: 14px;
}

.craft-spec {
  font-size: 0.74rem;
  color: #8C6D52;
  font-weight: 500;
}

.craft-link {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #936B2B;
  transition: all 0.3s ease;
}

.craft-link:hover {
  color: #2D1A0E;
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   SECTION 10: The Narrators Wall (Master Celebration Tapestry & Moments)
   -------------------------------------------------------------------------- */
.wall-section {
  background: radial-gradient(circle at 50% 20%, #FAF6EE 0%, #F5ECDD 100%);
  position: relative;
  overflow: hidden;
}

/* 1. Master Wall Showcase Frame */
.master-wall-container {
  margin-bottom: 48px;
}

.master-wall-frame {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 20px 60px rgba(60, 36, 22, 0.14), 0 0 35px rgba(212, 175, 55, 0.15);
  background: #1C110C;
}

.master-wall-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.master-wall-frame:hover .master-wall-img {
  transform: scale(1.03);
}

.master-wall-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 17, 12, 0.65) 0%, transparent 40%);
  pointer-events: none;
}

.master-wall-floating-pill {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 17, 12, 0.88);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  padding: 10px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  z-index: 2;
  white-space: nowrap;
}

.master-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 10px #4ADE80;
}

.master-wall-tag {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #F5E6BE;
}

/* 2. Curated Authentic Moments Grid */
.curated-moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.moment-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(60, 36, 22, 0.06);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.moment-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.12);
}

.moment-img-wrap {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #1C110C;
}

.moment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.moment-card:hover .moment-img-wrap img {
  transform: scale(1.08);
}

.moment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 17, 12, 0.7) 0%, transparent 60%);
  pointer-events: none;
}

.moment-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(28, 17, 12, 0.85);
  color: #F5E6BE;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.moment-zoom-icon {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 2;
}

.moment-card:hover .moment-zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.moment-caption {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}

.moment-caption strong {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #2D1A0E;
  margin-bottom: 2px;
}

.moment-caption span {
  font-size: 0.82rem;
  color: #6E533F;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .gifting-atelier-grid,
  .curated-moments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .master-wall-floating-pill {
    width: 90%;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .gifting-atelier-grid,
  .curated-moments-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Testimonials & Client Gestures Section
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--color-bg-primary);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.chat-bubble-card {
  background: #FFF;
  border: 1.5px solid var(--color-gold-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  box-shadow: var(--shadow-card);
}

.chat-sender {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.sender-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-gold);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.sender-info h5 {
  font-size: 1.15rem;
  color: var(--color-text-dark);
  font-weight: 600;
}

.sender-info span {
  font-size: 0.8rem;
  color: var(--color-bronze);
}

.chat-quote {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Interactive Quote & Booking Calculator Form
   -------------------------------------------------------------------------- */
.booking-section {
  background: radial-gradient(circle at center, #FDFBF8 0%, var(--color-bg-secondary) 100%);
  position: relative;
}

.booking-form-wrapper {
  background: #FFF;
  border: 1.5px solid var(--color-gold-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(60, 36, 22, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-bronze);
  font-weight: 600;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-bg-primary);
  border: 1.5px solid rgba(184, 134, 11, 0.25);
  border-radius: var(--radius-sm);
  color: var(--color-text-dark);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-gold);
  background: #FFF;
  box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

/* Counter widget for Guests / Rooms */
.counter-widget {
  display: flex;
  align-items: center;
  background: var(--color-bg-primary);
  border: 1.5px solid rgba(184, 134, 11, 0.25);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.counter-btn {
  width: 44px;
  height: 48px;
  background: #FFF;
  color: var(--color-bronze);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition-fast);
}

.counter-btn:hover {
  background: var(--color-gold);
  color: #FFF;
}

.counter-value {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-text-dark);
  font-weight: 600;
}

.booking-submit-btn {
  width: 100%;
  padding: 18px;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Luxury Footer (Rich Warm Mocha Finish)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #241610;
  color: #FAF6F0;
  border-top: 1px solid rgba(184, 134, 11, 0.3);
  padding: 100px 0 40px;
  position: relative;
}

.site-footer h2, .site-footer h5 {
  color: #FAF6F0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-brand h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.footer-brand p {
  color: #D6C8BB;
  font-size: 1.05rem;
  max-width: 340px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #D6C8BB;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #FFF;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 32px;
  color: #A89585;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   Lightbox Modal
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 14, 8, 0.92);
  backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-luxury);
  padding: 40px;
}

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

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-gold-border);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #FFF;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 10px;
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .venues-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .founders-grid, .operate-pinned-container, .lookbook-layout, .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav-overlay-body {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .masonry-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gifting-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .standout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 20px;
  }
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .brand-title {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
  }
  .brand-sub {
    font-size: 0.95rem;
  }
  .header-pill-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
  .services-grid, .gifting-grid, .venues-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .polaroids-wrapper {
    height: 480px;
  }
  .polaroid-card {
    width: 260px;
  }
}
