/* ========================================
   AIR – An Ivory | Premium Restaurant
   Luxury Design System & Styles
   ======================================== */

/* ---- CSS Custom Properties ---- */
:root {
  /* Colors */
  --ivory: #F6F4F0;
  --ivory-dark: #EDE9E3;
  --charcoal: #1F1F1F;
  --charcoal-light: #2A2A2A;
  --charcoal-mid: #3A3A3A;
  --gold: #C8A96A;
  --gold-light: #D4BA82;
  --gold-dark: #B8974E;
  --grey: #E8E8E8;
  --grey-dark: #999;
  --white: #FFFFFF;
  --black: #000000;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1280px;
  --container-padding: 0 40px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(200,169,106,0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--ivory);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

input, select, textarea {
  font-family: inherit;
  outline: none;
}

::selection {
  background: var(--gold);
  color: var(--white);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--charcoal);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

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

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  letter-spacing: 12px;
  display: block;
  margin-bottom: 30px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--charcoal-mid);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-fill {
  width: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: preloaderFill 1.8s ease forwards;
}

@keyframes preloaderFill {
  to { width: 100%; }
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(31, 31, 31, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-air {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 6px;
}

.logo-divider {
  color: var(--gold);
  opacity: 0.5;
  font-size: 0.9rem;
}

.logo-ivory {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 3px;
  font-style: italic;
  opacity: 0.8;
}

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

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-smooth);
}

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

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

.nav-cta-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.nav-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--ivory);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(31, 31, 31, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--ivory);
  font-weight: 400;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.active .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-link:nth-child(6) { transition-delay: 0.35s; }

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

.mobile-reserve-btn {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 12px 32px;
  border-radius: var(--radius-xl);
  display: inline-block;
  margin-top: 10px;
  font-size: 1rem !important;
  font-family: var(--font-body) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.hero-parallax {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(31, 31, 31, 0.3) 0%,
    rgba(31, 31, 31, 0.1) 40%,
    rgba(31, 31, 31, 0.4) 70%,
    rgba(31, 31, 31, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 30px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 1px solid rgba(200, 169, 106, 0.3);
  border-radius: var(--radius-xl);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4.2rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(246, 244, 240, 0.75);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 300;
}

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

.hero-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(246, 244, 240, 0.6);
  font-weight: 300;
}

.hero-info-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(246, 244, 240, 0.4);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(200, 169, 106, 0.3);
  margin: 12px auto 0;
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  transition: var(--transition-smooth);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(246, 244, 240, 0.3);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

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

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ---- Section Typography ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

.title-accent {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.title-accent.center {
  margin-left: auto;
  margin-right: auto;
}

.title-accent.gold-accent {
  background: var(--gold-light);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--grey-dark);
  line-height: 1.8;
  font-weight: 300;
}

/* ---- About Section ---- */
.about {
  background: var(--ivory);
}

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

.about-images {
  position: relative;
  height: 560px;
}

.about-img-wrapper {
  position: absolute;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-img-wrapper:hover img {
  transform: scale(1.05);
}

.about-img-1 {
  top: 0;
  left: 0;
  width: 65%;
  height: 70%;
}

.about-img-2 {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border: 6px solid var(--ivory);
}

.about-content {
  padding-left: 20px;
}

.about-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}

.about-highlights {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
}

.highlight-icon {
  color: var(--gold);
  font-size: 0.8rem;
}

/* ---- Menu Section ---- */
.menu {
  background: var(--white);
}

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

.menu-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.1);
}

.menu-card-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.menu-card-tag {
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
}

.menu-card-body {
  padding: 24px;
}

.menu-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.menu-card-body p {
  font-size: 0.88rem;
  color: var(--grey-dark);
  line-height: 1.6;
  font-weight: 300;
}

.menu-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---- Parallax Divider ---- */
.parallax-divider {
  position: relative;
  height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
}

.parallax-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.2);
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.7) 0%,
    rgba(31, 31, 31, 0.5) 100%
  );
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.parallax-quote {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
  max-width: 780px;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

/* ---- Experience Section ---- */
.experience {
  background: var(--ivory);
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.experience-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 169, 106, 0.2);
}

.exp-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
  transition: var(--transition-smooth);
}

.experience-card:hover .exp-card-icon {
  transform: scale(1.1);
  color: var(--gold-dark);
}

.experience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.experience-card p {
  font-size: 0.88rem;
  color: var(--grey-dark);
  line-height: 1.65;
  font-weight: 300;
}

/* ---- Why Choose Us Section ---- */
.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #555;
  font-weight: 400;
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.why-testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 169, 106, 0.15);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.testimonial-name {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.testimonial-source {
  font-size: 0.75rem;
  color: var(--grey-dark);
  font-weight: 400;
}

/* ---- Reservation Section ---- */
.reservation {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.reservation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reservation-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.25) saturate(1.1);
}

