/* =====================================================================
   FRESH PLATE — Premium Catering Website Template
   Author: Bizstartz Templates  |  Year: 2026
   ---------------------------------------------------------------------
   REBRAND: To customize this template for your brand, edit the
   :root variables below (colors + fonts), swap the logo text in the
   header of each HTML page, and update the contact details in the
   footer. No image files required — all visuals are CSS gradients,
   inline SVG, and emoji.
   ===================================================================== */

/* ----------------------------- TOKENS ------------------------------ */
:root {
  /* Brand palette — fresh green + warm cream + charcoal */
  --green:        #2f855a;   /* primary brand */
  --green-dark:   #276749;   /* hover / deep accents */
  --green-light:  #48bb78;   /* highlights */
  --green-soft:   #c6f6d5;   /* tints */
  --cream:        #fdf9f0;   /* warm page background */
  --cream-2:      #f6efe1;   /* alternate section bg */
  --charcoal:     #1f2724;   /* primary text */
  --muted:        #5c6b63;   /* secondary text */
  --gold:         #d69e2e;   /* warm accent */
  --white:        #ffffff;
  --line:         #e6e0d2;   /* borders */

  /* Typography */
  --font-head: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 14px 40px rgba(31, 39, 36, 0.10);
  --shadow-sm: 0 6px 18px rgba(31, 39, 36, 0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------- RESET ------------------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section { padding: 96px 0; }
.section--cream { background: var(--cream-2); }
.section--green {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
}
.section--green h2, .section--green h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.section--green .eyebrow { color: var(--green-soft); }

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section--green .section-head p { color: rgba(255,255,255,0.85); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(47, 133, 90, 0.30);
}
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--ghost:hover { background: var(--green); color: var(--white); }
.btn--light {
  background: var(--white);
  color: var(--green-dark);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.15); }

/* ----------------------------- HEADER ------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 249, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--charcoal);
}
.logo .logo-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  display: grid; place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.logo span { color: var(--green); }

.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--charcoal);
  position: relative;
  transition: var(--transition);
}
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--green);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--green); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--green); }

.header-cta { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: none; background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  display: block; height: 2.5px; width: 100%;
  background: var(--charcoal); border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ------------------------------ HERO ------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(72,187,120,0.18), transparent),
    radial-gradient(800px 600px at 0% 120%, rgba(214,158,46,0.12), transparent),
    var(--cream);
  padding: 96px 0 104px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  margin-bottom: 22px;
}
.hero h1 em { color: var(--green); font-style: normal; }
.hero p.lead {
  font-size: 1.18rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust {
  display: flex; align-items: center; gap: 22px;
  font-size: 0.92rem; color: var(--muted);
  flex-wrap: wrap;
}
.hero-trust strong { color: var(--charcoal); }
.hero-trust .stars { color: var(--gold); letter-spacing: 2px; }

/* Hero visual — layered gradient "plates" */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background: linear-gradient(140deg, var(--green-dark), var(--green-light));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 78%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, #f3ede0 60%, #e3dcc9);
  box-shadow: inset 0 8px 30px rgba(0,0,0,0.08), 0 20px 50px rgba(0,0,0,0.25);
}
.hero-visual .platter {
  position: relative;
  font-size: 6.5rem;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,0.18));
}
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
}
.hero-badge .hb-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center; font-size: 1.2rem;
}
.hero-badge b { display: block; font-size: 1rem; }
.hero-badge small { color: var(--muted); font-weight: 500; }
.hero-badge--tl { top: 24px; left: -22px; }
.hero-badge--br { bottom: 30px; right: -18px; }

