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

:root {
  --green-900: #1a3a26;
  --green-800: #2D5A3D;
  --green-700: #3d7a52;
  --green-600: #4a9462;
  --green-500: #6db37e;
  --green-400: #95c9a4;
  --green-300: #c2dfc8;
  --green-200: #e0f0e4;
  --green-100: #f0f7f2;
  --cream: #F9F7F2;
  --off-white: #F5F0E8;
  --white: #FFFFFF;
  --sand: #E8E0D0;
  --sand-light: #F2EDE4;
  --text-dark: #1C2E23;
  --text-mid: #3D4F44;
  --text-light: #6B7D70;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 8px rgba(45, 90, 61, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 90, 61, 0.1);
  --shadow-lg: 0 8px 40px rgba(45, 90, 61, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-900);
}

.section-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header--centered {
  text-align: center;
}

.section-header--centered .section-sub {
  margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 16px 0;
}

.site-header.scrolled {
  background: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 4px;
}

.logo-mark {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.logo-wordmark {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: var(--green-300);
  transition: var(--transition);
}

.site-header.scrolled .logo-mark {
  color: var(--green-800);
}

.site-header.scrolled .logo-wordmark {
  color: var(--green-600);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-400);
  transition: var(--transition);
}

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

.main-nav a:hover {
  color: var(--white);
}

.site-header.scrolled .main-nav a {
  color: var(--text-mid);
}

.site-header.scrolled .main-nav a:hover {
  color: var(--green-800);
}

.site-header.scrolled .main-nav a::after {
  background: var(--green-600);
}

.site-header.scrolled .btn--sm {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}

/* Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #1a3a26 0%,
    #2D5A3D 25%,
    #3d7a52 50%,
    #6db37e 75%,
    #c2dfc8 100%
  );
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(109, 179, 126, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(194, 223, 200, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(26, 58, 38, 0.4) 0%, transparent 70%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-accent {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--green-200);
  font-size: 0.85em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Highlights ─── */
.highlights {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-card {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--sand-light);
  transition: var(--transition);
}

.highlight-card:last-child {
  border-right: none;
}

.highlight-card:hover {
  background: var(--green-100);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-100);
  border-radius: var(--radius-md);
  color: var(--green-700);
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--green-200);
  transform: scale(1.05);
}

.highlight-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 4px;
}

.highlight-card span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─── Menu ─── */
.menu {
  padding: 100px 0;
  background: var(--cream);
}

.section-header {
  margin-bottom: 60px;
}

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

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

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

.menu-card-img {
  overflow: hidden;
  aspect-ratio: 3/2;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.menu-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--green-800);
}

.menu-card-body p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.menu-note {
  margin-top: 48px;
  text-align: center;
  padding: 24px 32px;
  background: var(--green-100);
  border-radius: var(--radius-lg);
  color: var(--text-mid);
  font-size: 1rem;
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-sub {
  margin-bottom: 24px;
}

.about-content p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-800);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ─── Specials ─── */
.specials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--green-100) 100%);
}

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

.special-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.special-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green-400);
  transition: var(--transition);
}

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

.special-card:hover::before {
  background: var(--green-600);
  height: 6px;
}

.special-card--featured {
  background: var(--green-800);
  color: var(--white);
}

.special-card--featured::before {
  background: var(--green-400);
}

.special-card--featured:hover::before {
  background: var(--green-300);
}

.special-day {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 8px;
}

.special-card--featured .special-day {
  color: var(--green-300);
}

.special-badge {
  display: inline-block;
  background: var(--green-600);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.special-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--green-900);
}

.special-card--featured h3 {
  color: var(--white);
}

.special-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.92rem;
}

.special-card--featured p {
  color: rgba(255, 255, 255, 0.75);
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

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

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}

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

.testimonial-quote {
  color: var(--green-300);
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-700);
  font-style: normal;
}

/* ─── Visit ─── */
.visit {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--green-100) 0%, var(--cream) 100%);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.visit-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.visit-desc {
  color: var(--text-mid);
  line-height: 1.8;
  font-size: 1.02rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-md);
  color: var(--green-700);
  box-shadow: var(--shadow-sm);
}

.contact-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-900);
  margin-bottom: 2px;
}

.contact-item span,
.contact-item a {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--green-700);
  text-decoration: underline;
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 400px;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--green-900);
  color: var(--green-300);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-mark {
  color: var(--white);
  font-size: 1.8rem;
}

.footer-brand .logo-wordmark {
  color: var(--green-400);
  font-size: 1.8rem;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--green-400);
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--green-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--green-400);
}

.footer-contact a {
  color: var(--green-300);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--green-600);
  text-align: center;
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .highlight-card {
    border-right: none;
    border-bottom: 1px solid var(--sand-light);
  }

  .highlight-card:nth-child(2) {
    border-right: none;
  }

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

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--green-900);
    padding: 80px 32px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .main-nav a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem;
  }

  .main-nav a:hover {
    color: var(--white) !important;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .btn--sm {
    margin-top: 16px;
    background: var(--green-600) !important;
    border-color: var(--green-600) !important;
    color: var(--white) !important;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

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

  .highlight-card {
    border-right: none;
    border-bottom: 1px solid var(--sand-light);
    padding: 28px 24px;
  }

  .highlight-card:last-child {
    border-bottom: none;
  }

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

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

  .about-img-secondary {
    right: 0;
    bottom: -24px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

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

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

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

  .visit-map {
    min-height: 300px;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

  .menu, .about, .specials, .testimonials, .visit {
    padding: 64px 0;
  }
}
