/* =====================================================================
   Caribbean Food Shack — Design System
   A modern, warm, island-inspired stylesheet
   ===================================================================== */

:root {
  /* --- Brand palette (Caribbean sunset + sea) --- */
  --mango:      #FF6B35;   /* signature warm orange */
  --mango-deep: #E8501C;
  --papaya:     #F5B841;   /* gold */
  --hibiscus:   #E63956;   /* coral / flower pink-red */
  --lime:       #3FA34D;   /* palm green */
  --sea:        #12A6A6;   /* tropical teal */
  --sea-deep:   #0E7C87;
  --ocean:      #0B2B33;   /* deep night blue-green */
  --ocean-2:    #103C46;

  --sand:       #FDF6EC;   /* light cream background */
  --sand-2:     #FBEEDD;
  --shell:      #FFFFFF;
  --ink:        #1C1A17;   /* near-black text */
  --ink-soft:   #4B4640;
  --muted:      #8A837A;
  --line:       rgba(28, 26, 23, 0.10);

  /* --- Typography --- */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Nunito Sans", system-ui, -apple-system,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* --- Spacing / shape --- */
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(11, 43, 51, 0.06);
  --shadow: 0 18px 40px -18px rgba(11, 43, 51, 0.28);
  --shadow-lg: 0 40px 80px -30px rgba(11, 43, 51, 0.40);
  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 3rem);
  --nav-h: 74px;
}

