/* ============================================
   LANNA BELFORD — PREMIUM DESIGN SYSTEM
   Mobile-first • Tokens • a11y • No dead code
   ============================================ */

/* === DESIGN TOKENS === */
:root {
  /* Brand colors (RGB channels for rgba() use) */
  --gold-rgb: 212 175 55;
  --gold-light-rgb: 240 214 138;
  --gold-dark-rgb: 184 150 46;
  --black-rgb: 10 10 10;
  --white-rgb: 245 240 235;
  --danger-rgb: 255 45 85;
  --success-rgb: 34 197 94;

  /* Brand colors (hex) */
  --gold: rgb(var(--gold-rgb));
  --gold-light: rgb(var(--gold-light-rgb));
  --gold-dark: rgb(var(--gold-dark-rgb));
  --black: rgb(var(--black-rgb));
  --white: rgb(var(--white-rgb));
  --white-pure: #fff;

  /* Semantic colors */
  --color-danger: rgb(var(--danger-rgb));
  --color-success: rgb(var(--success-rgb));
  --color-text-muted: #a8a8a8;
  --color-surface: #111;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.15);

  /* Spacing scale (mobile-first base) */
  --space-1: 0.25rem;  /* 4px */
  --space-2: 0.5rem;   /* 8px */
  --space-3: 0.75rem;  /* 12px */
  --space-4: 1rem;     /* 16px */
  --space-5: 1.5rem;   /* 24px */
  --space-6: 2rem;     /* 32px */
  --space-7: 3rem;     /* 48px */
  --space-8: 4rem;     /* 64px */

  /* Radius scale */
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Z-index scale */
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 500;
  --z-loading: 1000;
  --z-cursor: 9999;

  /* Typography scale (fluid, mobile-first) */
  --text-xs: clamp(0.7rem, 2vw, 0.8rem);
  --text-sm: clamp(0.8rem, 2vw, 0.95rem);
  --text-base: clamp(0.95rem, 2.5vw, 1.05rem);
  --text-lg: clamp(1.2rem, 4vw, 1.7rem);
  --text-xl: clamp(1.6rem, 5vw, 3rem);
  --text-2xl: clamp(2.2rem, 9vw, 5rem);

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --header-h: 60px;
  --content-max: 1200px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.6;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }
img { max-width: 100%; display: block; }

/* === FOCUS VISIBLE (a11y) === */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

button:focus-visible,
a:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.5);
  outline: none;
}

/* === SKIP LINK (a11y) === */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: var(--z-cursor);
  background: var(--gold);
  color: var(--black);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: var(--space-4);
}

/* === EMOJI SVGs === */
.emoji {
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  display: inline-block;
}
.emoji-sm { width: 0.9em; height: 0.9em; }
.emoji-lg { width: 1.5em; height: 1.5em; }
.emoji-xxl { width: 3.5em; height: 3.5em; }

/* ============================================
   LOADING SCREEN
   ============================================ */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: var(--z-loading);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

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

.loading-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(var(--gold-rgb), 0.12) 0%, rgba(var(--gold-rgb), 0.04) 40%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.loading-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.loading-sparkle {
  position: absolute;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0;
  animation: sparkleFloat 6s ease-in-out infinite;
}

@keyframes sparkleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0.5); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.loading-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--space-4);
}

.loading-icon {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%) scale(0) rotate(-180deg);
  opacity: 0;
}

.loading-icon.show { animation: iconPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.loading-icon.hide { animation: iconFade 0.4s ease forwards; }

.loading-emoji {
  width: 4rem;
  height: 4rem;
  filter: drop-shadow(0 0 25px rgba(var(--gold-rgb), 0.6));
}

@keyframes iconPop {
  0% { transform: translateX(-50%) scale(0) rotate(-180deg); opacity: 0; }
  60% { transform: translateX(-50%) scale(1.4) rotate(10deg); opacity: 1; }
  100% { transform: translateX(-50%) scale(1) rotate(0); opacity: 1; }
}

@keyframes iconFade {
  0% { transform: translateX(-50%) scale(1) rotate(0); opacity: 1; }
  100% { transform: translateX(-50%) scale(0.3) rotate(180deg); opacity: 0; }
}

.loading-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: relative;
}

