/* ============================================
   't Korennaer — Michelin Star Restaurant
   Color Palette:
   - Gold: #B8860B (dark goldenrod) / #C9A84C (warm gold) / #D4AF37 (classic gold)
   - White: #FFFFFF / #FAFAF7 (warm white) / #F5F3EE (cream)
   - Green accent: #4A6741 (forest) / #5C7C52 (sage)
   - Dark: #1A1A18 / #2C2C28
   ============================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #D4BF6A;
  --gold-dark: #A68B3C;
  --gold-deep: #8A7434;
  --gold-muted: rgba(201, 168, 76, 0.15);
  --gold-glow: rgba(201, 168, 76, 0.3);
  --green: #5C7C52;
  --green-dark: #4A6741;
  --green-muted: rgba(92, 124, 82, 0.12);
  --white: #FFFFFF;
  --cream: #FAFAF7;
  --warm-white: #F5F3EE;
  --dark: #1A1A18;
  --dark-soft: #2C2C28;
  --dark-muted: #3D3D38;
  --text: #2C2C28;
  --text-light: #6B6B64;
  --text-lighter: #9B9B94;
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --nav-height: 80px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================
   Reset & Base
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   Preloader
   ============================================ */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

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

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

.preloader-logo {
  width: 120px;
  height: auto;
  animation: preloaderPulse 1.5s ease-in-out infinite;
  filter: brightness(0) invert(1);
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s, box-shadow 0.4s, height 0.4s;
}

.nav.scrolled {
  background: rgba(26, 26, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
  height: 64px;
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1001;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  transition: height 0.4s;
  filter: brightness(0) invert(1);
}

.nav.scrolled .nav-logo-img {
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover {
  color: var(--white);
}

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

.nav-links a.nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem;
  border-radius: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

.nav-lang {
  display: flex;
  gap: 0.25rem;
  z-index: 1001;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn.active {
  color: var(--gold);
  border-color: var(--gold);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 24, 0.65);
}

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

.hero-content {
  position: relative;
  text-align: center;
  padding: 2rem;
}

.hero-logo {
  max-width: 340px;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.5s forwards;
  filter: brightness(0) invert(1);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 0.9s forwards;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.divider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.1s forwards;
}

.hero-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.3s forwards;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.5s forwards;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.michelin-star-icon {
  display: block;
}

.hero-badge-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-badge-score {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.hero-badge-score-sub {
  font-size: 1rem;
  opacity: 0.85;
}

.hero-badge-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  transition: all 0.5s var(--ease-out-expo);
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 1.7s forwards;
}

.hero-btn:hover {
  background: transparent;
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: heroFadeUp 1s var(--ease-out-expo) 2s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   Intro Strip
   ============================================ */

.intro-strip {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2rem 0;
}

.intro-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

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

.intro-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.intro-small {
  font-size: 1rem;
  opacity: 0.7;
}

.intro-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.intro-divider-v {
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.2);
}

/* ============================================
   Section Defaults
   ============================================ */

.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--text);
  letter-spacing: 0.02em;
}

.section-header--light .section-title {
  color: var(--white);
}

.section-header--light .section-label {
  color: var(--gold-light);
}

/* Reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

/* ============================================
   Vision Section
   ============================================ */

.vision {
  background: var(--cream);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.vision-main p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.vision-lead {
  font-family: var(--font-display) !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: var(--text) !important;
  line-height: 1.7 !important;
  margin-bottom: 2rem !important;
}

.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pillar {
  padding: 2rem;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: var(--white);
  transition: border-color 0.4s, box-shadow 0.4s;
}

.pillar:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.08);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.pillar p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.vision-photo {
  margin: 4rem 0 0;
}

.vision-photo img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.vision-quote {
  text-align: center;
  padding: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}

.vision-quote::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.vision-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.vision-quote cite {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-style: normal;
}

/* ============================================
   Menu Section
   ============================================ */

.menu-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.menu-intro {
  text-align: center;
  max-width: 650px;
  margin: -2rem auto 4rem;
}

.menu-intro p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.menu-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.menu-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
}

.menu-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.menu-card:hover .menu-card-accent {
  opacity: 1;
}

.menu-card--featured {
  border-color: rgba(201, 168, 76, 0.25);
}

.menu-card--featured .menu-card-accent {
  opacity: 1;
}

.menu-card-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
}

.menu-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.menu-card-desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.menu-card-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-option {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.menu-option--sub {
  opacity: 0.88;
}

.menu-option--sub .menu-option-name {
  font-size: 0.85rem;
}

.menu-option--sub .menu-option-price {
  font-size: 0.95rem;
}

.menu-option-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.menu-option-line {
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.15);
  min-width: 20px;
}

.menu-option-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  white-space: nowrap;
}

/* Valentine / Event Menu */

.menu-event {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2.5rem 3rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.04);
  position: relative;
  text-align: center;
}

.menu-event-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.menu-event-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.menu-event h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.menu-event-dates {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.menu-event .menu-card-options {
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
}

.menu-event-dl {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  transition: all 0.3s;
}

.menu-event-dl:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.menu-extras {
  max-width: 500px;
  margin: 3rem auto 2rem;
  text-align: center;
}

.menu-extra-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.4rem 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.menu-extra-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(201, 168, 76, 0.9);
}

.menu-note {
  text-align: center;
  margin-bottom: 4rem;
}

