/* ============================================================
   Le SAVOY - Stylesheet Principal
   Design : Élégance raffinée, tons verts profonds & or
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&family=Dancing+Script:wght@600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #52B788;
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --cream: #FAF7F0;
  --cream-dark: #F0EBE0;
  --white: #FFFFFF;
  --charcoal: #2C2C2C;
  --gray: #6B7280;
  --gray-light: #D1D5DB;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
  --font-script: 'Dancing Script', cursive;

  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 8px 32px rgba(27, 67, 50, 0.15);
  --shadow-lg: 0 20px 60px rgba(27, 67, 50, 0.25);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--cream);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

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

/* ── Typography ────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  line-height: 1.2;
  font-weight: 400;
  color: var(--green-dark);
}

.heading-xl {
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300;
  letter-spacing: -1px;
}

.heading-lg {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
}

.heading-md {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
}

.heading-sm {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 500;
}

.script-text {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.4em;
}

.overline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.9;
}

/* ── Divider Gold ──────────────────────────────────────────── */
.gold-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.gold-line::before,
.gold-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.gold-line span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
  border: 2px solid var(--green-dark);
}

.btn-primary:hover {
  background: transparent;
  color: var(--green-dark);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}

.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* ── Navigation ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 5%;
  transition: var(--transition);
  height: 90px;
  display: flex;
  align-items: center;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  height: 70px;
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 56px;
  transition: var(--transition);
}

#navbar.scrolled .nav-logo img {
  content: url('../images/logo.png');
  height: 46px;
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

#navbar.scrolled .nav-links a {
  color: var(--green-dark);
}

.nav-reserve {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  letter-spacing: 2px !important;
  padding: 10px 24px !important;
}

.nav-reserve:hover {
  background: var(--green-dark) !important;
}

.nav-reserve::after {
  display: none !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

#navbar.scrolled .nav-toggle span {
  background: var(--green-dark);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--green-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--cream);
  letter-spacing: 2px;
}

.mobile-menu a:hover {
  color: var(--gold);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.85) 0%, rgba(27, 67, 50, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 5%;
}

.hero-overline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-bottom: 48px;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

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

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

/* Hero Slider */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  transform: scale(1.05);
}

.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* ── Sections ──────────────────────────────────────────────── */
section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .overline {
  display: block;
  margin-bottom: 16px;
}

/* ── About Section (Home) ──────────────────────────────────── */
.about-section {
  background: var(--white);
}

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

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

.about-img-main {
  position: absolute;
  width: 75%;
  height: 80%;
  object-fit: cover;
  top: 0;
  left: 0;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  width: 50%;
  height: 50%;
  object-fit: cover;
  bottom: 0;
  right: 0;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}

.about-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: var(--shadow-md);
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 1px;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 24px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
  padding: 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--green-dark);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ── Features ──────────────────────────────────────────────── */
.features-section {
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.05);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 48px 32px;
  border: 1px solid rgba(201, 169, 110, 0.15);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* ── Menu Preview Section ──────────────────────────────────── */
.menu-preview-section {
  background: var(--cream);
}

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

.menu-cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.menu-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.9) 30%, transparent);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.menu-cat-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 400;
}

/* ── Parallax Banner ───────────────────────────────────────── */
.parallax-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -100px 0;
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.78);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  width: 100%;
  padding: 0 5%;
}

.parallax-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 16px;
}

.parallax-content p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--white);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 40px;
  background: var(--cream);
  border-radius: var(--radius);
  position: relative;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--green-dark);
  letter-spacing: 1px;
}

.author-via {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── CTA Section ───────────────────────────────────────────── */
.cta-section {
  background: var(--cream-dark);
  padding: 80px 0;
  text-align: center;
}

/* ── Menu Page ─────────────────────────────────────────────── */
.page-hero {
  height: 50vh;
  min-height: 350px;
  background: var(--green-dark);
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero .overline {
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

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

.breadcrumb span {
  color: var(--gold);
}

/* Menu Layout Split */
.menu-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.menu-layout-sidebar {
  flex: 0 0 20%;
  position: sticky;
  top: 100px;
}

.menu-layout-content {
  flex: 1;
}

/* Menu Filter Tabs */
.menu-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 0;
}

.menu-tab {
  padding: 14px 20px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  border-left: 2px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  width: 100%;
}

.menu-tab:hover,
.menu-tab.active {
  color: var(--green-dark);
  border-left-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

@media (max-width: 991px) {
  .menu-layout {
    flex-direction: column;
    gap: 30px;
  }
  .menu-layout-sidebar {
    flex: auto;
    width: 100%;
    position: static;
  }
  .menu-tabs {
    flex-direction: row;
    overflow-x: auto;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 10px;
  }
  .menu-tab {
    text-align: center;
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 14px 28px;
    width: auto;
    margin-bottom: -1px;
  }
  .menu-tab:hover,
  .menu-tab.active {
    border-left-color: transparent;
    border-bottom-color: var(--gold);
    background: none;
  }
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.menu-item-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: none;
}

.menu-item-card.visible {
  display: flex;
  flex-direction: column;
}

.menu-item-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.menu-item-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.menu-item-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.menu-item-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-item-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--gray);
  flex: 1;
  margin-bottom: 16px;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 500;
}

/* ── Restaurant Page ───────────────────────────────────────── */
.restaurant-story {
  background: var(--white);
}

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

.story-text h2 {
  margin-bottom: 24px;
}

.story-text p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.9;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.story-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.story-images img:first-child {
  grid-column: 1 / -1;
  height: 300px;
}

/* Values Grid */
.values-section {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius);
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.value-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  color: var(--green-dark);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--gray);
  font-size: 0.88rem;
}

/* ── Forms ─────────────────────────────────────────────────── */
.form-section {
  background: var(--cream);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

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

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

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A96E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-submit {
  text-align: center;
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
}

/* Alert messages */
.alert {
  padding: 16px 24px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.alert-success {
  background: #d1fae5;
  color: #065f46;
  border-left: 4px solid #10b981;
}

.alert-error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #ef4444;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-family: var(--font-serif);
  color: var(--green-dark);
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  color: var(--gray);
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-light);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--green-dark);
  color: var(--white);
}

/* Map */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: #0F2D1E;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

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

.footer-brand .footer-logo {
  height: 60px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-col address {
  font-style: normal;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Scroll Reveal Animations ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

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

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

/* Delay classes */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ── Loader ────────────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 6px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: loaderSlide 1.5s ease-in-out infinite;
}

@keyframes loaderSlide {
  to {
    left: 200%;
  }
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* ── Back to top ───────────────────────────────────────────── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 800;
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

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

#back-to-top:hover {
  background: var(--green-dark);
}

/* ── Cookie Banner ─────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 45, 30, 0.97);
  padding: 20px 5%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

#cookie-banner.show {
  transform: translateY(0);
}

#cookie-banner p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

#cookie-banner a {
  color: var(--gold);
}

/* ── 404 ───────────────────────────────────────────────────── */
.notfound {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--cream);
  padding: 80px 5%;
}

.notfound h1 {
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

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

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

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

  .about-grid {
    gap: 48px;
  }

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

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .nav-links,
  .nav-reserve {
    display: none !important;
  }

  .nav-toggle {
    display: flex;
  }

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

  .about-images {
    height: 360px;
  }

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

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

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

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

  .hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
  }
}

@media (max-width: 480px) {
  .menu-cats-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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