.loading-name.show {
  opacity: 1;
  transform: translateY(0);
}

.loading-name::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: nameShimmer 2.5s ease-in-out;
}

@keyframes nameShimmer {
  to { left: 100%; }
}

.loading-name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.loading-name.show span { animation: letterReveal 0.4s ease forwards; }
.loading-name.show span:nth-child(1) { animation-delay: 0.00s; }
.loading-name.show span:nth-child(2) { animation-delay: 0.05s; }
.loading-name.show span:nth-child(3) { animation-delay: 0.10s; }
.loading-name.show span:nth-child(4) { animation-delay: 0.15s; }
.loading-name.show span:nth-child(5) { animation-delay: 0.20s; }
.loading-name.show span:nth-child(6) { animation-delay: 0.25s; }
.loading-name.show span:nth-child(7) { animation-delay: 0.30s; }
.loading-name.show span:nth-child(8) { animation-delay: 0.35s; }
.loading-name.show span:nth-child(9) { animation-delay: 0.40s; }
.loading-name.show span:nth-child(10) { animation-delay: 0.45s; }
.loading-name.show span:nth-child(11) { animation-delay: 0.50s; }
.loading-name.show span:nth-child(12) { animation-delay: 0.55s; }

.load-space {
  width: 0.3em;
  display: inline-block !important;
}

@keyframes letterReveal {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.loading-phrases {
  min-height: 2em;
  margin-bottom: var(--space-6);
}

.load-phrase {
  font-size: var(--text-sm);
  color: var(--gold-light);
  font-style: italic;
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.5s ease;
}

.load-phrase.show {
  opacity: 1;
  position: relative;
  left: auto;
  transform: none;
}

.loading-bar-container {
  width: 240px;
  max-width: 80vw;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-pill);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.loading-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  border-radius: var(--radius-pill);
  transition: width 0.3s ease;
  animation: goldShimmer 2s linear infinite;
  box-shadow: 0 0 12px rgba(var(--gold-rgb), 0.6);
}

@keyframes goldShimmer {
  to { background-position: 200% 0; }
}

/* ============================================
   AGE GATE
   ============================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-loading) - 1);
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  animation: fadeIn 0.5s ease;
}

.age-gate.hidden { display: none; }

.age-gate-content {
  text-align: center;
  max-width: 400px;
}

.age-gate-logo {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-2);
}

.age-gate-subtitle {
  font-size: var(--text-sm);
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--space-7);
}

.age-gate-text {
  font-size: var(--text-base);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: var(--space-2);
}

.age-gate-text-small {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.age-gate-btn {
  padding: var(--space-4) var(--space-7);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
}

.age-gate-btn-yes {
  background: var(--gold);
  color: var(--black);
}

.age-gate-btn-yes:hover {
  background: var(--gold-light);
  transform: scale(1.02);
}

.age-gate-btn-no {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-text-muted);
}

.age-gate-btn-no:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ============================================
   HEADER (mobile-first)
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: var(--z-header);
  background: linear-gradient(to bottom, rgba(var(--black-rgb), 0.92) 0%, rgba(var(--black-rgb), 0.75) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.08);
  transition: transform 0.3s ease, background 0.4s ease, border-color 0.4s ease;
}

.header.scrolled {
  background: linear-gradient(to bottom, rgba(var(--black-rgb), 0.97) 0%, rgba(var(--black-rgb), 0.90) 100%);
  border-bottom-color: rgba(var(--gold-rgb), 0.25);
}

.header.hide {
  transform: translateY(-100%);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.1s linear;
  z-index: 2;
  box-shadow: 0 0 8px rgba(var(--gold-rgb), 0.5);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-4);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-shadow: 0 0 20px rgba(var(--gold-rgb), 0.3);
  transition: text-shadow 0.3s ease;
}

.header-logo:hover {
  text-shadow: 0 0 30px rgba(var(--gold-rgb), 0.6);
}

/* === HAMBURGER (premium) === */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: calc(var(--z-header) + 1);
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}

