/* ===== Design tokens ===== */
:root {
  --lemon: #ffd23f;
  --lemon-deep: #f4b400;
  --leaf: #5fa83a;
  --cream: #fffdf3;
  --cream-2: #fff7d6;
  --ink: #3a2e12;
  --ink-soft: #6b5b34;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(160, 120, 0, 0.18);
  --radius: 18px;
  --max: 1120px;
  font-synthesis: none;
}

/* ===== Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand__name {
  font-family: "Baloo 2", "Nunito", sans-serif;
  line-height: 1.1;
  color: var(--ink);
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--lemon-deep);
  margin-bottom: 0.75rem;
}
.eyebrow--dark { color: var(--leaf); }

.section__head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section__head h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
.section__sub { color: var(--ink-soft); margin-top: 0.75rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--ink);
  color: var(--lemon);
  box-shadow: var(--shadow);
}
.btn--primary:hover { background: #4d3d18; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: rgba(58, 46, 18, 0.06); }

.btn--dark {
  background: var(--ink);
  color: var(--lemon);
  box-shadow: var(--shadow);
}

.btn--small { padding: 0.55rem 1.1rem; background: var(--ink); color: var(--lemon); }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 210, 63, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid rgba(58, 46, 18, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
}
.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(58, 46, 18, 0.25);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin-left: auto;
}
.nav__menu a:not(.btn) {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink);
}
.nav__menu a:not(.btn):hover { color: var(--ink-soft); }

/* Right-side group: persistent Catering Inquiry button + mobile toggle */
.nav__right { display: flex; align-items: center; gap: 0.75rem; }
.nav__inquiry { white-space: nowrap; }
.nav__inquiry-short { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}
.nav__toggle span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--lemon) 0%, var(--lemon-deep) 100%);
  padding: 4rem 0 7rem;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  margin: 0.25rem 0 1rem;
}
.hero__lede {
  font-size: 1.2rem;
  max-width: 30rem;
  color: var(--ink);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0 1.5rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Hero logo */
.hero__art { display: flex; justify-content: center; }
.hero__logo {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(120, 90, 0, 0.28));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Wave divider */
.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.wave svg { width: 100%; height: 90px; }
.wave path { fill: var(--cream); }

/* ===== About ===== */
.about { background: var(--cream); }
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about__text h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.about__text p { color: var(--ink-soft); margin-bottom: 1rem; }
.about__signature {
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
  color: var(--ink) !important;
  font-weight: 700;
}
.ingredients {
  display: grid;
  gap: 1.25rem;
  list-style: none;
}
.ingredient {
  background: var(--white);
  border: 2px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 6px 16px rgba(160, 120, 0, 0.08);
  transition: transform 0.15s ease;
}
.ingredient:hover { transform: translateX(6px); }
.ingredient__icon { font-size: 2.2rem; flex-shrink: 0; }
.ingredient h3 { font-size: 1.2rem; }
.ingredient p { color: var(--ink-soft); font-size: 0.95rem; }

/* ===== Menu ===== */
.menu { background: var(--cream-2); }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
/* Single-item menu: one centered card */
.menu__grid--single {
  grid-template-columns: minmax(0, 340px);
  justify-content: center;
}
.menu-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid var(--cream-2);
  box-shadow: 0 8px 20px rgba(160, 120, 0, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card--featured {
  border-color: var(--lemon-deep);
  background: linear-gradient(180deg, #fffdf0, #fff7cf);
  transform: scale(1.04);
}
.menu-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.menu-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--lemon);
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.menu-card h3 { font-size: 1.5rem; }
.menu-card__size { color: var(--ink-soft); font-weight: 700; margin: 0.2rem 0 0.75rem; }
.menu-card__price {
  font-family: "Baloo 2", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--lemon-deep);
}
.menu-card__desc { color: var(--ink-soft); margin-top: 0.5rem; font-size: 0.95rem; }
.menu__note { text-align: center; margin-top: 2.25rem; font-weight: 700; }
.menu__note a { color: var(--lemon-deep); text-decoration: underline; }

/* ===== Catering ===== */
.catering { background: var(--cream); }
.catering__includes {
  text-align: center;
  margin: 2.25rem auto 0;
  max-width: 640px;
  background: var(--white);
  border: 2px dashed var(--lemon-deep);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 1.02rem;
}
.catering__cta { text-align: center; margin-top: 1.75rem; }

/* ===== Find Us ===== */
.find-us { background: var(--cream); }
.find-us__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}
.find-us__text h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.find-us__text p { color: var(--ink-soft); margin-bottom: 1.25rem; }
.find-us__details {
  list-style: none;
  margin-bottom: 1.75rem;
  display: grid;
  gap: 0.6rem;
}
.find-us__details li { font-weight: 700; display: flex; gap: 0.6rem; align-items: center; }

