/* ===== CSS Variables ===== */
:root {
  --color-cream: #FAF7F2;
  --color-warm-white: #FFFDF9;
  --color-dark: #2C2418;
  --color-brown: #6B4F36;
  --color-gold: #C8A96E;
  --color-gold-light: #E8D5B0;
  --color-olive: #7A8B5C;
  --color-olive-light: #A3B88A;
  --color-text: #3D3227;
  --color-text-light: #7A6E63;
  --color-border: #E5DDD3;
  --color-overlay: rgba(44, 36, 24, 0.55);
  --font-heading: 'Vollkorn', Georgia, serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;
  --nav-height: 72px;
  --section-pad: 100px;
  --container-max: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(44, 36, 24, 0.08);
  --shadow-lg: 0 8px 40px rgba(44, 36, 24, 0.12);
  --transition: 0.3s ease;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.25; color: var(--color-dark); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ===== Layout ===== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--color-warm-white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 620px;
  margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--color-brown);
  color: #fff;
}
.btn-primary:hover { background: var(--color-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  border: 2px solid var(--color-brown);
  color: var(--color-brown);
  background: transparent;
}
.btn-outline:hover { background: var(--color-brown); color: #fff; transform: translateY(-2px); }
.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
}
.btn-gold:hover { background: var(--color-gold-light); transform: translateY(-2px); }

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250, 247, 242, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(44, 36, 24, 0.06);
}
.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.5px;
}
.navbar:not(.scrolled) .nav-logo { color: #fff; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar:not(.scrolled) .nav-menu a { color: #fff; }
.nav-menu a:hover,
.nav-menu a.active { color: var(--color-gold); }
.navbar:not(.scrolled) .nav-menu a:hover,
.navbar:not(.scrolled) .nav-menu a.active { color: var(--color-gold-light); }
.nav-cta {
  background: var(--color-brown) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta:hover { background: var(--color-dark) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar:not(.scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  padding: 16px 0;
  margin-top: var(--nav-height);
  background: var(--color-warm-white);
  border-bottom: 1px solid var(--color-border);
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}
.breadcrumbs-list a { color: var(--color-brown); }
.breadcrumbs-list a:hover { text-decoration: underline; }
.breadcrumbs-list .separator { color: var(--color-border); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 24px;
}
.hero-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 16px;
}
.hero-title { color: #fff; margin-bottom: 8px; font-size: clamp(2.8rem, 6vw, 4.5rem); }
.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--color-gold-light);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-badges { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
}

/* ===== Page Header (inner pages) ===== */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}
.page-header-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.page-header-content h1 { color: #fff; margin-bottom: 12px; }
.page-header-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto;
}

/* ===== Cards ===== */
.card {
  background: var(--color-warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img {
  width: 100%; height: 260px;
  object-fit: cover;
}
.card-body { padding: 28px; }
.card-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gold);
  margin-bottom: 8px;
}
.card-title { margin-bottom: 8px; }
.card-desc { color: var(--color-text-light); font-size: 0.95rem; }
.card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-brown);
  margin-top: 12px;
}

/* ===== Grids ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== Features ===== */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-item { text-align: center; }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}
.feature-item h3 { margin-bottom: 8px; }
.feature-item p { color: var(--color-text-light); font-size: 0.95rem; }

/* ===== Split Section ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-img {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.split-content .section-tag { text-align: left; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--color-text-light); margin-bottom: 20px; font-size: 1.05rem; }

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 24, 0.3);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 60px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--color-gold); }

/* ===== Menu Category ===== */
.menu-category { margin-bottom: 64px; }
.menu-category-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-brown);
  padding-bottom: 12px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--color-gold-light);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}
.menu-item-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
}
.menu-item-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-top: 4px;
}
.menu-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-brown);
  white-space: nowrap;
  margin-left: 24px;
}

/* ===== Location Card ===== */
.location-card {
  background: var(--color-warm-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}
.location-card h3 { margin-bottom: 12px; color: var(--color-brown); }
.location-card p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 8px; }
.location-card .location-hours { font-weight: 600; color: var(--color-dark); margin-top: 12px; }

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { margin-bottom: 4px; }
.contact-info-item p { color: var(--color-text-light); font-size: 0.95rem; }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== Footer ===== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { color: #fff; font-size: 1.4rem; display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); max-width: 320px; }
.footer h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer a:hover { color: var(--color-gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}

/* ===== Fade In Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--color-brown);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.1rem; max-width: 540px; margin-left: auto; margin-right: auto; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-3, .feature-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { gap: 40px; }
}

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

  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--color-cream);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.35s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { color: var(--color-dark) !important; padding: 12px 16px; width: 100%; font-size: 1rem; }

  .grid-2, .grid-3, .grid-4, .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split-img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-desc { font-size: 1rem; }
  .hero-badges { gap: 8px; }
  .badge { font-size: 0.75rem; padding: 5px 12px; }

  .page-header { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