.hamburger:hover {
  background: rgba(var(--gold-rgb), 0.08);
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.2s ease, width 0.3s ease;
  transform-origin: center;
  box-shadow: 0 0 6px rgba(var(--gold-rgb), 0.4);
}

.hamburger:hover span {
  width: 28px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
  background: var(--gold-light);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  background: var(--gold-light);
}

/* === MOBILE NAV (premium overlay) === */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(160deg, rgba(var(--black-rgb), 0.99) 0%, rgba(15, 12, 5, 0.99) 100%);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(var(--gold-rgb), 0.2);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  z-index: var(--z-header);
  padding: var(--space-7) var(--space-6);
}

.nav.open {
  right: 0;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white);
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  display: block;
  padding: var(--space-3) 0;
  opacity: 0;
  transform: translateX(30px);
}

.nav.open .nav-link {
  animation: navLinkSlide 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav.open .nav-link:nth-child(1) { animation-delay: 0.15s; }
.nav.open .nav-link:nth-child(2) { animation-delay: 0.22s; }
.nav.open .nav-link:nth-child(3) { animation-delay: 0.29s; }
.nav.open .nav-link:nth-child(4) { animation-delay: 0.36s; }
.nav.open .nav-link:nth-child(5) { animation-delay: 0.43s; }

@keyframes navLinkSlide {
  to { opacity: 1; transform: translateX(0); }
}

.nav-link::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
  transform: translateX(8px);
}

.nav-link:hover::before {
  width: 14px;
}

.nav-link.active {
  color: var(--gold);
}

.nav-link.active::before {
  width: 14px;
}

/* Nav footer (social icons in mobile menu) */
.nav-footer {
  margin-top: auto;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(var(--gold-rgb), 0.15);
  display: flex;
  gap: var(--space-4);
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav.open .nav-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.nav-footer a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nav-footer a:hover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
}

.nav-footer .icon-svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

/* ============================================
   FIXED BACKGROUND (parallax)
   ============================================ */
.fixed-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  will-change: opacity;
}

.bg-layer.active { opacity: 1; }

.bg-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--black-rgb), 0.6) 0%,
    rgba(var(--black-rgb), 0.2) 25%,
    rgba(var(--black-rgb), 0.2) 75%,
    rgba(var(--black-rgb), 0.6) 100%
  );
  z-index: 1;
}

.bg-noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* ============================================
   SECTIONS BASE
   ============================================ */
.section {
  position: relative;
  z-index: var(--z-base);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.section-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  padding: var(--space-7) var(--space-4);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-5);
  position: relative;
  display: inline-block;
  padding-top: var(--space-5);
}

.section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
  animation: titleShimmer 3s ease infinite;
}

@keyframes titleShimmer {
  0%, 100% { width: 60px; opacity: 1; }
  50% { width: 90px; opacity: 0.7; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100dvh;
  padding-top: var(--header-h);
}

.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-sparkle {
  position: absolute;
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0;
  text-shadow: 0 0 12px rgba(var(--gold-rgb), 0.8);
  animation: heroSparkle 4s ease-in-out infinite;
}

.hero-sparkle.s1 { top: 20%; left: 15%; animation-delay: 0s; font-size: 1.5rem; }
.hero-sparkle.s2 { top: 30%; right: 20%; animation-delay: 0.8s; font-size: 1rem; }
.hero-sparkle.s3 { top: 60%; left: 10%; animation-delay: 1.6s; font-size: 1.3rem; }
.hero-sparkle.s4 { top: 75%; right: 12%; animation-delay: 2.4s; font-size: 0.9rem; }
.hero-sparkle.s5 { top: 45%; left: 50%; animation-delay: 3.2s; font-size: 1.1rem; }

@keyframes heroSparkle {
  0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

.hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-text {
  animation: fadeUp 1s ease 0.3s both;
  max-width: 600px;
}

.hero-label {
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white-pure);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}

.hero-subtitle {
  font-size: var(--text-sm);
  color: var(--white);
  opacity: 0.8;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}

.hero-social {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-social a:hover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
  transform: translateY(-3px);
}

.hero-social .icon-svg {
  width: 18px;
  height: 18px;
  color: var(--white);
}

.hero-social a:hover .icon-svg {
  color: var(--gold);
}

.hero-stats {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  color: var(--gold-light);
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.hero-stats strong {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  padding: var(--space-4) var(--space-7);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--gold-rgb), 0.3);
}