.find-us__card {
  background: linear-gradient(160deg, var(--lemon), var(--lemon-deep));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.find-us__card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.find-us__card-text { color: var(--ink); font-weight: 600; margin-bottom: 1rem; }
.find-us__card .btn { margin-top: 0.5rem; }

/* ===== CTA ===== */
.cta {
  background: linear-gradient(160deg, var(--lemon-deep), var(--lemon));
  text-align: center;
}
.cta__inner { padding: 4.5rem 1.25rem; }
.cta h2 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
.cta p { font-size: 1.15rem; margin-bottom: 1.75rem; color: var(--ink); }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 0 1.5rem;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 253, 243, 0.15);
}
.footer__brand .brand__name { color: var(--lemon); }
.footer__brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer__brand .brand__name { display: inline; }
.footer__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.footer__tag { color: rgba(255, 253, 243, 0.7); font-size: 0.9rem; margin-top: 0.4rem; }
.footer__contact { text-align: right; }
.footer__contact a { color: var(--lemon); font-weight: 700; text-decoration: none; }
.footer__contact a:hover { text-decoration: underline; }
.footer__small { color: rgba(255, 253, 243, 0.7); font-size: 0.9rem; margin-top: 0.4rem; }
.social {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  justify-content: flex-end;
}
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 253, 243, 0.12);
  color: var(--lemon);
  transition: background 0.15s ease, transform 0.15s ease;
}
.social a:hover { background: var(--lemon); color: var(--ink); transform: translateY(-2px); }
.footer__copy { text-align: center; color: rgba(255, 253, 243, 0.6); font-size: 0.85rem; margin-top: 1.5rem; }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; margin-bottom: 1rem; }
  .hero__actions, .hero__badges { justify-content: center; }
  .about__inner, .find-us__inner { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: 1fr; max-width: 24rem; margin: 0 auto; }
  .menu-card--featured { transform: scale(1); }
  .menu-card--featured:hover { transform: translateY(-6px); }

  .nav__toggle { display: flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    flex-direction: column;
    gap: 0;
    background: var(--lemon);
    border-bottom: 2px solid rgba(58, 46, 18, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav__menu.open { max-height: 360px; }
  .nav__menu li { width: 100%; text-align: center; }
  .nav__menu li a { display: block; padding: 0.9rem; }

  .footer__contact { text-align: left; }
  .social { justify-content: flex-start; }
}

/* ===== Catering inquiry modal ===== */
.inquiry {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.inquiry[hidden] { display: none; }
.inquiry__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 46, 18, 0.55);
  backdrop-filter: blur(3px);
}
.inquiry__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(58, 46, 18, 0.35);
  padding: 2.5rem 2rem 1.75rem;
  animation: inquiryPop 0.25s ease;
}
@keyframes inquiryPop {
  from { transform: translateY(12px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.inquiry__close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.inquiry__close:hover { color: var(--ink); }
.inquiry__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--cream-2);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.inquiry__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--lemon), var(--lemon-deep));
  transition: width 0.3s ease;
}
.inquiry__stage { min-height: 200px; }
.inquiry__step {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--lemon-deep);
  margin-bottom: 0.5rem;
}
.inquiry__label {
  display: block;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.inquiry__help { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1rem; }
.inquiry__help a { color: var(--lemon-deep); font-weight: 700; }
.inquiry__input {
  width: 100%;
  font: inherit;
  font-size: 1.1rem;
  padding: 0.75rem 0.9rem;
  border: 2px solid var(--cream-2);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  margin-top: 0.5rem;
}
.inquiry__input:focus {
  outline: none;
  border-color: var(--lemon-deep);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.25);
}
textarea.inquiry__input { resize: vertical; }
.inquiry__choices { display: grid; gap: 0.6rem; margin-top: 0.75rem; }
.inquiry__choice {
  text-align: left;
  font: inherit;
  font-weight: 700;
  padding: 0.85rem 1rem;
  border: 2px solid var(--cream-2);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
}
.inquiry__choice:hover { border-color: var(--lemon-deep); transform: translateX(3px); }
.inquiry__choice.is-selected { border-color: var(--lemon-deep); background: var(--cream-2); }
.inquiry__error { color: #c0392b; font-size: 0.9rem; font-weight: 700; min-height: 1.2em; margin-top: 0.5rem; }
.inquiry__nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.inquiry__nav .inquiry__next { margin-left: auto; }
.inquiry__hint { text-align: right; color: var(--ink-soft); font-size: 0.8rem; margin-top: 0.6rem; }
.inquiry__done { text-align: center; padding: 1rem 0; }
.inquiry__done-icon { font-size: 3rem; }
.inquiry__done h3 { font-size: 1.8rem; margin: 0.5rem 0; }
.inquiry__done p { color: var(--ink-soft); }

@media (max-width: 560px) {
  .inquiry__panel { padding: 2.25rem 1.25rem 1.5rem; }
  .inquiry__label { font-size: 1.3rem; }
}

/* Narrow phones: shorten the header button label so it fits the top bar */
@media (max-width: 480px) {
  .nav__inquiry-full { display: none; }
  .nav__inquiry-short { display: inline; }
  .brand { font-size: 1.15rem; }
  .brand__logo { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}
