/* =========================================================================
   ALOHA BOWL & BITES - brand foundation
   Colours + atmosphere sampled from the business card / logo.
   Type: Fredoka (rounded display) · Pacifico (script accent) · Nunito (body)
   Built on the spirit of the Venloop editorial system (generous space,
   photo-first, restrained chrome) but with Aloha's own playful, rounded,
   tropical identity.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Pacifico&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* ===== BRAND CORE (from the logo) ===== */
  --orange:        #F08019;   /* primary - energy, CTA, the bowl */
  --orange-700:    #D96A0A;   /* hover / press */
  --orange-300:    #F8B26A;
  --orange-100:    #FCE3C7;
  --orange-50:     #FDF2E4;   /* warm tint surface */

  --teal:          #1E7378;   /* "Bowl & Bites" script, contrast */
  --teal-900:      #0E4448;   /* deepest - panels, footer, ink */
  --teal-800:      #135256;
  --teal-700:      #196066;
  --teal-300:      #7FB4B7;
  --teal-100:      #D7E8E8;

  --cyan:          #34B5C1;   /* palm fronds, fresh accent */
  --cyan-300:      #8AD7DE;
  --cyan-100:      #DDF2F4;

  --lime:          #A6C93C;   /* little leaves, garnish */
  --lime-300:      #CCE08A;

  /* ===== NEUTRALS / SURFACES ===== */
  --ink:           #143E41;   /* body text - warm dark teal */
  --ink-2:         #426A6D;   /* secondary text */
  --ink-3:         #6E8F91;   /* meta / captions */
  --rule:          #DCE7E7;   /* hairline */
  --paper:         #FFFFFF;
  --sky:           #EAF3F4;   /* soft light blue-grey - the card background */
  --sky-2:         #F4FAFA;   /* lighter wash */
  --cream:         #FBF5E9;   /* warm cream from the sticker */

  /* ===== WHATSAPP ===== */
  --wa:            #25D366;
  --wa-700:        #1da851;

  /* ===== TYPE ===== */
  --font-display: 'Fredoka', 'Nunito', system-ui, sans-serif;
  --font-script:  'Pacifico', cursive;
  --font-body:    'Nunito', system-ui, -apple-system, sans-serif;

  /* fluid scale */
  --fs-xs:   13px;
  --fs-sm:   15px;
  --fs-base: 17px;
  --fs-lg:   19px;
  --fs-xl:   22px;
  --fs-2xl:  clamp(24px, 2.4vw, 30px);
  --fs-3xl:  clamp(28px, 3.4vw, 42px);
  --fs-4xl:  clamp(34px, 5vw, 58px);
  --fs-5xl:  clamp(33px, 5.5vw, 62px);

  /* ===== SPACE ===== */
  --section-y:   clamp(56px, 8vw, 116px);
  --container:   1200px;
  --pad:         clamp(18px, 4vw, 44px);

  /* ===== RADII (rounded + friendly, like the logo) ===== */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   38px;
  --r-pill: 999px;

  /* ===== SHADOW ===== */
  --sh-1: 0 2px 8px rgba(14, 68, 72, 0.07);
  --sh-2: 0 8px 24px rgba(14, 68, 72, 0.10);
  --sh-3: 0 20px 48px rgba(14, 68, 72, 0.16);
  --sh-cta: 0 10px 24px rgba(240, 128, 25, 0.34);
  --sh-focus: 0 0 0 3px rgba(52, 181, 193, 0.55);

  --ease: cubic-bezier(0.2, 0, 0, 1);
}

/* ===== RESET / BASE ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--orange-700); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-900);
  margin: 0 0 .5em;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-5xl); font-weight: 700; }
h2 { font-size: var(--fs-4xl); font-weight: 700; }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
p  { margin: 0 0 1em; text-wrap: pretty; }
:focus-visible { outline: none; box-shadow: var(--sh-focus); border-radius: var(--r-sm); }
::selection { background: var(--orange); color: #fff; }

/* ===== LAYOUT ===== */
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-y); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ===== EYEBROW (script flourish) ===== */
.eyebrow {
  font-family: var(--font-script);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--orange);
  line-height: 1;
  margin: 0 0 .35em;
  display: inline-block;
  transform: rotate(-2deg);
}
.eyebrow.teal { color: var(--teal); }
.eyebrow.cyan { color: var(--cyan); }
.eyebrow.cream { color: var(--orange-300); }