.btn-sm {
  padding: var(--space-3) var(--space-5);
  font-size: 0.7rem;
}

/* Shimmer on VIP button */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 3s infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* Ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.btn-ripple::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

.btn-ripple:active::after {
  width: 300px;
  height: 300px;
  opacity: 1;
  transition: 0s;
}

/* ============================================
   ABOUT (mobile-first, no old .about-text-box)
   ============================================ */
.about-content { display: block; }

.about-header {
  text-align: center;
  margin-bottom: var(--space-7);
}

.about-intro {
  font-size: var(--text-base);
  color: var(--gold-light);
  font-style: italic;
  margin-top: var(--space-4);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-7);
}

.about-card {
  position: relative;
  background: rgba(var(--black-rgb), 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: var(--transition);
}

.about-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.15), transparent, rgba(var(--gold-rgb), 0.1));
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.about-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(var(--gold-rgb), 0.15);
}

.about-card:hover::before { opacity: 1; }

.about-card-icon { margin-bottom: var(--space-3); }

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: var(--space-3);
  letter-spacing: 0.05em;
}

.about-card p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: var(--space-2);
  font-weight: 300;
}

.about-card p strong {
  color: var(--gold-light);
  font-weight: 600;
}

.about-card-cta {
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.02));
  border-color: rgba(var(--gold-rgb), 0.3);
}

.about-stats {
  display: flex;
  gap: var(--space-5);
  margin: var(--space-7) 0;
  flex-wrap: wrap;
  justify-content: center;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-footer-quote {
  text-align: center;
  font-size: var(--text-base);
  color: var(--white);
  opacity: 0.9;
  padding: var(--space-5);
  border-top: 1px solid rgba(var(--gold-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.15);
  font-family: var(--font-display);
  font-style: italic;
}

/* Drop cap */
.drop-cap { position: relative; }

.drop-cap-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.85;
  color: var(--gold);
  margin: 6px var(--space-3) 0 0;
  text-shadow: 0 2px 15px rgba(var(--gold-rgb), 0.5);
  font-weight: 700;
}

/* ============================================
   SECTION WAVE
   ============================================ */
.section-wave {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  height: 80px;
  overflow: hidden;
}

.section-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  padding: var(--space-7) 0;
  min-height: 100dvh;
}

.gallery-content { display: block; }

.gallery-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.gallery-subtitle {
  font-size: var(--text-base);
  color: var(--gold-light);
  font-style: italic;
  margin-top: var(--space-4);
}

.gallery-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 500px;
  margin: 0 auto;
}

.gallery-thumbs {
  display: flex;
  flex-direction: row;
  order: 2;
  overflow-x: auto;
  padding-bottom: var(--space-2);
  -webkit-overflow-scrolling: touch;
  gap: var(--space-2);
  scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar { display: none; }

.gallery-thumb {
  position: relative;
  flex-shrink: 0;
  width: 70px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  background: rgba(255,255,255,0.05);
  padding: 0;
  transition: var(--transition);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: var(--transition);
}

.gallery-thumb:hover {
  transform: scale(1.05);
}

.gallery-thumb:hover img { filter: brightness(0.85); }

.gallery-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(var(--gold-rgb), 0.4);
}

.gallery-thumb.active img { filter: brightness(1); }

.gallery-thumb.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 12px;
  border: 2px solid var(--gold);
  animation: thumbPulse 2s ease infinite;
  pointer-events: none;
}

