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

:root {
  --green-900: #1B4332;
  --green-800: #2D6A4F;
  --green-700: #40916C;
  --green-600: #52B788;
  --green-500: #74C69D;
  --green-100: #D8F3DC;
  --green-50:  #F0FFF4;
  --gold:      #D4A843;
  --gold-light:#F5E6C8;
  --cream:     #FDF8F0;
  --off-white: #FAFAF7;
  --white:     #FFFFFF;
  --text-dark: #1A2E23;
  --text-mid:  #3D5A4C;
  --text-light:#6B8F7E;
  --shadow-sm: 0 2px 8px rgba(27,67,50,0.06);
  --shadow-md: 0 8px 30px rgba(27,67,50,0.10);
  --shadow-lg: 0 20px 60px rgba(27,67,50,0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ─── Scroll Reveal (progressive enhancement) ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
}

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,248,240,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27,67,50,0.06);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--green-900); }
.nav-logo-icon { flex-shrink: 0; }
.nav-logo-text { letter-spacing: -0.01em; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 16px; border-radius: 100px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-mid); transition: all var(--transition);
}
.nav-links a:hover { color: var(--green-800); background: var(--green-50); }
.nav-cta {
  background: var(--green-800) !important; color: var(--white) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--green-900) !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle-bar { width: 22px; height: 2px; background: var(--green-900); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active .nav-toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh; padding: 120px 24px 80px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--green-50) 50%, var(--green-100) 100%);
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 20% 80%, rgba(45,106,79,0.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(212,168,67,0.08) 0%, transparent 50%);
}
.hero-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-content { max-width: 520px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--white); border: 1px solid var(--green-100);
  font-size: 0.8rem; font-weight: 600; color: var(--green-800);
  margin-bottom: 28px; box-shadow: var(--shadow-sm);
}
.hero-headline {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.12; color: var(--green-900);
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-em {
  font-style: italic; color: var(--green-700);
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; line-height: 1.75; color: var(--text-mid);
  margin-bottom: 36px; max-width: 460px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 100px; font-size: 0.95rem; font-weight: 600;
  transition: all var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--green-800); color: var(--white);
  box-shadow: 0 4px 20px rgba(45,106,79,0.3);
}
.btn-primary:hover { background: var(--green-900); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(45,106,79,0.35); }
.btn-outline {
  background: var(--white); color: var(--green-900);
  border: 1.5px solid rgba(27,67,50,0.2);
}
.btn-outline:hover { border-color: var(--green-700); background: var(--green-50); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--green-900); box-shadow: var(--shadow-md); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }
.btn--large { padding: 16px 32px; font-size: 1rem; }

/* Hero Visual */
.hero-visual { position: relative; min-height: 560px; }
.hero-main-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-main-img { width: 100%; aspect-ratio: 520/420; object-fit: cover; }
.hero-main-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px;
  background: linear-gradient(to top, rgba(27,67,50,0.85), transparent);
}
.hero-main-tag {
  display: inline-block; padding: 6px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.2); color: var(--white);
  font-size: 0.8rem; font-weight: 600; backdrop-filter: blur(8px);
}

.hero-stat-card {
  position: absolute; display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 16px 20px; box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.stat-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: var(--green-100); display: flex; align-items: center; justify-content: center; }
.stat-num { display: block; font-size: 0.9rem; font-weight: 700; color: var(--green-900); }
.stat-label { display: block; font-size: 0.78rem; color: var(--text-light); line-height: 1.4; }

.stat-card-1 { top: 10%; right: -20px; animation-delay: 0s; }
.stat-card-2 { bottom: 28%; left: -30px; animation-delay: 1.3s; }
.stat-card-3 { bottom: 6%; right: 10%; animation-delay: 2.6s; }

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

/* ─── Section Shared ─── */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--green-700); margin-bottom: 14px;
}
.section-tag--light { color: var(--green-600); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--green-900);
  letter-spacing: -0.02em; margin-bottom: 18px;
}
.section-title--light { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; max-width: 540px; }
.about-em { font-style: italic; color: var(--green-400); }

/* ─── Menu ─── */
.menu-section { padding: 100px 24px; background: var(--off-white); }
.menu-section .section-header { text-align: center; margin-bottom: 48px; }
.menu-section .section-desc { margin: 0 auto; }