.lead { font-size: var(--fs-lg); color: var(--ink-2); max-width: 62ch; }

/* ===== BUTTONS ===== */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  border: 2.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  transition: transform .12s var(--ease), background .15s var(--ease),
              box-shadow .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--orange); color: #fff; box-shadow: var(--sh-cta); }
.btn-primary:hover { background: var(--orange-700); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(240,128,25,.42); }

.btn-secondary { background: #fff; color: var(--teal-900); border-color: var(--teal-300); }
.btn-secondary:hover { color: var(--teal-900); border-color: var(--teal); transform: translateY(-2px); box-shadow: var(--sh-2); }

.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.45); backdrop-filter: blur(4px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); color:#fff; transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-700); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,211,102,.34); }

.btn-lg { padding: 18px 34px; font-size: var(--fs-lg); }
.btn-sm { padding: 11px 18px; font-size: var(--fs-sm); }

/* round icon button (phone) */
.icon-btn {
  width: 46px; height: 46px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--teal-300); background: #fff; color: var(--teal-900);
  transition: transform .12s var(--ease), border-color .15s var(--ease), background .15s var(--ease);
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { border-color: var(--teal); color: var(--teal-900); transform: translateY(-2px); }

/* ===== PALM-LEAF ATMOSPHERE PATTERN (subtle, like the card) ===== */
.palm-bg { position: relative; }
.palm-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%231E7378' stroke-width='3' stroke-linecap='round' opacity='0.5'%3E%3Cpath d='M40 30 q34 6 60 40 M40 30 q14 4 26 22 M40 30 q22 0 44 10 M40 30 q4 16 8 40'/%3E%3Cpath d='M205 150 q-34 6 -60 40 M205 150 q-14 4 -26 22 M205 150 q-22 0 -44 10 M205 150 q-4 16 -8 40'/%3E%3Cpath d='M150 60 q20 24 18 60 M150 60 q10 12 16 28 M150 60 q18 10 30 24'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 260px 260px;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.palm-bg > * { position: relative; z-index: 1; }

/* ===== WAVE DIVIDER ===== */
.wave { display: block; width: 100%; height: clamp(36px, 5vw, 64px); }

/* ===== IMAGE SLOTS (real <img>, cover-fitted) ===== */
.slot-wrap { position: relative; }
.img-slot {
  display: block;
  object-fit: cover;
  background: var(--sky);
}
.hero-slot { border-radius: 34px; }
.foodtruck-slot { border-radius: var(--r-lg); }
.stevie-slot { border-radius: var(--r-lg); }
.gal-slot { border-radius: 20px; }
/* menu images sit flush at the top of a clipped card - no own radius needed */

/* ===== CARDS ===== */
.card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-1); transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }

/* ===== PILL TAGS ===== */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 500; font-size: var(--fs-sm);
  padding: 7px 15px; border-radius: var(--r-pill);
  background: var(--cyan-100); color: var(--teal-800);
}
.tag.orange { background: var(--orange-50); color: var(--orange-700); }
.tag.lime { background: #EEF4DA; color: #5C7016; }

/* ===== REVEAL ON SCROLL (only hides when JS is active) ===== */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* utilities */
.grid { display: grid; gap: clamp(18px, 2.5vw, 28px); }
.stack-sm > * + * { margin-top: 10px; }
.muted { color: var(--ink-2); }

/* anchor offset under sticky header */
section[id], main { scroll-margin-top: 88px; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 1000;
  background: var(--teal-900); color:#fff; padding: 10px 16px; border-radius: var(--r-pill);
}
.skip-link:focus { left: 12px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow .2s var(--ease), background .2s var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-1); background: rgba(255,255,255,.94); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { height: 44px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: .98; }
.brand-aloha { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--orange); letter-spacing: .01em; }
.brand-sub { font-family: var(--font-script); font-size: 14px; color: var(--teal); margin-top: 1px; }

