:root {
  --olive: #4a5a2a;
  --olive-dark: #384420;
  --olive-light: #7c8f52;
  --cream: #f6f1e4;
  --cream-alt: #ece2c9;
  --ink: #2c2a20;
  --paper: #fffdf8;
  --shadow: 0 10px 30px rgba(44, 42, 32, 0.12);
  --radius: 18px;
  --maxw: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: "Fredoka", sans-serif;
  color: var(--olive-dark);
  margin: 0 0 0.4em;
}

.brand {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
}

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

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 228, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(74, 90, 42, 0.15);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.logo {
  font-size: 1.6rem;
  color: var(--olive-dark);
  display: flex;
  align-items: center;
}

.logo-img {
  height: 76px;
  width: auto;
  display: block;
}

.footer-logo {
  height: 76px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

nav.primary-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

nav.primary-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--olive-dark);
  white-space: nowrap;
}

nav.primary-nav a:hover { color: var(--olive-light); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 2px solid transparent;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--olive);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-outline {
  border-color: var(--olive);
  color: var(--olive-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--olive-dark);
  cursor: pointer;
}

/* Hero */
.hero {
  background: radial-gradient(circle at 20% 20%, var(--cream-alt), var(--cream) 60%);
  padding: 64px 0 56px;
  text-align: center;
}

.hero .eyebrow {
  display: inline-block;
  background: rgba(74, 90, 42, 0.1);
  color: var(--olive-dark);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  max-width: 780px;
  margin: 0 auto 18px;
}

.hero p.lead {
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 1.05rem;
  color: #4a4938;
}

.hero .cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.tagline-badge {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--olive);
  font-size: 1.1rem;
  border-top: 1px solid rgba(74, 90, 42, 0.25);
  border-bottom: 1px solid rgba(74, 90, 42, 0.25);
  display: inline-block;
  padding: 10px 0;
}

/* How to order */
.steps {
  padding: 50px 0;
  background: var(--paper);
}

.steps h2 { text-align: center; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.step-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}

.step-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-card p { font-size: 0.92rem; color: #555140; margin: 0; }

/* Menu sections */
.menu-section {
  padding: 56px 0;
  border-top: 1px solid rgba(74, 90, 42, 0.1);
}

.menu-section:nth-of-type(even) { background: var(--cream); }

.section-head {
  max-width: 680px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.section-head p { color: #4a4938; margin: 0; }

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.board-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: zoom-in;
  border: 1px solid rgba(74, 90, 42, 0.12);
  position: relative;
}

.board-card img {
  display: block;
  width: 100%;
  height: auto;
}

.board-card .zoom-hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(44, 42, 32, 0.72);
  color: #fff;
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 999px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 19, 12, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox-inner {
  max-width: 92vw;
  max-height: 92vh;
  overflow: auto;
  border-radius: 12px;
}

.lightbox-inner img {
  display: block;
  max-width: 100%;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 26px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: none;
  font-size: 1.6rem;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 8px;
}

.lightbox-nav.prev { left: 18px; }
.lightbox-nav.next { right: 18px; }

/* Footer */
footer.site-footer {
  background: var(--olive-dark);
  color: #f1efe4;
  padding: 46px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1.05rem;
}

.footer-grid p, .footer-grid a { color: #d9d5c2; font-size: 0.92rem; }

.social-row { display: flex; gap: 14px; margin-top: 10px; }

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row svg { width: 20px; height: 20px; fill: #fff; }

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.8rem;
  color: #b9b49b;
  text-align: center;
}

.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  z-index: 60;
}

.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }

@media (max-width: 860px) {
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav.primary-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
    display: none;
    box-shadow: var(--shadow);
  }
  nav.primary-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
}
