/* ============================================
   EMBER & VINE — Restaurant Template Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --deep-green: #1B4332;
  --cream: #F5E6CC;
  --burgundy: #722F37;
  --warm-white: #FFFEF7;
  --dark-text: #2C1810;
  --burgundy-light: #8B3A42;
  --green-light: #2D6A4F;
  --cream-dark: #E8D5B5;
  --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.16);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;
  --font-display: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Georgia', serif;
  --nav-height: 80px;
  --container-max: 1200px;
  --container-narrow: 800px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section-padding {
  padding: 80px 0;
}

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

.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;
}

/* ---------- Typography ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--deep-green);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6b5c52;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.separator {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--burgundy);
  margin: 24px auto;
  border: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  cursor: pointer;
  text-align: center;
}

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

.btn--primary:hover {
  background: var(--burgundy-light);
  border-color: var(--burgundy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
  background: var(--warm-white);
  color: var(--deep-green);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background: var(--deep-green);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--dark:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition-base);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.navbar__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--warm-white);
  letter-spacing: 2px;
  z-index: 1001;
  transition: color var(--transition-fast);
}

.navbar__logo span {
  color: var(--cream);
  font-style: italic;
  font-size: 1.1rem;
  margin-left: 2px;
}

.navbar.scrolled {
  background: var(--deep-green);
  box-shadow: var(--shadow-md);
  height: 64px;
}

.navbar.scrolled .navbar__logo {
  font-size: 1.4rem;
}

/* Desktop Nav Links */
.navbar__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cream);
  transition: width var(--transition-base);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--warm-white);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger__line:nth-child(1) {
  margin-bottom: 6px;
}

.hamburger__line:nth-child(3) {
  margin-top: 6px;
}

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

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--deep-green);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: right var(--transition-slow) cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  transition: all var(--transition-base);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .mobile-menu__links a {
  transform: translateY(0);
  opacity: 1;
}

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

.mobile-menu__links a:hover,
.mobile-menu__links a.active {
  color: var(--cream);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url(https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&h=1080&fit=crop) center/cover;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.95) 0%,
    rgba(114, 47, 55, 0.4) 100%
  );
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(114, 47, 55, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245, 230, 204, 0.1) 0%, transparent 50%),
    var(--deep-green);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.hero__label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--warm-white);
  line-height: 1.1;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--cream);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  background: var(--deep-green);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(114, 47, 55, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(245, 230, 204, 0.08) 0%, transparent 50%);
}

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

.page-hero__title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--warm-white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.85;
}