.menu-categories {
  display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.menu-cat {
  padding: 10px 24px; border-radius: 100px; font-size: 0.88rem; font-weight: 600;
  color: var(--text-mid); background: var(--white); border: 1.5px solid rgba(27,67,50,0.08);
  transition: all var(--transition);
}
.menu-cat:hover { color: var(--green-800); border-color: var(--green-300); }
.menu-cat.active { background: var(--green-800); color: var(--white); border-color: var(--green-800); }

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.menu-item {
  background: var(--white); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid rgba(27,67,50,0.04);
}
.menu-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-item-img { position: relative; overflow: hidden; aspect-ratio: 400/280; }
.menu-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.menu-item:hover .menu-item-img img { transform: scale(1.05); }
.menu-item-badge {
  position: absolute; top: 14px; left: 14px; padding: 5px 12px;
  border-radius: 100px; background: var(--gold); color: var(--white);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.menu-item-body { padding: 22px 24px 26px; }
.menu-item-top { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.menu-item-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--green-900); }
.menu-item-dots { flex: 1; border-bottom: 1.5px dashed rgba(27,67,50,0.15); min-width: 24px; margin-bottom: 4px; }
.menu-item-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* ─── About ─── */
.about-section { padding: 100px 24px; background: var(--green-900); position: relative; overflow: hidden; }
.about-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 10% 90%, rgba(116,198,157,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 90% 10%, rgba(212,168,67,0.08) 0%, transparent 50%);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.about-images { position: relative; min-height: 560px; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; aspect-ratio: 500/600; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -30px; right: -30px;
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--green-800);
}
.about-img-secondary img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about-img-accent {
  position: absolute; top: -20px; left: -20px; width: 120px; height: 120px;
  border-radius: var(--radius-md); background: var(--gold); opacity: 0.15;
  z-index: -1;
}
.about-content { max-width: 480px; }
.about-text { font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 20px; }
.about-signature { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.about-signature-text { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.6); }

/* ─── Specials ─── */
.specials-section { padding: 100px 24px; background: linear-gradient(160deg, var(--green-50) 0%, var(--cream) 100%); position: relative; overflow: hidden; }
.specials-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 80% 80%, rgba(45,106,79,0.06) 0%, transparent 50%);
}
.specials-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.specials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; position: relative; z-index: 1;
}
.special-card {
  background: var(--white); border-radius: var(--radius-md); padding: 36px 32px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(27,67,50,0.04);
  transition: all var(--transition);
}
.special-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.special-card-icon {
  width: 64px; height: 64px; border-radius: 16px; background: var(--green-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.special-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--green-900); margin-bottom: 12px; }
.special-card-desc { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; }

/* ─── Visit ─── */
.visit-section { padding: 100px 24px; background: var(--off-white); }
.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch;
}
.visit-info { max-width: 480px; }
.visit-details { margin: 40px 0; display: flex; flex-direction: column; gap: 24px; }
.visit-detail { display: flex; align-items: flex-start; gap: 16px; }
.visit-detail-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-100); display: flex; align-items: center; justify-content: center;
}
.visit-detail strong { display: block; font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-800); margin-bottom: 4px; }
.visit-detail span, .visit-detail a { font-size: 0.95rem; color: var(--text-mid); }
.visit-detail a:hover { color: var(--green-700); text-decoration: underline; }
.visit-map {
  border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
  box-shadow: var(--shadow-md); border: 4px solid var(--white);
}

/* ─── CTA ─── */
.cta-section { padding: 100px 24px; background: var(--green-900); position: relative; overflow: hidden; }
.cta-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 30% 50%, rgba(116,198,157,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 70% 50%, rgba(212,168,67,0.1) 0%, transparent 50%);
}
.cta-card {
  text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1;
}
.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); margin-bottom: 18px; letter-spacing: -0.02em; }
.cta-desc { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── Footer ─── */
.footer { background: var(--green-900); padding: 64px 24px 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--white); margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-contact a { font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--green-500); }
.footer-contact li { font-size: 0.9rem; color: rgba(255,255,255,0.55); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-content { max-width: 100%; }
  .hero-visual { min-height: 460px; }
  .hero-stat-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { min-height: 400px; }
  .about-img-secondary { right: 10px; bottom: -20px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(253,248,240,0.98); backdrop-filter: blur(16px);
    flex-direction: column; justify-content: flex-start; padding: 40px 24px;
    gap: 8px; transform: translateX(100%); transition: transform var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; padding: 14px 20px; width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-visual { min-height: 360px; }
  .hero-main-img { aspect-ratio: 1/1; }
  .menu-section, .about-section, .specials-section, .visit-section, .cta-section { padding: 72px 24px; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