/* --------------------------- Reset-ish --------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.075rem);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  color: var(--ocean);
}
p { margin: 0 0 1rem; }
::selection { background: var(--mango); color: #fff; }

/* --------------------------- Layout ----------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mango-deep);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--mango);
  border-radius: 2px;
}
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.text-center { text-align: center; }

/* --------------------------- Buttons ---------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary {
  background: linear-gradient(135deg, var(--mango) 0%, var(--hibiscus) 100%);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(230, 57, 86, 0.7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(230, 57, 86, 0.75); }
.btn--ghost {
  background: transparent;
  color: var(--ocean);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--ocean); background: rgba(11, 43, 51, 0.04); }
.btn--light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}
.btn--light:hover { background: #fff; color: var(--ocean); }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* --------------------------- Navbar ----------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav.is-scrolled {
  background: rgba(253, 246, 236, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.65rem; font-weight: 800; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__text b {
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--ocean);
  letter-spacing: -0.01em;
}
.brand__text span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mango-deep);
  font-weight: 700;
  margin-top: 3px;
}
/* nav is dark-friendly on transparent hero */
.nav:not(.is-scrolled) .brand__text b { color: #fff; }
.nav:not(.is-scrolled) .nav__links a { color: rgba(255,255,255,0.92); }
.nav:not(.is-scrolled) .nav__toggle span { background: #fff; }

.nav__links { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--mango);
  transition: width 0.25s ease;
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 0.8rem; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: none; background: transparent;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav__toggle span {
  display: block; height: 2.5px; width: 24px; margin-inline: auto;
  background: var(--ocean); border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------- Hero ------------------------------- */
.hero {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--ocean);
  color: #fff;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__bg .img-slot { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(11,43,51,0.92) 0%, rgba(11,43,51,0.55) 45%, rgba(11,43,51,0.15) 100%),
    linear-gradient(0deg, rgba(11,43,51,0.6) 0%, rgba(11,43,51,0) 45%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 640px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  backdrop-filter: blur(6px);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  margin-bottom: 1.1rem;
}
.hero h1 em { font-style: italic; color: var(--papaya); }
.hero__lead {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.5rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); }
.hero__stat b { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--papaya); }
.hero__stat span { font-size: 0.85rem; color: rgba(255,255,255,0.78); letter-spacing: 0.02em; }

/* --------------------------- Marquee ---------------------------- */
.marquee {
  background: var(--ocean);
  color: #fff;
  overflow: hidden;
  padding-block: 1.1rem;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.marquee__track {
  display: flex; gap: 3rem; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-display); font-size: 1.35rem; font-style: italic;
  color: rgba(255,255,255,0.92); white-space: nowrap;
}
.marquee__item::before { content: "✺"; color: var(--mango); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------- Image slot system ------------------ */
/* An <img> that, if the file is missing, is hidden and reveals a
   tasteful gradient placeholder underneath. See js/main.js. */
.img-slot {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sea) 0%, var(--ocean) 100%);
  isolation: isolate;
}
.img-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}
.img-slot .placeholder {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1rem; gap: 0.5rem; color: #fff;
  background-size: cover; background-position: center;
}
.img-slot .placeholder__icon { font-size: 2.4rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25)); }
.img-slot .placeholder__label {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.img-slot .placeholder__note {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  opacity: 0.75; font-weight: 700;
}
/* When a real image loads, we add .has-img to hide placeholder */
.img-slot.has-img .placeholder { opacity: 0; }
/* When no image, hide the broken <img> element entirely */
.img-slot.no-img img { display: none; }

/* --------------------------- Cards / grids ---------------------- */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.dish-card {
  background: var(--shell);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dish-card:hover .img-slot img { transform: scale(1.06); }
.dish-card .img-slot { border-radius: 0; aspect-ratio: 4/3; }
.dish-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.dish-card__tag {
  align-self: flex-start;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sea-deep); background: rgba(18,166,166,0.1);
  padding: 0.28rem 0.7rem; border-radius: var(--radius-pill); margin-bottom: 0.75rem;
}
.dish-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.dish-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.dish-card__foot {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; border-top: 1px solid var(--line);
}
.dish-card__price { font-family: var(--font-display); font-weight: 700; color: var(--mango-deep); font-size: 1.15rem; }
.dish-card__heat { font-size: 0.9rem; letter-spacing: 0.05em; }

/* Feature blurbs */
.feature { text-align: center; padding: 1.5rem; }
.feature__icon {
  width: 68px; height: 68px; margin: 0 auto 1.1rem;
  display: grid; place-items: center;
  border-radius: 20px; font-size: 1.9rem;
  background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(18,166,166,0.15));
  border: 1px solid var(--line);
}
.feature h3 { font-size: 1.3rem; }
.feature p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* --------------------------- Split / story ---------------------- */
.split {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media .img-slot { aspect-ratio: 5/6; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__badge {
  position: absolute; bottom: -22px; right: -18px;
  background: #fff; border-radius: var(--radius); padding: 1rem 1.3rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 0.8rem; max-width: 250px;
}
.split__badge b { font-family: var(--font-display); font-size: 1.7rem; color: var(--mango-deep); line-height: 1; }
.split__badge span { font-size: 0.82rem; color: var(--ink-soft); }
.split__list { list-style: none; margin: 1.4rem 0 2rem; padding: 0; display: grid; gap: 0.85rem; }
.split__list li { display: flex; gap: 0.75rem; align-items: flex-start; }
.split__list li::before {
  content: "✓"; flex: none; margin-top: 2px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--lime); color: #fff; font-size: 0.8rem; font-weight: 800;
  display: grid; place-items: center;
}

/* --------------------------- Sections bg ------------------------ */
.bg-sand { background: var(--sand-2); }
.bg-ocean { background: var(--ocean); color: #fff; }
.bg-ocean h2, .bg-ocean h3 { color: #fff; }
.bg-ocean .section-head p { color: rgba(255,255,255,0.8); }

/* --------------------------- Packages --------------------------- */
.pkg {
  background: var(--shell); border-radius: var(--radius-lg);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 2rem 1.9rem; display: flex; flex-direction: column;
  position: relative; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pkg--featured {
  background: linear-gradient(160deg, var(--ocean), var(--ocean-2));
  color: #fff; border-color: transparent; transform: scale(1.02);
}
.pkg--featured h3, .pkg--featured .pkg__price { color: #fff; }
.pkg--featured:hover { transform: scale(1.02) translateY(-6px); }
.pkg__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--mango), var(--hibiscus)); color: #fff;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.pkg h3 { font-size: 1.5rem; margin-bottom: 0.3rem; }
.pkg__desc { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.pkg--featured .pkg__desc { color: rgba(255,255,255,0.75); }
.pkg__price { font-family: var(--font-display); font-size: 2.4rem; color: var(--mango-deep); line-height: 1; }
.pkg__price small { font-size: 0.9rem; font-family: var(--font-body); color: var(--muted); font-weight: 600; }
.pkg--featured .pkg__price small { color: rgba(255,255,255,0.7); }
.pkg__list { list-style: none; margin: 1.3rem 0 1.8rem; padding: 0; display: grid; gap: 0.7rem; font-size: 0.95rem; }
.pkg__list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.pkg__list li::before { content: "✦"; color: var(--mango); flex: none; }
.pkg--featured .pkg__list li::before { color: var(--papaya); }
.pkg .btn { margin-top: auto; }

/* --------------------------- Testimonials ----------------------- */
.quote-card {
  background: var(--shell); border-radius: var(--radius-lg);
  padding: 2rem; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.2rem; height: 100%;
}
.quote-card__stars { color: var(--papaya); letter-spacing: 2px; }
.quote-card blockquote { margin: 0; font-size: 1.08rem; color: var(--ink); font-family: var(--font-display); font-style: italic; line-height: 1.45; }
.quote-card__who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.quote-card__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 800;
  background: linear-gradient(135deg, var(--sea), var(--mango));
}
.quote-card__who b { display: block; font-size: 0.98rem; }
.quote-card__who span { font-size: 0.82rem; color: var(--muted); }

/* --------------------------- Cuisine chips ---------------------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin-top: 0.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1.15rem; border-radius: var(--radius-pill);
  background: var(--shell); border: 1.5px solid var(--line);
  font-weight: 700; font-size: 0.95rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.chip:hover { transform: translateY(-2px); border-color: var(--mango); box-shadow: var(--shadow); }
.chip__dot { color: var(--mango); font-size: 0.7rem; line-height: 1; }
.chip--star { background: linear-gradient(135deg, var(--mango), var(--hibiscus)); color: #fff; border-color: transparent; }
.chip--star .chip__dot { color: #fff; }
.bg-ocean .chip { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.22); }
.bg-ocean .chip:hover { border-color: var(--papaya); }

/* --------------------------- Gallery ---------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.gallery .img-slot { aspect-ratio: 1; border-radius: var(--radius); }
.gallery .img-slot:nth-child(1) { grid-row: span 2; aspect-ratio: 1/2; }
.gallery .img-slot:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }

/* --------------------------- CTA band --------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--mango) 0%, var(--hibiscus) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.cta-band::before, .cta-band::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.cta-band::before { width: 260px; height: 260px; top: -80px; right: -60px; }
.cta-band::after { width: 180px; height: 180px; bottom: -70px; left: -40px; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,0.92); max-width: 52ch; margin-inline: auto; font-size: 1.1rem; }
.cta-band .btn--light { border-color: #fff; }

/* --------------------------- Forms ------------------------------ */
.form-card {
  background: var(--shell); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.86rem; color: var(--ink); }
.field label .req { color: var(--hibiscus); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--sand); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(18,166,166,0.12); background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
.form-success {
  display: none; background: rgba(63,163,77,0.12); border: 1.5px solid var(--lime);
  color: #226b2c; border-radius: 12px; padding: 1rem 1.2rem; font-weight: 600;
  margin-bottom: 1.2rem;
}
.form-success.show { display: block; }

/* --------------------------- Contact info ----------------------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ci-icon {
  width: 50px; height: 50px; flex: none; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(255,107,53,0.14), rgba(18,166,166,0.14));
  border: 1px solid var(--line);
}
.contact-list b { display: block; font-size: 1.02rem; }
.contact-list span, .contact-list a { color: var(--ink-soft); font-size: 0.96rem; }
.contact-list a:hover { color: var(--mango-deep); }

/* --------------------------- Menu page filter ------------------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.menu-tab {
  border: 1.5px solid var(--line); background: var(--shell);
  padding: 0.6rem 1.3rem; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.92rem; color: var(--ink-soft);
  transition: all 0.2s ease;
}
.menu-tab:hover { border-color: var(--mango); color: var(--mango-deep); }
.menu-tab.is-active {
  background: linear-gradient(135deg, var(--mango), var(--hibiscus));
  color: #fff; border-color: transparent;
}
.dish-card.is-hidden { display: none; }

/* --------------------------- Page hero (inner) ------------------ */
.page-hero {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--sea-deep) 100%);
  color: #fff; padding-top: calc(var(--nav-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  position: relative; overflow: hidden;
}
.page-hero__pattern { position: absolute; inset: 0; opacity: 0.16; z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5.5vw, 3.8rem); }
.page-hero p { color: rgba(255,255,255,0.88); max-width: 56ch; font-size: 1.12rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; letter-spacing: 0.02em; }
.breadcrumb a:hover { color: #fff; }

/* --------------------------- Footer ----------------------------- */
.footer { background: var(--ocean); color: rgba(255,255,255,0.78); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer .brand__text b { color: #fff; }
.footer__about { margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; }
.footer a:hover { color: var(--papaya); }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.2); font-size: 1.05rem;
  transition: all 0.2s ease;
}
.footer__social a:hover { background: var(--mango); border-color: var(--mango); color: #fff; transform: translateY(-2px); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.6rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}

/* --------------------------- Reveal anim ------------------------ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2,0.8,0.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --------------------------- Responsive ------------------------- */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { max-width: 460px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .img-slot:nth-child(1),
  .gallery .img-slot:nth-child(6) { grid-row: auto; grid-column: auto; aspect-ratio: 1; }
}
@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--sand); padding: 1rem var(--gutter) 2rem;
    box-shadow: var(--shadow); border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform 0.35s ease; z-index: -1;
  }
  body.menu-open .nav__links { transform: translateY(0); }
  .nav__links a { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--line); color: var(--ink) !important; }
  .nav:not(.is-scrolled) .nav__links a { color: var(--ink) !important; }
  .nav__cta .btn:not(.nav__toggle) { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .pkg--featured { transform: none; }
  .pkg--featured:hover { transform: translateY(-6px); }
  .hero { min-height: auto; padding-block: calc(var(--nav-h) + 3rem) 4rem; }
}
@media (max-width: 480px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