.page-hero .separator {
  background: var(--cream);
  margin: 20px auto;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   HOME — FEATURED DISHES
   ============================================ */
.featured {
  background: var(--warm-white);
}

.featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.featured__card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.featured__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.featured__card-img {
  height: 240px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.featured__card-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1rem;
  color: #9a8a7a;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.featured__card-img .placeholder--1 {
  background: linear-gradient(135deg, #d4a574, #c89b6b);
}

.featured__card-img .placeholder--2 {
  background: linear-gradient(135deg, #8B3A42, #a04858);
}

.featured__card-img .placeholder--3 {
  background: linear-gradient(135deg, #2D6A4F, #3d8b6a);
}

.featured__card-body {
  padding: 28px;
}

.featured__card-title {
  font-size: 1.4rem;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.featured__card-text {
  font-size: 0.95rem;
  color: #7a6b60;
  line-height: 1.7;
}

/* ============================================
   HOME — STORY SECTION
   ============================================ */
.story {
  background: var(--cream);
}

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

.story__image {
  height: 400px;
  background: linear-gradient(135deg, var(--deep-green), var(--green-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.story__content {
  padding: 20px 0;
}

.story__text {
  font-size: 1.05rem;
  color: #5a4d42;
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ============================================
   HOME — CTA SECTION
   ============================================ */
.cta-section {
  background: var(--deep-green);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(114, 47, 55, 0.2) 0%, transparent 60%);
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--warm-white);
  margin-bottom: 16px;
}

.cta-section__text {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  background: var(--warm-white);
}

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

.about-story__image {
  height: 360px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-story__text {
  font-size: 1.05rem;
  color: #5a4d42;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Chefs */
.chefs {
  background: var(--cream);
}

.chefs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.chef-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.chef-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.chef-card__avatar--1 {
  background: linear-gradient(135deg, #1B4332, #2D6A4F);
  color: var(--cream);
}

.chef-card__avatar--2 {
  background: linear-gradient(135deg, #722F37, #a04858);
  color: var(--cream);
}

.chef-card__avatar--3 {
  background: linear-gradient(135deg, #d4a574, #c89b6b);
  color: #fff;
}

.chef-card__name {
  font-size: 1.3rem;
  color: var(--deep-green);
  margin-bottom: 4px;
}

.chef-card__role {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--burgundy);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.chef-card__bio {
  font-size: 0.95rem;
  color: #7a6b60;
  line-height: 1.7;
}

/* Philosophy */
.philosophy {
  background: var(--warm-white);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
}

.philosophy__card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(27, 67, 50, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.philosophy__card:hover {
  border-color: var(--burgundy);
  box-shadow: var(--shadow-sm);
}

.philosophy__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.philosophy__card h3 {
  font-size: 1.25rem;
  color: var(--deep-green);
  margin-bottom: 12px;
}

.philosophy__card p {
  font-size: 0.95rem;
  color: #7a6b60;
  line-height: 1.7;
}

/* ============================================
   MENU PAGE
   ============================================ */
.menu-section {
  background: var(--warm-white);
}

.menu-category {
  margin-bottom: 60px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category__title {
  font-size: 1.8rem;
  color: var(--deep-green);
  text-align: center;
  margin-bottom: 8px;
}

.menu-category__subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #9a8a7a;
  margin-bottom: 32px;
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.menu-item__info {
  flex: 1;
  padding-right: 16px;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--deep-green);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-item__desc {
  font-size: 0.9rem;
  color: #7a6b60;
  line-height: 1.6;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--burgundy);
  font-weight: 600;
  white-space: nowrap;
  padding-top: 2px;
}

.dietary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  flex-shrink: 0;
}

.dietary-icon--v {
  background: #2D6A4F;
  color: #fff;
}

.dietary-icon--vg {
  background: #1B4332;
  color: #fff;
}

.dietary-icon--gf {
  background: #d4a574;
  color: #fff;
}

.dietary-icon--df {
  background: #8B3A42;
  color: #fff;
}

.menu-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
}

.menu-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #5a4d42;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section {
  background: var(--warm-white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.gallery__item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item .placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: transform var(--transition-slow);
}

.gallery__item:hover .placeholder-img {
  transform: scale(1.08);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__overlay span {
  color: var(--warm-white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  transform: translateY(10px);
  transition: transform var(--transition-base);
}

.gallery__item:hover .gallery__overlay span {
  transform: translateY(0);
}

/* Gallery placeholder colors */
.gallery-bg--1 { background: linear-gradient(135deg, #d4a574, #c89b6b); }
.gallery-bg--2 { background: linear-gradient(135deg, #1B4332, #2D6A4F); }
.gallery-bg--3 { background: linear-gradient(135deg, #722F37, #a04858); }
.gallery-bg--4 { background: linear-gradient(135deg, #8B6F47, #a38860); }
.gallery-bg--5 { background: linear-gradient(135deg, #2D6A4F, #40916C); }
.gallery-bg--6 { background: linear-gradient(135deg, #a04858, #c4606e); }
.gallery-bg--7 { background: linear-gradient(135deg, #5a4d42, #7a6b60); }
.gallery-bg--8 { background: linear-gradient(135deg, #3d8b6a, #52b788); }
.gallery-bg--9 { background: linear-gradient(135deg, #c89b6b, #e8c99b); }

/* ============================================
   RESERVATIONS PAGE
   ============================================ */
.reservations-section {
  background: var(--warm-white);
}

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

.reservation-form {
  background: #fff;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.reservation-form h3 {
  font-size: 1.5rem;
  color: var(--deep-green);
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #5a4d42;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd3c8;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--warm-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--deep-green);
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

/* Opening Hours & Events Sidebar */
.reservations-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background: var(--cream);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
}

.info-card h3 {
  font-size: 1.3rem;
  color: var(--deep-green);
  margin-bottom: 20px;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hours-list__item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #5a4d42;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(44, 24, 16, 0.08);
}

.hours-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-list__item span:last-child {
  font-weight: 600;
  color: var(--dark-text);
}

.info-card p {
  font-size: 0.95rem;
  color: #5a4d42;
  line-height: 1.7;
  margin-bottom: 16px;
}

.info-card p:last-child {
  margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  background: var(--warm-white);
}

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

.contact-form {
  background: #fff;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--deep-green);
  margin-bottom: 24px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.contact-info__text h4 {
  font-size: 1.05rem;
  color: var(--deep-green);
  margin-bottom: 4px;
}

.contact-info__text p {
  font-size: 0.95rem;
  color: #7a6b60;
  line-height: 1.6;
}

.contact-info__text a {
  color: var(--burgundy);
}

.contact-info__text a:hover {
  text-decoration: underline;
}

.contact-map {
  height: 300px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9a8a7a;
  font-family: var(--font-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-text);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--warm-white);
  margin-bottom: 12px;
}

.footer__brand h3 span {
  color: var(--cream);
  font-style: italic;
  font-size: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__heading {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-white);
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer__links a:hover {
  color: var(--cream);
  padding-left: 8px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer__contact-item span:first-child {
  font-size: 1.1rem;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer__bottom a {
  color: var(--cream);
  transition: color var(--transition-fast);
}

.footer__bottom a:hover {
  color: var(--warm-white);
  text-decoration: underline;
}

/* ============================================
   FORM SUCCESS STATE
   ============================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  color: var(--deep-green);
  margin-bottom: 8px;
}

.form-success p {
  color: #7a6b60;
}

/* ============================================
   RESPONSIVE — TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .section-padding {
    padding: 100px 0;
  }

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

  .story__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

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

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

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

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

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

  .reservations__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

  .contact__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE — DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }

  .navbar__links {
    display: flex;
  }

  .philosophy__grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .gallery__item:nth-child(1) {
    grid-column: span 2;
    height: 360px;
  }

  .gallery__item:nth-child(5) {
    grid-column: span 2;
    height: 360px;
  }

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

  .reservation-form {
    padding: 48px 40px;
  }

  .contact-form {
    padding: 48px 40px;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

/* ============================================
   RESPONSIVE — LARGE (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .hero__title {
    font-size: 4.5rem;
  }

  .story__image {
    height: 500px;
  }

  .about-story__image {
    height: 450px;
  }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--warm-white);
}

::-webkit-scrollbar-thumb {
  background: var(--cream-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #bfaa92;
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: var(--burgundy);
  color: var(--warm-white);
}

/* ============================================
   LOADING STATE
   ============================================ */
body.loading {
  overflow: hidden;
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .navbar,
  .mobile-menu,
  .hamburger {
    display: none !important;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 40px 0;
    background: #fff !important;
    color: #000 !important;
  }

  .hero__title,
  .page-hero__title {
    color: #000 !important;
  }

  .section-padding {
    padding: 30px 0;
  }

  .footer {
    background: #fff !important;
    color: #000 !important;
  }
}