.reservation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.85) 0%,
    rgba(31, 31, 31, 0.7) 100%
  );
}

.reservation .container {
  position: relative;
  z-index: 2;
}

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

.reservation-text {
  font-size: 1.05rem;
  color: rgba(246, 244, 240, 0.7);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.reservation-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.reservation-platforms {
  display: flex;
  gap: 12px;
}

.reservation-urgency {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Reservation Form */
.reservation-form-wrapper {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 169, 106, 0.15);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.reservation-form h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 32px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(246, 244, 240, 0.12);
  border-radius: var(--radius-sm);
  color: var(--ivory);
  font-size: 0.9rem;
  font-weight: 400;
  transition: var(--transition-fast);
}

.reservation-form input::placeholder {
  color: rgba(246, 244, 240, 0.4);
}

.reservation-form select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(246,244,240,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.reservation-form select option {
  background: var(--charcoal);
  color: var(--ivory);
}

.reservation-form input:focus,
.reservation-form select:focus {
  border-color: var(--gold);
  background: rgba(200, 169, 106, 0.08);
}

.reservation-form .btn-gold {
  margin-top: 8px;
  padding: 18px 36px;
  font-size: 0.85rem;
}

/* ---- Gallery Section ---- */
.gallery {
  background: var(--ivory);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 169, 106, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-hover span {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0.5);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-hover span {
  transform: scale(1);
}

/* ---- Location Section ---- */
.location {
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 12px;
}

.location-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.location-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-detail-item h4 {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.location-detail-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  font-weight: 300;
}

.location-detail-item a {
  color: var(--gold);
  font-weight: 500;
}

.location-detail-item a:hover {
  color: var(--gold-dark);
}

.location-map {
  height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.location-map iframe {
  border-radius: var(--radius-md);
}

/* ---- Footer ---- */
.footer {
  background: var(--charcoal);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(246, 244, 240, 0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(246, 244, 240, 0.5);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(246, 244, 240, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.footer-links-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links-col li {
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(246, 244, 240, 0.45);
  font-weight: 300;
}

.footer-links-col a {
  color: rgba(246, 244, 240, 0.45);
  transition: var(--transition-fast);
}

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

.footer-reserve-link {
  margin-top: 8px !important;
}

.footer-reserve-link a {
  color: var(--gold) !important;
  font-weight: 500 !important;
}

.footer-bottom {
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(246, 244, 240, 0.3);
  font-weight: 300;
}

.footer-tagline {
  font-style: italic;
  font-family: var(--font-heading);
  color: rgba(200, 169, 106, 0.4) !important;
}

/* ---- Sticky Reserve Button ---- */
.sticky-reserve {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  background: var(--gold);
  color: var(--charcoal);
  padding: 16px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(200, 169, 106, 0.35);
  transform: translateY(100px);
  opacity: 0;
  transition: var(--transition-smooth);
  display: none;
}

.sticky-reserve.visible {
  transform: translateY(0);
  opacity: 1;
  display: block;
}

.sticky-reserve:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 169, 106, 0.5);
}

/* ---- Scroll Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Responsive Design ---- */

/* Large Tablets */
@media (max-width: 1100px) {
  :root {
    --section-padding: 90px 0;
  }

  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .experience-card:nth-child(4),
  .experience-card:nth-child(5) {
    grid-column: span 1;
  }

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

/* Tablets */
@media (max-width: 900px) {
  :root {
    --section-padding: 80px 0;
    --container-padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-images {
    height: 400px;
    max-width: 520px;
    margin: 0 auto;
  }

  .about-content {
    padding-left: 0;
  }

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-map {
    height: 360px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

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

  .parallax-quote {
    font-size: 1.6rem;
  }

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

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

/* Mobile */
@media (max-width: 600px) {
  :root {
    --section-padding: 64px 0;
    --container-padding: 0 20px;
  }

  .nav-container {
    padding: 0 20px;
  }

  .hero {
    min-height: 100vh;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }

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

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-info {
    flex-direction: column;
    gap: 12px;
  }

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

  .about-images {
    height: 320px;
    max-width: 100%;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-card-img {
    height: 220px;
  }

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

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

  .gallery-tall {
    grid-row: span 1;
  }

  .reservation-form-wrapper {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .reservation-platforms {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .parallax-divider {
    height: 320px;
  }

  .parallax-quote {
    font-size: 1.3rem;
    padding: 0 20px;
  }

  .sticky-reserve {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
    border-radius: var(--radius-md);
  }

  .scroll-indicator {
    bottom: 24px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.8rem;
  }

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

  .about-img-1 {
    width: 75%;
  }

  .about-img-2 {
    width: 60%;
  }
}