.menu-note p {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.menu-downloads {
  text-align: center;
  margin-top: 2rem;
}

.menu-downloads-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.menu-downloads-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu-dl-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  transition: all 0.3s;
}

.menu-dl-link:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.menu-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 4rem auto 0;
}

.menu-service {
  position: relative;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.04);
  text-align: center;
}

.menu-service h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.menu-service p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}


/* ============================================
   Lightbox
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out-expo), visibility 0.4s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  transition: color 0.3s;
  z-index: 2;
}

.lightbox-close:hover {
  color: var(--white);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 3rem;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.3s;
  z-index: 2;
  line-height: 1;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--white);
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s;
}

.lightbox-img.loaded {
  opacity: 1;
}

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery-section {
  background: var(--cream);
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item:nth-child(6) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

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

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

.gallery-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gold-deep);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: opacity 0.3s;
}

.gallery-ig-link:hover {
  opacity: 0.7;
}

/* ============================================
   Video Section
   ============================================ */

.video-section {
  background: var(--dark);
}

.video-feature {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.video-feature video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--dark);
}

.video-caption {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
}


/* ============================================
   Gift Card Section
   ============================================ */

.giftcard-section {
  background: var(--cream);
  position: relative;
}

.giftcard-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.giftcard-content {
  position: relative;
}

.giftcard-text {
  text-align: center;
  max-width: 600px;
  margin: -2rem auto 3rem;
}

.giftcard-text p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
}

.giftcard-widget {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: var(--white);
  overflow: hidden;
}

.qpon-iframe {
  display: block;
  border: none;
  width: 100%;
  min-height: 750px;
}

.giftcard-placeholder {
  padding: 4rem 2rem;
  text-align: center;
}

.giftcard-placeholder p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
}

.giftcard-placeholder-note {
  font-family: var(--font-body) !important;
  font-size: 0.8rem !important;
  color: var(--text-lighter) !important;
  margin-top: 0.5rem;
}

/* ============================================
   Reservation Section
   ============================================ */

.reservation-section {
  background: var(--dark);
  position: relative;
}

.reservation-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(201, 168, 76, 0.03), transparent);
  pointer-events: none;
}

.reservation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
}

.reservation-hours {
  margin-bottom: 3rem;
}

.reservation-hours h3,
.reservation-contact h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-day {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.hours-time {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.hours-row--closed .hours-day,
.hours-row--closed .hours-time {
  color: rgba(255, 255, 255, 0.55);
}

.hours-note {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
  font-style: italic;
}

.hours-note--vacation {
  color: var(--gold-light);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 400;
}

.contact-detail svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--gold);
}

.reservation-map {
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.reservation-map #contact-map {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: var(--cream);
}

.map-pin svg {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.35));
}

#contact-map .leaflet-popup-content-wrapper {
  background: var(--cream);
  color: var(--dark-soft);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.6;
}

#contact-map .leaflet-popup-tip {
  background: var(--cream);
}

#contact-map .leaflet-popup-content a {
  color: var(--gold-deep);
  text-decoration: underline;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s;
}

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

.footer-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .menu-cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .vision-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .reservation-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }
}

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

  .section {
    padding: 5rem 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav-links a.nav-cta {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
  }

  .menu-services {
    grid-template-columns: 1fr;
  }

  .vision-photo img {
    height: 240px;
  }

  .hero-bg-image {
    background-image: url('../images/w1080/terrace-garden-view.jpg') !important;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 0.5rem;
  }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  .intro-strip-inner {
    gap: 1.5rem;
  }

  .intro-number {
    font-size: 1.5rem;
  }

  .footer-info {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-title-line--1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .menu-card {
    padding: 2rem 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ============================================
   4K / High Resolution Screens
   ============================================ */

@media (min-width: 2000px) {
  :root {
    --nav-height: 100px;
  }

  .nav-inner {
    max-width: 1800px;
  }

  .nav-logo-img {
    height: 64px;
  }

  .nav.scrolled .nav-logo-img {
    height: 50px;
  }

  .nav.scrolled {
    height: 80px;
  }

  .nav-links a {
    font-size: 0.9rem;
    gap: 2.5rem;
  }

  .nav-links {
    gap: 3rem;
  }

  .nav-lang .lang-btn {
    font-size: 0.8rem;
  }

  .hero-logo {
    max-width: 500px;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 0.5em;
  }

  .hero-location {
    font-size: 0.9rem;
  }

  .hero-badges {
    gap: 2.5rem;
  }

  .michelin-star-icon {
    width: 44px;
    height: 44px;
  }

  .hero-badge-text {
    font-size: 0.75rem;
  }

  .hero-badge-score {
    font-size: 2.4rem;
  }

  .hero-badge-divider {
    height: 55px;
  }

  .hero-btn {
    font-size: 0.85rem;
    padding: 1.2rem 3rem;
  }

  .divider-line {
    width: 80px;
  }

  .container {
    max-width: 1600px;
  }

  .section-title {
    font-size: clamp(3rem, 4vw, 4.5rem);
  }

  .section-label {
    font-size: 0.8rem;
  }

  .intro-strip-inner {
    gap: 4rem;
  }

  .intro-number {
    font-size: 2.5rem;
  }

  .intro-label {
    font-size: 0.8rem;
  }
}

@media (min-width: 2560px) {
  .nav-inner {
    max-width: 2200px;
  }

  .container {
    max-width: 1900px;
  }

  .hero-logo {
    max-width: 600px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-location {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-auto-rows: 360px;
  }
}