/* ----------------------------- BANNER ------------------------------ */
.page-banner {
  position: relative;
  background:
    radial-gradient(900px 400px at 80% -20%, rgba(72,187,120,0.22), transparent),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--white);
  padding: 92px 0;
  text-align: center;
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 14px;
}
.page-banner p { color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.breadcrumb a:hover { color: var(--white); }

/* ----------------------------- CARDS ------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card .card-icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(135deg, var(--green-soft), #e8f8ef);
  display: grid; place-items: center;
  font-size: 1.8rem; margin-bottom: 20px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 1rem; }
.card ul.ticks { margin-top: 16px; }
.card ul.ticks li {
  position: relative; padding-left: 26px; margin-bottom: 8px;
  color: var(--muted); font-size: 0.96rem;
}
.card ul.ticks li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--green); font-weight: 700;
}

/* --------------------------- MENU PREVIEW -------------------------- */
.menu-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.menu-tile {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: var(--transition);
}
.menu-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-tile .tile-art {
  height: 170px;
  display: grid; place-items: center;
  font-size: 3.4rem;
}
.menu-tile .tile-body { padding: 22px 24px 26px; }
.menu-tile h3 { font-size: 1.22rem; margin-bottom: 8px; }
.menu-tile p { color: var(--muted); font-size: 0.96rem; margin-bottom: 12px; }
.menu-tile .price { font-family: var(--font-head); font-weight: 700; color: var(--green); }
.menu-tile .price span { color: var(--muted); font-weight: 500; font-size: 0.85rem; }

/* gradient art variants (reusable) */
.art-1 { background: linear-gradient(135deg, #c6f6d5, #9ae6b4); }
.art-2 { background: linear-gradient(135deg, #fefcbf, #f6e05e); }
.art-3 { background: linear-gradient(135deg, #fed7aa, #f6ad55); }
.art-4 { background: linear-gradient(135deg, #bee3f8, #90cdf4); }
.art-5 { background: linear-gradient(135deg, #fbb6ce, #f687b3); }
.art-6 { background: linear-gradient(135deg, #d6bcfa, #b794f4); }
.art-7 { background: linear-gradient(135deg, #b2f5ea, #4fd1c5); }
.art-8 { background: linear-gradient(135deg, #e9d8a6, #d4b483); }
.art-9 { background: linear-gradient(135deg, #c3e6cb, #82c99a); }

/* ----------------------------- WHY US ------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split .feature-list li {
  display: flex; gap: 18px; margin-bottom: 26px;
}
.feature-list .fl-icon {
  flex: 0 0 auto;
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center; font-size: 1.5rem;
}
.feature-list h4 { font-size: 1.14rem; margin-bottom: 5px; }
.feature-list p { color: var(--muted); font-size: 0.98rem; }

.media-block {
  border-radius: var(--radius);
  min-height: 420px;
  background: linear-gradient(140deg, var(--green-dark), var(--green-light));
  position: relative;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.media-block .big-emoji { font-size: 7rem; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2)); }
.media-block::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 80%, rgba(255,255,255,0.18), transparent 60%);
}

/* ----------------------------- STATS ------------------------------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--white);
}
.stat .label { margin-top: 10px; color: rgba(255,255,255,0.82); font-weight: 500; }

/* -------------------------- TESTIMONIAL ---------------------------- */
.testimonial {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.testimonial .quote-mark { font-size: 4rem; color: var(--green-soft); line-height: 0.5; font-family: var(--font-head); }
.testimonial blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 500;
  line-height: 1.5;
  margin: 24px 0 28px;
  color: var(--charcoal);
}
.testimonial .author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial .avatar {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: var(--white); display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
}
.testimonial .author b { display: block; }
.testimonial .author small { color: var(--muted); }

.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.testi-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px;
}
.testi-card .stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p { color: var(--charcoal); margin-bottom: 18px; font-size: 1.02rem; }
.testi-card .mini-author { display: flex; align-items: center; gap: 12px; }
.testi-card .mini-author .avatar { width: 44px; height: 44px; font-size: 1rem; }

/* ------------------------------ CTA -------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 26px;
  padding: 64px 56px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 90% -30%, rgba(255,255,255,0.18), transparent);
}
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* ----------------------------- ABOUT ------------------------------- */
.value-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-soft); color: var(--green-dark);
  padding: 7px 16px; border-radius: 50px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  margin: 0 8px 8px 0;
}

.chef-card { text-align: center; }
.chef-card .chef-photo {
  width: 100%; aspect-ratio: 3/3.4; border-radius: var(--radius);
  display: grid; place-items: center; font-size: 4.5rem; margin-bottom: 18px;
}
.chef-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.chef-card .role { color: var(--green); font-weight: 600; font-family: var(--font-head); font-size: 0.92rem; margin-bottom: 10px; }
.chef-card p { color: var(--muted); font-size: 0.95rem; }

.steps { counter-reset: step; }
.step-card { position: relative; padding-left: 0; }
.step-card .step-num {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green); color: var(--white);
  font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  display: grid; place-items: center; margin-bottom: 18px;
}
.step-card h4 { font-size: 1.18rem; margin-bottom: 10px; }
.step-card p { color: var(--muted); }

/* ----------------------------- MENUS ------------------------------- */
.menu-package {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.menu-package .pkg-head {
  padding: 30px 34px;
  color: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.pkg-head.head-1 { background: linear-gradient(135deg, var(--green-dark), var(--green)); }
.pkg-head.head-2 { background: linear-gradient(135deg, #2c5282, #3182ce); }
.pkg-head.head-3 { background: linear-gradient(135deg, #744210, #b7791f); }
.pkg-head.head-4 { background: linear-gradient(135deg, #702459, #b83280); }
.menu-package .pkg-head h3 { color: var(--white); font-size: 1.5rem; }
.menu-package .pkg-head .pkg-price {
  font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; text-align: right;
}
.menu-package .pkg-head .pkg-price span { display:block; font-size: 0.8rem; font-weight: 500; opacity: 0.85; }
.menu-package .pkg-body { padding: 30px 34px; }
.menu-package .pkg-body .pkg-desc { color: var(--muted); margin-bottom: 22px; }
.dish-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; }
.dish-cols li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px dashed var(--line);
}
.dish-cols li .dish-name { font-weight: 500; }
.dish-cols li .dish-note { color: var(--muted); font-size: 0.88rem; }
.menu-package .pkg-foot {
  padding: 22px 34px; background: var(--cream-2);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.menu-package .pkg-foot p { color: var(--muted); font-size: 0.92rem; margin: 0; }

.menu-note {
  text-align: center; color: var(--muted);
  max-width: 700px; margin: 40px auto 0; font-size: 0.95rem;
}

/* ----------------------------- GALLERY ----------------------------- */
.gallery-filters {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px; margin-bottom: 44px;
}
.filter-btn {
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem;
  padding: 10px 22px; border-radius: 50px;
  border: 1.5px solid var(--line); background: var(--white);
  color: var(--charcoal); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--green); color: var(--green); }
.filter-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  font-size: 3.6rem;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}
.gallery-item.tall { aspect-ratio: 4/5.2; }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow); }
.gallery-item .gi-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 18px 16px;
  background: linear-gradient(to top, rgba(31,39,36,0.78), transparent);
  color: var(--white);
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  opacity: 0; transform: translateY(10px); transition: var(--transition);
}
.gallery-item:hover .gi-caption { opacity: 1; transform: translateY(0); }
.gallery-item.is-hidden { display: none; }

/* ----------------------------- CONTACT ----------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start; }
.contact-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--font-head); font-weight: 600;
  font-size: 0.9rem; margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--charcoal);
  background: var(--cream); transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47,133,90,0.15); background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .error-msg { color: #c53030; font-size: 0.85rem; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c53030; }
.field.has-error .error-msg { display: block; }

.form-success {
  display: none;
  background: var(--green-soft); color: var(--green-dark);
  border-radius: var(--radius-sm); padding: 16px 18px;
  font-family: var(--font-head); font-weight: 600; margin-bottom: 22px;
}
.form-success.show { display: block; }

.contact-info .info-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px; margin-bottom: 20px;
}
.info-card .ic-row { display: flex; gap: 16px; margin-bottom: 18px; }
.info-card .ic-row:last-child { margin-bottom: 0; }
.info-card .ic-icon {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px;
  background: var(--green-soft); color: var(--green-dark);
  display: grid; place-items: center; font-size: 1.25rem;
}
.info-card .ic-row b { font-family: var(--font-head); display: block; margin-bottom: 2px; }
.info-card .ic-row span { color: var(--muted); font-size: 0.96rem; }

.map-placeholder {
  border-radius: var(--radius); overflow: hidden;
  min-height: 240px; border: 1px solid var(--line);
  background:
    repeating-linear-gradient(45deg, rgba(47,133,90,0.06) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, #e8f5ee, #d5ece0);
  display: grid; place-items: center; text-align: center; color: var(--green-dark);
  font-family: var(--font-head); font-weight: 600;
}
.map-placeholder .pin { font-size: 2.6rem; margin-bottom: 6px; }

/* FAQ-style accordion-less list reuse */
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 22px 26px; margin-bottom: 14px;
}
.faq-item h4 { font-size: 1.08rem; margin-bottom: 8px; }
.faq-item p { color: var(--muted); }

/* ----------------------------- FOOTER ------------------------------ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer .logo { color: var(--white); margin-bottom: 16px; }
.site-footer .logo span { color: var(--green-light); }
.footer-about p { font-size: 0.96rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: grid; place-items: center;
  font-size: 1.05rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--green); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a { font-size: 0.96rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.96rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 26px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 0.9rem;
}
.footer-bottom a:hover { color: var(--green-light); }

/* --------------------------- REVEAL ANIM --------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
/* Fallback: if JS disabled, show everything */
.no-js .reveal { opacity: 1; transform: none; }

/* ---------------------------- RESPONSIVE --------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .grid-4, .stats-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-badge--tl { left: 8px; }
  .hero-badge--br { right: 8px; }
}

@media (max-width: 760px) {
  .section { padding: 70px 0; }
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 78px 0 auto 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.35s ease;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 24px 20px; }
  .main-nav ul li { border-bottom: 1px solid var(--line); }
  .main-nav ul li:last-child { border-bottom: none; }
  .main-nav a { display: block; padding: 16px 0; }
  .main-nav a::after { display: none; }
  .header-cta .btn { display: none; }

  .grid-3, .grid-2, .menu-preview-grid, .testi-grid,
  .gallery-grid, .dish-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 26px; }
  .gallery-item.tall { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .grid-4, .stats-grid, .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
  .hero-badge { display: none; }
}
