/* ── Variables ── */
:root {
  --green:   #2D5016;
  --green-light: #3d6b1f;
  --gold:    #C8860A;
  --cream:   #FBF7F0;
  --cream-dark: #F2EBE0;
  --brown:   #3D2B1F;
  --brown-light: #6B4C36;
  --white:   #FFFFFF;
  --shadow:  0 4px 24px rgba(45,80,22,0.10);
  --radius:  16px;
  --font-serif: 'Playfair Display', serif;
  --font-sans:  'Sarabun', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--brown);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251,247,240,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,80,22,0.12);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 8px;
  flex: 1;
}
.nav-link {
  font-size: .95rem;
  font-weight: 600;
  color: var(--brown-light);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nav-link:hover, .nav-link.active {
  background: var(--green);
  color: var(--white);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-btn {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 6px 16px;
  cursor: pointer;
  transition: background .2s;
}
.lang-btn:hover { background: var(--green-light); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: .3s;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}
.hero-content { flex: 1; }
.hero-eyebrow {
  display: inline-block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}
.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-tagline {
  font-size: 1.1rem;
  color: var(--brown-light);
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-secondary {
  border: 2px solid var(--green);
  color: var(--green);
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: background .2s, color .2s, transform .15s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }
.hero-image-wrap {
  flex: 1;
  max-width: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(45,80,22,0.18);
}
.hero-img { width: 100%; height: auto; display: block; }

/* ── Shared ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; }
.section-tag {
  display: inline-block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--green);
  margin-bottom: 52px;
}

/* ── Why Us ── */
.why-section { background: var(--white); }
.shop-banner {
  max-width: 920px;
  margin: 0 auto 44px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.shop-banner img { width: 100%; height: auto; display: block; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.why-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(45,80,22,0.08);
  transition: box-shadow .2s, transform .2s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon { width: 48px; height: 48px; margin-bottom: 20px; }
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 10px;
}
.why-card p { font-size: .95rem; color: var(--brown-light); line-height: 1.7; }
.cert-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cert-badge {
  background: var(--green);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: .06em;
}

/* ── Menu ── */
.menu-section { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(45,80,22,0.07);
  transition: box-shadow .2s, transform .2s;
}
.menu-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.menu-img { width: 100%; height: auto; display: block; }
.menu-card-body {
  padding: 14px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-price {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 22px;
  border-radius: 100px;
  letter-spacing: .02em;
}

/* ── Pricing ── */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
  align-items: start;
}
.price-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid transparent;
  position: relative;
  transition: box-shadow .2s;
}
.price-card:hover { box-shadow: var(--shadow); }
.price-card.featured {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.price-badge-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.price-header {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
}
.price-card.featured .price-amount { color: #f5d88e; }
.price-label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--brown-light);
}
.price-card.featured .price-label { color: rgba(255,255,255,.7); }
.price-list { list-style: none; }
.price-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(45,80,22,0.08);
  font-size: .95rem;
  color: var(--brown);
}
.price-card.featured .price-list li {
  color: rgba(255,255,255,.9);
  border-bottom-color: rgba(255,255,255,.15);
}
.price-list li:last-child { border-bottom: none; }
.combo-card { text-align: center; }
.combo-desc { font-size: 1rem; color: var(--brown-light); margin-bottom: 16px; }
.add-on-row { display: flex; justify-content: center; }
.add-on-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
}

/* Sides */
.sides-section { margin-bottom: 40px; }
.sides-section h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 20px;
}
.sides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.side-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--cream);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .95rem;
}
.side-price {
  font-weight: 700;
  color: var(--gold);
}
.menu-img-full {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}
.menu-img-full img { width: 100%; }

/* ── Contact ── */
.contact-section { background: var(--cream); }
.contact-card {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 560px;
}
.contact-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
}
.contact-icon { font-size: 2rem; }
.contact-label { font-size: .85rem; color: var(--brown-light); margin-bottom: 4px; }
.contact-value { font-size: 1.1rem; font-weight: 700; color: var(--green); }
a.contact-value:hover { color: var(--gold); }
.contact-divider { width: 1px; background: var(--cream-dark); }

/* ── Footer ── */
.footer {
  background: var(--green);
  color: var(--white);
  padding: 48px 24px;
  text-align: center;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-tagline { font-size: .95rem; opacity: .75; margin-bottom: 16px; }
.footer-copy { font-size: .82rem; opacity: .5; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .why-grid, .menu-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .sides-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { flex-direction: column; min-height: auto; padding-top: 100px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { max-width: 360px; }
  .hero-img { height: auto; }
}
@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid rgba(45,80,22,0.12); padding: 16px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .why-grid, .menu-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .sides-grid { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; }
  .contact-divider { width: auto; height: 1px; }
  section { padding: 64px 0; }
}
