/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a2e26;
  background: #faf8f4;
  -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; }
address { font-style: normal; }

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --emerald: #065f46;
  --emerald-light: #047857;
  --emerald-dark: #044734;
  --cream: #faf8f4;
  --cream-dark: #f0ebe3;
  --sand: #e8e0d4;
  --sage: #d1d9cf;
  --text: #1a2e26;
  --text-muted: #5a6b63;
  --white: #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(6,95,70,0.06);
  --shadow-md: 0 8px 30px rgba(6,95,70,0.10);
  --shadow-lg: 0 16px 50px rgba(6,95,70,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.15; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1.25rem; }
.text-emerald { color: var(--emerald); }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  background: var(--sage);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 560px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(6,95,70,0.3);
}
.btn-primary:hover { background: var(--emerald-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,95,70,0.35); }
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn-outline:hover { background: var(--emerald); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,248,244,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(6,95,70,0.08);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--emerald);
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--emerald);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 800;
}
.logo-word { letter-spacing: 0.04em; }

/* NAV */
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: var(--transition);
}
.nav-list a:hover { color: var(--emerald); background: rgba(6,95,70,0.06); }

/* HAMBURGER */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-toggle:hover { background: rgba(6,95,70,0.06); }
.hamburger {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--emerald);
  position: relative;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.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 { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #044734 0%, #065f46 40%, #047857 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.pexels.com/photos/34387167/pexels-photo-34387167.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=900");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-outline { border-color: rgba(255,255,255,0.6); color: var(--white); }
.hero-actions .btn-outline:hover { background: var(--white); color: var(--emerald); border-color: var(--white); }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== ABOUT ===== */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images { position: relative; }
.img-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.img-card--main { position: relative; z-index: 1; }
.img-card--accent {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--cream);
}
.about-stamp {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 3;
  background: var(--emerald);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-stamp span { display: block; }
.about-stamp span:first-child { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; }
.about-stamp span:last-child { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.8; margin-top: 2px; }
.about-text .label { margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1.02rem; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-top: 2rem; }
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--sage);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card strong { display: block; color: var(--text); font-size: 0.95rem; margin-bottom: 2px; }
.feature-card span { font-size: 0.88rem; color: var(--text-muted); }

/* ===== MENU ===== */
.menu { padding: 120px 0; background: var(--white); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .section-desc { margin: 0 auto; }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  color: var(--text-muted);
  background: var(--cream);
  border: 2px solid transparent;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--emerald); border-color: var(--sage); }
.tab-btn.active {
  background: var(--emerald);
  color: var(--white);
  border-color: var(--emerald);
  box-shadow: 0 4px 16px rgba(6,95,70,0.25);
}
.menu-panel { display: none; animation: fadeIn 0.4s ease; }
.menu-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.menu-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--emerald);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sage);
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
  gap: 12px;
}
.menu-item-name { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.menu-item-desc { font-size: 0.85rem; color: var(--text-muted); text-align: right; flex-shrink: 0; }
.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== VIBE ===== */
.vibe { padding: 120px 0 0; overflow: hidden; }
.vibe-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto 80px;
}
.vibe-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.vibe-img:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vibe-img img { width: 100%; height: 100%; object-fit: cover; }
.vibe-content { text-align: center; max-width: 700px; }
.vibe-content .section-title { margin-bottom: 1.5rem; }
.vibe-desc { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3rem; }
.vibe-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: var(--sand); }

/* ===== VISIT ===== */
.visit { padding: 120px 0; background: var(--white); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.addr-row {
  display: flex;
  gap: 16px;
  margin-bottom: 1.5rem;
}
.addr-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--emerald);
  margin-top: 2px;
}
.addr-row strong { display: block; color: var(--text); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.addr-row p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.addr-row a { color: var(--emerald); text-decoration: underline; text-underline-offset: 3px; }
.addr-row a:hover { color: var(--emerald-light); }
.hours { margin: 2rem 0; }
.hours-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--emerald); margin-bottom: 1rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.95rem;
}
.hours-list .day { color: var(--text-muted); }
.hours-list .time { font-weight: 600; color: var(--text); }
.map-btn { margin-top: 2rem; }
.visit-map {
  min-height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===== CONTACT ===== */
.contact { padding: 120px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text .section-desc { margin-bottom: 1.5rem; }
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(6,95,70,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  text-align: center;
  margin-top: 1rem;
  padding: 16px;
  background: var(--sage);
  border-radius: var(--radius-sm);
  color: var(--emerald-dark);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.footer { background: var(--emerald-dark); color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 60px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.15); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; opacity: 0.7; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .visit-grid, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-images { max-width: 500px; }
  .img-card--accent { right: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-list {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,248,244,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(6,95,70,0.08);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list a { padding: 14px 16px; font-size: 1rem; width: 100%; }
  .nav-list .btn { justify-content: center; margin-top: 8px; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .menu-grid { grid-template-columns: 1fr; gap: 32px; }
  .vibe-strip { grid-template-columns: 1fr; padding: 0 24px; max-width: 480px; }
  .vibe-img { aspect-ratio: 16/10; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .about-stamp { top: -12px; left: -12px; }
  .img-card--accent { position: relative; bottom: auto; right: auto; width: 100%; margin-top: -20px; }
  .img-card--main { margin-bottom: 20px; }
  .about-images { max-width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .about, .menu, .vibe, .visit, .contact { padding: 80px 0; }
  .vibe-stats { gap: 20px; }
  .stat-divider { display: none; }
}