@keyframes thumbPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.gallery-thumb-num {
  position: absolute;
  top: 6px;
  left: 6px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--gold);
  background: rgba(0,0,0,0.7);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.gallery-main {
  position: relative;
  order: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  min-height: 450px;
}

.gallery-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-slide.active {
  opacity: 1;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(20px, 4vw, 30px);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: var(--white-pure);
}

.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  margin-bottom: var(--space-3);
}

.gallery-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--white-pure);
  margin-bottom: var(--space-2);
  letter-spacing: 0.05em;
}

.gallery-caption p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(var(--black-rgb), 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  color: var(--gold);
  font-size: 1.4rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: var(--transition);
}

.gallery-nav:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-counter {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: rgba(var(--black-rgb), 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  z-index: 10;
}

/* ============================================
   STORIES
   ============================================ */
.stories {
  flex-direction: column;
  padding: var(--space-7) var(--space-4);
  min-height: 50vh;
}

.stories-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.stories-title { display: block; margin: 0 auto var(--space-2); }

.stories-title::after { left: 50%; transform: translateX(-50%); }

.stories-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  margin-top: var(--space-4);
}

.stories-count {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--space-3);
}

.stories-grid {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.story-thumb {
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  padding: 0;
}

.story-thumb:hover { transform: translateY(-5px); }

.thumb-ring {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(var(--gold), var(--gold-dark), var(--gold-light), var(--gold));
  margin-bottom: var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-ring::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--gold), var(--gold-dark), var(--gold-light), var(--gold));
  opacity: 0.6;
  z-index: -1;
  animation: ringRotate 4s linear infinite;
}

@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.thumb-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--black);
}

.thumb-play {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--black);
  font-weight: bold;
}

.thumb-label {
  font-size: 0.65rem;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* ============================================
   STORIES OVERLAY
   ============================================ */
.stories-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--black);
  display: none;
  flex-direction: column;
}

.stories-overlay.open { display: flex; }

.so-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 10px 12px 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.so-progress {
  flex: 1;
  display: flex;
  gap: var(--space-1);
  padding-top: var(--space-3);
}

.so-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.so-progress-fill {
  height: 100%;
  width: 0;
  background: var(--white-pure);
  border-radius: var(--radius-pill);
  transition: width 0.1s linear;
}

.so-progress-fill.done {
  width: 100%;
  background: var(--gold);
}

.so-close {
  color: var(--white-pure);
  font-size: 1.3rem;
  padding: var(--space-2);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  z-index: 11;
}

.so-container {
  flex: 1;
  position: relative;
}

.so-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.so-slide.active { opacity: 1; z-index: 2; }

.so-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.so-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.2) 100%);
}

.so-text {
  position: relative;
  z-index: 3;
  padding: var(--space-7) var(--space-5);
  width: 100%;
}

.so-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white-pure);
  margin-bottom: var(--space-1);
}

.so-text p {
  font-size: var(--text-sm);
  color: var(--gold-light);
}

.so-sound-btn {
  margin-top: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: rgba(0,0,0,0.4);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 0.9rem;
}

.so-cta-slide {
  align-items: center;
  justify-content: center;
}

.so-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1000, var(--black), #1a0500);
}

.so-cta-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--space-7) var(--space-5);
}

.so-cta-icon {
  margin-bottom: var(--space-5);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.so-cta-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.so-cta-content p {
  font-size: var(--text-base);
  color: var(--white);
  opacity: 0.8;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.so-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  z-index: 5;
}

.so-zone-left { left: 0; }
.so-zone-right { right: 0; }

/* ============================================
   REELS
   ============================================ */
.reels-content { text-align: center; }

.reels-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-7);
  letter-spacing: 0.05em;
}

.reels-twitter {
  max-width: 600px;
  margin: 0 auto var(--space-6);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.reels-fallback {
  display: none;
  gap: var(--space-5);
  justify-content: center;
  flex-wrap: wrap;
}

.reels-fallback.visible { display: flex; }

.reels-card {
  width: 150px;
  aspect-ratio: 9/16;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  transition: var(--transition);
}

.reels-card:hover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.05);
  transform: translateY(-5px);
}

