/* ── Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a1a;
  background: #FAF8F5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Typography ───────────────────────────────────────── */
:root {
  --green-dark: #1B4332;
  --green-mid: #2D6A4F;
  --green-light: #40916C;
  --cream: #D4A84B;
  --cream-light: #F0D68A;
  --off-white: #FAF8F5;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

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

/* ── Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-cream { background: var(--cream); color: var(--dark); border-color: var(--cream); }
.btn-cream:hover { background: var(--cream-light); border-color: var(--cream-light); }
.btn-dark { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.btn-dark:hover { background: var(--green-mid); border-color: var(--green-mid); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: var(--white); color: var(--green-dark); }
.btn-outline-dark { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-outline-dark:hover { background: var(--green-dark); color: var(--white); }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

/* ── Header ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--green-dark);
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--green-dark);
  color: var(--cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--serif);
}
.main-nav ul { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover { background: rgba(27, 67, 50, 0.06); color: var(--green-dark); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.hamburger { top: 50%; margin-top: -1px; }
.hamburger::before { content: ''; top: -7px; }
.hamburger::after { content: ''; bottom: -7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { bottom: 0; transform: translateX(-50%) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27, 67, 50, 0.55) 0%,
    rgba(27, 67, 50, 0.4) 50%,
    rgba(27, 67, 50, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 1.5rem;
  margin-left: 8%;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Sections ─────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }

/* ── About ────────────────────────────────────────────── */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-images { position: relative; }
.about-img {
  border-radius: 12px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.about-img-primary { height: 520px; }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  height: 260px;
  border: 6px solid var(--off-white);
}
.about-text p {
  color: #444;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-light);
}
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ── Menu ─────────────────────────────────────────────── */
.menu-section { background: var(--white); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.menu-card {
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.menu-card-img { height: 220px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 1.75rem; }
.menu-card-body h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.menu-card-body p { color: var(--gray); font-size: 0.95rem; }

/* ── Gallery ──────────────────────────────────────────── */
.gallery-section { background: var(--green-dark); padding: 5rem 0; }
.gallery-section .section-eyebrow { color: var(--cream); }
.gallery-section .section-title { color: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); opacity: 0.9; }

/* ── Hours ────────────────────────────────────────────── */
.hours-section { background: var(--off-white); }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.hours-table { margin: 2rem 0; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.95rem;
}
.hours-day { font-weight: 600; color: var(--dark); }
.hours-time { color: var(--green-mid); font-weight: 500; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item strong { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.2rem; }
.contact-item p { font-size: 0.95rem; color: var(--dark); }
.contact-item a { color: var(--green-mid); font-weight: 500; transition: color 0.2s; }
.contact-item a:hover { color: var(--green-dark); }
.icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--green-mid); margin-top: 2px; }
.hours-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  height: 420px;
}
.hours-map iframe { width: 100%; height: 100%; border: 0; }

/* ── CTA / Contact Form ───────────────────────────────── */
.cta-section { background: var(--white); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.cta-text p { color: var(--gray); margin-bottom: 1.5rem; font-size: 1.05rem; }
.cta-contact { display: flex; flex-direction: column; gap: 1rem; }
.cta-phone, .cta-email {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--green-dark);
  padding: 1rem 1.25rem;
  background: var(--off-white);
  border-radius: 8px;
  transition: background 0.2s, transform 0.2s;
}
.cta-phone:hover, .cta-email:hover { background: #eef5f0; transform: translateX(4px); }
.cta-form-wrap {
  background: var(--off-white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid var(--gray-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  margin-top: 1rem;
  padding: 1rem;
  background: #eef5f0;
  border: 1px solid var(--green-light);
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 0.9rem;
  text-align: center;
}

/* ── Footer ───────────────────────────────────────────── */
.site-footer { background: var(--green-dark); color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand .logo-mark { background: var(--cream); color: var(--green-dark); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; }
.footer-links strong,
.footer-hours strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-hours p { font-size: 0.9rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .hours-grid, .cta-grid { gap: 2.5rem; }
  .about-img-primary { height: 400px; }
  .about-img-secondary { width: 50%; height: 200px; bottom: -25px; right: -15px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; z-index: 1001; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: all; }
  .main-nav ul { flex-direction: column; gap: 0.5rem; text-align: center; }
  .main-nav a { font-size: 1.2rem; padding: 0.75rem 1.5rem; }
  .hero-content { margin-left: 0; text-align: center; padding: 0 1.5rem; }
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { order: -1; max-width: 500px; margin: 0 auto; }
  .about-img-primary { height: 350px; }
  .about-img-secondary { display: none; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 200px; }
  .hours-grid { grid-template-columns: 1fr; }
  .hours-map { height: 300px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-form-wrap { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.75rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img { height: 220px; }
}