.nav-desktop { display: none; gap: clamp(14px, 1.8vw, 30px); }
.nav-desktop a {
  font-family: var(--font-display); font-weight: 500; font-size: var(--fs-base);
  color: var(--teal-900); padding: 6px 2px; position: relative;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px;
  background: var(--orange); border-radius: 3px; transform: scaleX(0); transform-origin: left;
  transition: transform .2s var(--ease);
}
.nav-desktop a:hover { color: var(--teal-900); }
.nav-desktop a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cta { display: none; }

.hamburger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; border-radius: 14px; border: 2px solid var(--rule);
  background: #fff; cursor: pointer; padding: 0 11px;
}
.hamburger span { height: 2.6px; background: var(--teal-900); border-radius: 3px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.6px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: #fff; border-bottom: 1px solid var(--rule);
  padding: 18px var(--pad) 26px; box-shadow: var(--sh-2);
  transform: translateY(-12px); opacity: 0; transition: transform .24s var(--ease), opacity .24s var(--ease);
}
.mobile-menu:not([hidden]) { display: block; }
.mobile-menu.open { transform: none; opacity: 1; }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-xl);
  color: var(--teal-900); padding: 12px 0; border-bottom: 1px solid var(--rule);
}
.mobile-menu-actions { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu-actions .btn { width: 100%; }
.mobile-menu-contact { display: flex; gap: 12px; }
.mobile-menu-contact .btn { flex: 1; }
.scrim { position: fixed; inset: 0; background: rgba(14,68,72,.4); z-index: 98; }
.scrim:not([hidden]) { display: block; }

/* ============ HERO ============ */
.hero { background: linear-gradient(180deg, var(--sky-2), var(--sky)); padding-block: clamp(40px, 6vw, 84px) clamp(48px, 7vw, 96px); overflow: hidden; }
.hero-grid { display: grid; gap: clamp(28px, 4vw, 56px); align-items: center; }
.hero-copy h1 { margin-bottom: .35em; }
.hl { color: var(--orange); }
.hero .lead { margin-bottom: 1.4em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.trust-inline { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 20px; padding: 0; margin: 0; }
.trust-inline li { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 500; font-size: var(--fs-sm); color: var(--teal-800); }
.trust-inline svg { width: 17px; height: 17px; color: var(--orange); background: var(--orange-50); border-radius: 50%; padding: 3px; }

.hero-slot-wrap { position: relative; }
.hero-slot { width: 100%; height: auto; aspect-ratio: 5 / 4; box-shadow: var(--sh-3); }
.hero-mascot { position: absolute; width: clamp(78px, 13vw, 124px); left: -18px; bottom: -26px; transform: rotate(-8deg); filter: drop-shadow(0 8px 16px rgba(14,68,72,.22)); pointer-events: none; }
.hero-badge {
  position: absolute; top: -18px; right: -10px; background: var(--orange); color: #fff;
  border-radius: var(--r-pill); padding: 12px 20px; box-shadow: var(--sh-cta); transform: rotate(5deg);
  text-align: center; line-height: 1.05;
}
.hero-badge strong { font-family: var(--font-script); display: block; font-size: 22px; font-weight: 400; }
.hero-badge span { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ============ SECTION HEAD ============ */
.section-head { max-width: 640px; margin: 0 auto clamp(32px, 4vw, 52px); }
.section-head .lead { margin-bottom: 0; }

/* ============ MENU ============ */
.menu-grid { grid-template-columns: 1fr; }
.menu-slot { width: 100%; height: auto; aspect-ratio: 4 / 3; }
.menu-body { padding: 22px 24px 26px; }
.menu-body h3 { margin: 12px 0 8px; }
.menu-body p { margin: 0; color: var(--ink-2); }
.menu-note { margin-top: clamp(26px, 3vw, 40px); font-size: var(--fs-sm); }

/* ============ CATERING (HART) ============ */
.catering { background: var(--teal-900); color: #fff; overflow: hidden; padding-block: var(--section-y); }
.catering h2 { color: #fff; }
.catering .palm-bg::before, .catering.palm-bg::before { stroke: #fff; }
.catering.palm-bg::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%2334B5C1' stroke-width='3' stroke-linecap='round' opacity='0.4'%3E%3Cpath d='M40 30 q34 6 60 40 M40 30 q14 4 26 22 M40 30 q22 0 44 10 M40 30 q4 16 8 40'/%3E%3Cpath d='M205 150 q-34 6 -60 40 M205 150 q-14 4 -26 22 M205 150 q-22 0 -44 10 M205 150 q-4 16 -8 40'/%3E%3Cpath d='M150 60 q20 24 18 60 M150 60 q10 12 16 28 M150 60 q18 10 30 24'/%3E%3C/g%3E%3C/svg%3E"); opacity: .55; }
.catering-grid { display: grid; gap: clamp(32px, 4vw, 56px); align-items: center; }
.lead-light { font-size: var(--fs-lg); color: rgba(255,255,255,.86); max-width: 54ch; margin-bottom: 1.4em; }
.usp-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 13px; }
.usp-list li { display: flex; align-items: flex-start; gap: 12px; font-size: var(--fs-base); color: rgba(255,255,255,.94); }
.usp-ic { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.usp-ic svg { width: 15px; height: 15px; }
.catering-events { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.event-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-md); padding: 20px 18px; }
.event-ic { display: inline-flex; width: 44px; height: 44px; border-radius: 14px; background: var(--cyan); color: var(--teal-900); align-items: center; justify-content: center; margin-bottom: 12px; }
.event-ic svg { width: 24px; height: 24px; }
.event-card h4 { color: #fff; font-size: var(--fs-lg); margin: 0 0 4px; }
.event-card p { color: rgba(255,255,255,.72); font-size: var(--fs-sm); margin: 0; }

/* ============ FOODTRUCK ============ */
.foodtruck { background: var(--sky); }
.foodtruck-grid { display: grid; gap: clamp(28px, 4vw, 52px); align-items: center; }
.foodtruck-slot { width: 100%; height: auto; aspect-ratio: 4 / 3; box-shadow: var(--sh-2); }
.foodtruck-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

/* ============ OVER STEVIE ============ */
.stevie-grid { display: grid; gap: clamp(28px, 4vw, 52px); align-items: center; }
.stevie-copy p { color: var(--ink-2); }
.stevie-slot { width: 100%; height: auto; aspect-ratio: 4 / 5; box-shadow: var(--sh-2); }
.signature { font-family: var(--font-script); font-size: 32px; color: var(--orange); margin: 0; }

/* ============ REVIEWS + GALLERY ============ */
.reviews { background: var(--sky-2); }
.reviews-grid { grid-template-columns: 1fr; margin-bottom: clamp(30px, 4vw, 48px); }
.review { background: #fff; border-radius: var(--r-lg); padding: 26px 26px 22px; margin: 0; box-shadow: var(--sh-1); }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 17px; margin-bottom: 10px; }
.review p { font-size: var(--fs-lg); color: var(--ink); margin: 0 0 14px; }
.review footer { font-family: var(--font-display); font-weight: 600; color: var(--teal); font-size: var(--fs-sm); }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gal-slot { width: 100%; height: 100%; }
.gal { aspect-ratio: 1 / 1; }
.gallery-note { margin-top: 26px; }
.ig-link, .footer-ig { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; }
.ig-link svg, .footer-ig svg { width: 20px; height: 20px; }

/* ============ CONTACT ============ */
.contact-section { background: linear-gradient(180deg, var(--orange-50), var(--cream)); }
.contact-head { max-width: 640px; margin: 0 auto clamp(30px, 4vw, 48px); }
.contact-grid { display: grid; gap: clamp(22px, 3vw, 36px); align-items: start; }
.catering-form { padding: clamp(22px, 3vw, 34px); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--teal-900); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: var(--fs-base); color: var(--ink);
  padding: 13px 15px; border: 2px solid var(--rule); border-radius: var(--r-sm); background: #fff;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease); width: 100%;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: var(--sh-focus); }
.field input.err, .field select.err { border-color: #E0573B; box-shadow: 0 0 0 3px rgba(224,87,59,.18); }
.form-submit { width: 100%; margin-top: 6px; }
.form-hint { text-align: center; font-size: var(--fs-sm); margin: 12px 0 0; }
.form-success { text-align: center; padding: 18px 8px 6px; }
.form-success .success-ic { display: inline-flex; width: 58px; height: 58px; border-radius: 50%; background: var(--orange); color: #fff; align-items: center; justify-content: center; margin-bottom: 12px; }
.form-success .success-ic svg { width: 30px; height: 30px; }
.form-success h3 { margin: 0 0 6px; }
.form-success p { margin: 0; color: var(--ink-2); }

.contact-direct { background: #fff; border-radius: var(--r-lg); padding: clamp(22px, 3vw, 30px); box-shadow: var(--sh-1); }
.contact-direct h3 { margin: 0 0 18px; }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--rule); }
.contact-line:last-child { border-bottom: 0; }
.contact-ic { flex: none; width: 46px; height: 46px; border-radius: 14px; background: var(--cyan-100); color: var(--teal); display: inline-flex; align-items: center; justify-content: center; }
.contact-ic.wa { background: #E4F9EC; color: var(--wa-700); }
.contact-ic svg { width: 22px; height: 22px; }
.contact-line span:last-child { display: flex; flex-direction: column; line-height: 1.25; }
.contact-line strong { font-family: var(--font-display); font-weight: 600; color: var(--teal-900); font-size: var(--fs-base); }
.contact-line em { font-style: normal; color: var(--ink-2); font-size: var(--fs-sm); }
.contact-line:hover strong { color: var(--orange-700); }

/* ============ FOOTER ============ */
.site-footer { background: var(--teal-900); color: rgba(255,255,255,.82); overflow: hidden; padding-top: clamp(44px, 6vw, 72px); }
.site-footer.palm-bg::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cg fill='none' stroke='%2334B5C1' stroke-width='3' stroke-linecap='round' opacity='0.4'%3E%3Cpath d='M40 30 q34 6 60 40 M40 30 q14 4 26 22 M40 30 q22 0 44 10 M40 30 q4 16 8 40'/%3E%3Cpath d='M205 150 q-34 6 -60 40 M205 150 q-14 4 -26 22 M205 150 q-22 0 -44 10 M205 150 q-4 16 -8 40'/%3E%3C/g%3E%3C/svg%3E"); opacity: .4; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
.footer-logo-chip { background: #fff; border-radius: var(--r-md); padding: 16px 20px; display: inline-block; box-shadow: var(--sh-2); }
.footer-logo-chip img { height: 92px; width: auto; }
.footer-tag { margin: 16px 0 0; max-width: 38ch; color: rgba(255,255,255,.72); font-size: var(--fs-sm); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: #fff; font-size: var(--fs-lg); margin: 0 0 6px; }
.footer-col a { color: rgba(255,255,255,.8); }
.footer-col a:hover { color: var(--orange-300); }
.footer-ig { color: rgba(255,255,255,.8); }
.footer-cta-box { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-md); padding: 24px; }
.footer-cta-box h4 { color: #fff; margin: 0 0 6px; }
.footer-cta-box p { color: rgba(255,255,255,.72); font-size: var(--fs-sm); margin: 0 0 16px; }
.footer-bottom { display: flex; flex-direction: column; gap: 6px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: var(--fs-xs); color: rgba(255,255,255,.55); }

/* ============ MOBILE STICKY CTA ============ */
.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: flex; gap: 10px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  padding: 9px; border-radius: var(--r-pill); box-shadow: var(--sh-3);
  transform: translateY(140%); transition: transform .3s var(--ease);
}
.mobile-cta.show { transform: none; }
.mobile-cta-wa { flex: none; }
.mobile-cta-main { flex: 1; }

/* ============ RESPONSIVE ============ */
@media (min-width: 600px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; }
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .catering-grid { grid-template-columns: 1.1fr .9fr; }
  .foodtruck-grid { grid-template-columns: 1fr 1fr; }
  .stevie-grid { grid-template-columns: .9fr 1.1fr; }
  .contact-grid { grid-template-columns: 1.4fr 1fr; }
  .foodtruck .foodtruck-media { order: -1; }
}
@media (min-width: 1000px) {
  .nav-desktop { display: flex; }
  .header-cta { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-cta { display: none; }
}
@media (min-width: 1100px) {
  .hero-slot { aspect-ratio: 1 / 1; }
}