.reels-card-icon { font-size: 2rem; }

.reels-card p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
}

/* ============================================
   LINKS
   ============================================ */
.links {
  background: transparent;
}

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

.links-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-7);
  letter-spacing: 0.05em;
}

.links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  max-width: 500px;
  margin: 0 auto;
}

.link-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-3);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-align: left;
}

.link-card:hover {
  background: rgba(var(--gold-rgb), 0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.link-card:active {
  transform: translateY(-2px) scale(0.97);
}

.link-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card:hover .link-icon {
  transform: rotate(360deg) scale(1.1);
}

.link-name {
  flex: 1;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.link-arrow {
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

.link-card:hover .link-arrow {
  transform: translateX(3px);
}

/* Badge NOVO */
.badge-new {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, var(--color-danger), #ff6b6b);
  color: var(--white-pure);
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.1em;
  box-shadow: 0 2px 8px rgba(var(--danger-rgb), 0.5);
  animation: badge-pulse 2s ease infinite;
  z-index: 2;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(var(--danger-rgb), 0.5); }
  50% { transform: scale(1.08); box-shadow: 0 4px 14px rgba(var(--danger-rgb), 0.7); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  padding: var(--space-7) var(--space-5) var(--space-6);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-5);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-5);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
}

.footer-social .icon-svg {
  width: 16px;
  height: 16px;
  color: var(--gray);
}

.footer-social a:hover .icon-svg {
  color: var(--gold);
}

.footer-links { margin-bottom: var(--space-4); }

.footer-links a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-18 {
  font-size: var(--text-xs);
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-4);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: var(--radius-sm);
  display: inline-block;
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.footer-copy-small {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-header);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 20px rgba(var(--gold-rgb), 0.3);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  mix-blend-mode: difference;
}

.custom-cursor::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.custom-cursor.hover {
  width: 40px;
  height: 40px;
  border-color: var(--white-pure);
}

@media (pointer: coarse), (max-width: 768px) {
  .custom-cursor { display: none; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   RESPONSIVE — Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    backdrop-filter: none;
    border-left: none;
    box-shadow: none;
    padding: 0;
    gap: var(--space-6);
  }

  .nav-link {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-pill);
    opacity: 1;
    transform: none;
    animation: none;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
    box-shadow: 0 0 6px rgba(var(--gold-rgb), 0.5);
  }

  .nav-link:hover {
    color: var(--gold);
    transform: none;
    background: rgba(var(--gold-rgb), 0.06);
  }

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

  .nav-link.active {
    color: var(--gold);
    background: rgba(var(--gold-rgb), 0.1);
  }

  .nav-link.active::after {
    width: 60%;
  }

  .nav-footer {
    display: none;
  }

  .hamburger { display: none; }

  .header-logo {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }

  .section-content {
    padding: 120px var(--space-5);
  }

  .about-cards {
    grid-template-columns: 1fr 1fr;
  }

  .about-card-main {
    grid-column: span 2;
  }

  .gallery-carousel {
    max-width: 900px;
    grid-template-columns: 100px 1fr;
    gap: var(--space-5);
  }

  .gallery-thumbs {
    flex-direction: column;
    order: 0;
    overflow: visible;
  }

  .gallery-thumb {
    width: 100px;
    height: 130px;
  }

  .gallery-main {
    min-height: 500px;
  }

  .gallery-slides {
    min-height: 500px;
  }

  .links-grid {
    gap: var(--space-3);
  }

  .thumb-ring {
    width: 72px;
    height: 72px;
  }

  .hero-social a {
    width: 44px;
    height: 44px;
  }
}

/* ============================================
   RESPONSIVE — Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .gallery-main {
    min-height: 550px;
  }

  .gallery-slides {
    min-height: 550px;
  }

  .about-stats {
    gap: var(--space-7);
  }
}

/* ============================================
   RESPONSIVE — Large (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .links-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
  }
}

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

  html { scroll-behavior: auto; }
  .bg-layer { transition: none; }
  .custom-cursor { display: none; }
}