/* ============================================================
   Kona Poké — site styles
   Implemented from "Kona Poke Site.dc.html" design handoff.
   Brand: teal #008390 · cream #FBF6EC · ink #16302F · coral #FF6B5B
   Fonts: Jost (display/UI) · Mulish (body)
   ============================================================ */

:root {
  --accent: #008390;
  --accent-light: #00a0a6;
  --teal-soft: #5fd6d4;
  --cream: #FBF6EC;
  --ink: #16302F;
  --coral: #FF6B5B;
  --order-url: "https://konapoke.com/locations";
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
/* Make the HTML hidden attribute authoritative — class/ID display rules
   (e.g. .cat-thanks/.cat-step display:flex) must not override [hidden]. */
[hidden] { display: none !important; }

.jost { font-family: 'Jost', sans-serif; }

/* ---- keyframes ---- */
@keyframes konaFade { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes konaScroll { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

/* ============================================================
   Shared buttons
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; cursor: pointer;
  font-family: 'Jost', sans-serif; text-transform: uppercase; border: none; }

/* nav order pill */
.btn-order-nav {
  font-weight: 600; font-size: 14px; letter-spacing: 0.03em; color: #fff;
  background: var(--accent); padding: 11px 22px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 6px 18px rgba(0,131,144,0.32);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-order-nav:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,131,144,0.4); }

/* big teal CTA (hero primary, catering teaser, etc.) */
.btn-solid {
  font-weight: 600; font-size: 16px; letter-spacing: 0.02em; color: #fff;
  background: var(--accent); padding: 16px 32px; border-radius: 999px;
  box-shadow: 0 12px 30px -10px rgba(0,131,144,0.55);
  transition: transform .15s ease;
}
.btn-solid:hover { transform: translateY(-3px); }

/* hero primary (slightly larger) */
.btn-hero {
  font-weight: 600; font-size: 17px; letter-spacing: 0.02em; color: #fff;
  background: var(--accent); padding: 17px 34px; border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0,131,144,0.45);
  transition: transform .15s ease;
}
.btn-hero:hover { transform: translateY(-3px); }

/* hero glass / ghost */
.btn-ghost {
  font-weight: 500; font-size: 17px; letter-spacing: 0.02em; color: #fff;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255,255,255,0.5); padding: 15.5px 30px; border-radius: 999px;
  transition: background .15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.26); }

/* teal outline pill (View Full Menu) */
.btn-outline {
  font-weight: 600; font-size: 15px; letter-spacing: 0.03em; color: var(--accent);
  border: 1.5px solid var(--accent); padding: 13px 26px; border-radius: 999px;
  white-space: nowrap; transition: all .15s ease; background: transparent;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* white CTA on dark (rewards, banner) */
.btn-white {
  font-weight: 600; font-size: 16px; letter-spacing: 0.02em; color: #063b3a;
  background: #fff; padding: 16px 32px; border-radius: 999px;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
  transition: transform .15s ease;
}
.btn-white:hover { transform: translateY(-3px); }
.rewards-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* teal-outline-on-white (gift card check balance) */
.btn-outline-white {
  font-weight: 500; font-size: 16px; letter-spacing: 0.02em; color: var(--accent);
  background: #fff; border: 1.5px solid var(--accent); padding: 14.5px 28px;
  border-radius: 999px; transition: all .15s ease;
}
.btn-outline-white:hover { background: var(--accent); color: #fff; }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 13px clamp(20px, 5vw, 56px);
  background: rgba(251,246,236,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,131,144,0.14);
}
.site-header .brand { display: flex; align-items: center; }
.site-header .brand img { height: 52.27px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 22px; }
.nav-link {
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink);
  text-decoration: none; white-space: nowrap; transition: color .15s ease;
}
.nav-link:hover { color: var(--accent); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; border-radius: 10px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 600px; width: 100%;
  overflow: hidden; background: #063b3a;
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 1; transform-origin: 50% 50%; backface-visibility: hidden; will-change: transform;
}
.hero .scrim-v {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,46,45,0.326) 0%, rgba(5,46,45,0.078) 22%, rgba(5,46,45,0.326) 52%, rgba(5,46,45,0.611) 100%);
}
.hero .scrim-h {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(5,46,45,0.553) 0%, rgba(5,46,45,0.326) 42%, rgba(5,46,45,0.078) 74%, rgba(5,46,45,0) 100%);
}
.hero-content {
  position: absolute; left: 0; right: 0; bottom: 96px;
  padding: 0 clamp(20px, 5vw, 64px); z-index: 3;
}
.hero-inner { max-width: 780px; animation: konaFade .9s ease both; }
.hero-badge {
  position: absolute; top: clamp(88px, 11vh, 102px); left: 0; right: 0;
  width: max-content; max-width: calc(100% - 40px); margin-left: auto; margin-right: auto;
  z-index: 3; display: flex; align-items: center; gap: 9px; padding: 8px 18px;
  border-radius: 999px; background: rgba(255,255,255,0.16); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.28); text-align: center;
  animation: konaFade .9s ease both;
}
.hero-badge .trophy { font-size: 15px; line-height: 1; }
.hero-badge span:last-child {
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 13px;
  letter-spacing: 0.12em; word-spacing: -1px; text-transform: uppercase; color: #fff;
}
.hero-cities { white-space: nowrap; }
.hero-cities a { color: #fff; text-decoration: none; transition: opacity .15s ease; }
.hero-cities a:hover { opacity: 0.7; }
#heroHeadline {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: clamp(38px, 6vw, 82px); line-height: 1.02; letter-spacing: -0.01em;
  color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.35);
  transition: opacity .45s ease;
}
#heroHeadline .em { font-weight: 600; }
.hero p {
  font-size: clamp(17px, 2vw, 21px); line-height: 1.5; color: rgba(255,255,255,0.92);
  margin-top: 22px; max-width: 540px; text-shadow: 0 2px 14px rgba(0,0,0,0.4);
  max-height: 240px; overflow: hidden;
  transition: opacity .4s ease, max-height .45s ease, margin-top .45s ease;
}
/* hero subhead only appears on the beach clip — collapsed otherwise */
.hero p.is-hidden { opacity: 0; max-height: 0; margin-top: 0; pointer-events: none; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }

.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  margin-left: 6px;
}
.scroll-cue span.lbl {
  font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
}
.scroll-cue .mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.55); border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-cue .mouse span { width: 3px; height: 7px; border-radius: 2px; background: #fff; animation: konaScroll 1.6s ease-in-out infinite; }
@media (max-width: 768px) {
  .scroll-cue, .hero-actions .btn-ghost { display: none; }
  .hero-badge { padding: 7px 14px; gap: 7px; }
  .hero-badge span:last-child { font-size: 11px; line-height: 1.25; letter-spacing: 0.05em; word-spacing: 0; }
}

/* ============================================================
   Reviews ticker (slim continuous scroll right below the hero)
   ============================================================ */
.review-ticker {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  overflow: hidden;
  /* transparent — show the hero video through. No frosted blur (it read as grey);
     light text + strong shadow keep the reviews readable over the video. */
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.review-ticker-track {
  display: flex; align-items: center; width: max-content;
  padding: 9px 0;
  animation: reviewTicker 120s linear infinite; /* duration tuned by JS for constant speed */
}
.review-ticker:hover .review-ticker-track { animation-play-state: paused; }
/* each review is a two-line block: quote on top, source + stars + name below */
.rt-item {
  display: inline-flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 3px; white-space: nowrap; font-size: 14px; color: rgba(255,255,255,0.96);
  text-shadow: 0 1px 3px rgba(0,0,0,0.85), 0 0 10px rgba(0,0,0,0.5);
}
.rt-quote { font-style: italic; line-height: 1.3; }
.rt-meta { display: inline-flex; align-items: center; gap: 8px; align-self: flex-end; }
.rt-src { display: inline-flex; align-items: center; flex: none; }
.rt-src svg { display: block; }
.rt-yelp {
  font-family: 'Mulish', sans-serif; font-weight: 700; font-size: 13px;
  color: #FF6A5A; letter-spacing: -0.01em; line-height: 1;
}
.rt-stars { color: #FFC107; font-size: 11px; letter-spacing: 1px; flex: none; }
.rt-who {
  font-family: 'Jost', sans-serif; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 12px; color: var(--teal-soft);
}
.rt-sep { color: rgba(255,255,255,0.4); font-size: 7px; margin: 0 24px; flex: none; }
@keyframes reviewTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .review-ticker-track { animation: none; } }

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; }
.wrap { max-width: 1180px; margin: 0 auto; }
.pad { padding: clamp(40px, 5.5vw, 72px) clamp(20px, 5vw, 64px); }
/* tighter gap between the Sides and Drinks sections */
#sides { padding-bottom: clamp(28px, 4vw, 52px); }
#drinks { padding-top: clamp(28px, 4vw, 52px); }
.pad-locations { padding: clamp(40px, 5.5vw, 72px) clamp(20px, 5vw, 64px); }
.bg-cream { background: var(--cream); }
.bg-white { background: #fff; border-top: 1px solid rgba(0,131,144,0.1); }
.bg-deep { background: linear-gradient(180deg, #06403F 0%, #063b3a 100%); overflow: hidden; }

.eyebrow {
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent);
}
.eyebrow.coral { color: var(--coral); }
.eyebrow.teal-soft { color: var(--teal-soft); }

.h2 {
  font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: clamp(36px, 5.5vw, 66px); line-height: 1.02; color: var(--ink); margin-top: 14px;
}
.h2--sm { font-size: clamp(34px, 5vw, 62px); line-height: 1.04; }
.h2 .em { font-weight: 600; color: var(--accent); }
.h2.on-dark { color: #fff; }
.h2.on-dark .em { color: #fff; }

.lead { font-size: 18px; line-height: 1.6; color: #4a625f; margin-top: 16px; }
.lead.on-dark { color: rgba(255,255,255,0.82); }

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

/* striped photo placeholders (match the prototype's “drop in real photos” cards) */
.ph {
  background: repeating-linear-gradient(45deg, #f1f3ea, #f1f3ea 13px, #e9ecdf 13px, #e9ecdf 26px);
  display: flex; align-items: center; justify-content: center;
}
.ph-cap {
  position: absolute; font-family: 'Mulish', monospace; font-size: 11px;
  letter-spacing: 0.06em; color: #9aa89a;
}

/* glow blobs in deep sections */
.glow { position: absolute; border-radius: 50%; pointer-events: none; }
.glow-teal { background: radial-gradient(circle, rgba(0,131,144,0.5), transparent 70%); }
.glow-coral { background: radial-gradient(circle, rgba(255,107,91,0.22), transparent 70%); }

/* ============================================================
   Signature bowls
   ============================================================ */
.sig-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.sig-head .col { max-width: 620px; }
.sig-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
  justify-content: center; gap: 22px; margin-top: 42px;
}
.bowl-card {
  display: flex; flex-direction: column; background: #fff; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(0,131,144,0.1); box-shadow: 0 16px 40px -28px rgba(0,72,71,0.5);
  transition: transform .18s ease, box-shadow .18s ease;
}
.bowl-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -26px rgba(0,72,71,0.55); }
.bowl-photo { position: relative; height: 208px; overflow: hidden; }
.bowl-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.bowl-tag {
  position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 13px; border-radius: 999px;
}
.bowl-photo .ph-cap { bottom: 12px; right: 14px; }
.bowl-emoji { font-size: 46px; opacity: 0.85; }
.bowl-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.bowl-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.bowl-title-row h3 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 24px; color: var(--ink); }
.bowl-cal { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 13px; color: var(--accent); white-space: nowrap; }
.bowl-desc { font-size: 14.5px; line-height: 1.55; color: #62786f; margin-top: 10px; flex: 1; }

/* ============================================================
   Drinks
   ============================================================ */
.boba-frame {
  margin-top: 38px; border-radius: 30px; overflow: hidden; background: #fff;
  box-shadow: 0 30px 70px -28px rgba(0,72,71,0.35); border: 1px solid rgba(0,131,144,0.12);
}
.boba-frame img { width: 100%; height: auto; }
/* expandable drink-category accordion (native <details>) */
.drink-accordion { max-width: 720px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 12px; }
.drink-acc { background: var(--cream); border: 1px solid rgba(0,131,144,0.14); border-radius: 18px; overflow: hidden; }
.drink-acc summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px; padding: 15px 20px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 19px; color: var(--ink);
}
.drink-acc summary::-webkit-details-marker { display: none; }
.drink-acc summary:hover { background: rgba(0,131,144,0.05); }
.drink-acc-ico { width: 42px; height: 42px; flex: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 21px; }
.drink-acc-name { flex: 1; }
.drink-acc-chev { font-size: 22px; line-height: 1; color: var(--accent); transition: transform .25s ease; }
.drink-acc[open] .drink-acc-chev { transform: rotate(180deg); }
.drink-acc-list { list-style: none; margin: 0; padding: 0 22px 18px 76px; display: flex; flex-direction: column; gap: 10px; }
.drink-acc-list li { position: relative; font-size: 16px; color: #4a625f; }
.drink-acc-list li::before { content: '•'; position: absolute; left: -18px; color: var(--accent); }

/* Build-your-own bowl options — reuses the .drink-acc accordion shell */
.byo-block { margin-top: 60px; }
.byo-head { margin-bottom: 4px; }
.byo-accordion .drink-acc { background: #fff; } /* white cards pop on the cream section */
.byo-rule { flex: none; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); background: rgba(0,131,144,0.10); padding: 4px 11px; border-radius: 999px; }
.byo-grid { list-style: none; margin: 0; padding: 2px 20px 20px; display: flex; flex-wrap: wrap; gap: 9px; }
.byo-item { display: inline-flex; align-items: center; font-family: 'Mulish', sans-serif; font-size: 14.5px; color: #3f5754; background: var(--cream); border: 1px solid rgba(0,131,144,0.12); border-radius: 999px; padding: 7px 15px; }
.byo-cta { text-align: center; margin-top: 32px; }
@media (max-width: 480px) { .byo-rule { display: none; } }

/* reusable photo menu cards (treats, tacos, sides) */
.food-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 38px; }
.food-grid--narrow { max-width: 740px; margin-left: auto; margin-right: auto; }
.food-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(0,131,144,0.1);
  border-radius: 22px; overflow: hidden; box-shadow: 0 16px 40px -28px rgba(0,72,71,0.5);
  transition: transform .18s ease, box-shadow .18s ease;
}
.food-card:hover { transform: translateY(-6px); box-shadow: 0 28px 50px -26px rgba(0,72,71,0.55); }
.food-photo { height: 208px; overflow: hidden; }
.food-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.food-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.food-body h3 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 21px; color: var(--ink); }
.food-body p { font-size: 14px; line-height: 1.5; color: #62786f; margin-top: 7px; }
.card-order {
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 16px; align-self: flex-start;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--accent); text-decoration: none; transition: color .15s ease;
}
.card-order:hover { color: var(--ink); }

.addins { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; }
.addins .label {
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 15px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink);
}
.addin {
  display: inline-flex; align-items: center; gap: 9px; background: var(--cream);
  border: 1px solid rgba(0,131,144,0.2); border-radius: 999px; padding: 9px 18px 9px 9px;
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 14.5px; color: var(--ink);
}
.addin .swatch { width: 24px; height: 24px; border-radius: 50%; }

/* ============================================================
   Catering teaser
   ============================================================ */
.split { display: grid; gap: 48px; align-items: center; }
.catering-split { grid-template-columns: 1.05fr 0.95fr; }
.pill-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 22px; }
.pill-label { font-family: 'Jost', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.pill-tag {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  border: 1px solid rgba(0,131,144,0.2); border-radius: 999px; padding: 8px 16px;
  font-family: 'Jost', sans-serif; font-weight: 500; font-size: 14px; color: var(--ink);
}
.catering-photo {
  position: relative; border-radius: 28px; overflow: hidden; height: 380px;
  background: repeating-linear-gradient(45deg, #eef0e8, #eef0e8 14px, #e7eadf 14px, #e7eadf 28px);
  border: 1px solid rgba(0,131,144,0.12); display: flex; align-items: center; justify-content: center;
}
.catering-photo .big-emoji { font-size: 64px; opacity: 0.85; }
.catering-photo .ph-cap { bottom: 16px; left: 0; right: 0; text-align: center; }

/* ============================================================
   Rewards
   ============================================================ */
.rewards-split { grid-template-columns: 1fr 0.85fr; gap: 52px; }
.perk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; max-width: 520px; }
.perk { display: flex; gap: 12px; align-items: flex-start; }
.perk .ico { width: 40px; height: 40px; flex: none; border-radius: 11px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.perk h3 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 16px; color: #fff; }
.perk p { font-size: 13.5px; color: rgba(255,255,255,0.65); margin-top: 3px; line-height: 1.45; }
.rewards-card-wrap { display: flex; justify-content: center; }
@media (max-width: 768px) { .rewards-card-wrap { display: none; } }
.rewards-card {
  width: 300px; max-width: 100%; border-radius: 24px; padding: 26px;
  background: linear-gradient(155deg, #00a0a6 0%, #008390 100%);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,0.55);
}
.rewards-card .top { display: flex; align-items: center; justify-content: space-between; }
.rewards-card .top img { height: 30px; width: auto; filter: brightness(0) invert(1); }
.rewards-card .top span { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.rewards-card .pts { margin-top: 36px; }
.rewards-card .pts .n { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 46px; color: #fff; line-height: 1; }
.rewards-card .pts .u { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 14px; color: rgba(255,255,255,0.8); margin-left: 8px; }
.rewards-card .bar { margin-top: 14px; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.25); overflow: hidden; }
.rewards-card .bar > div { width: 62%; height: 100%; background: #fff; border-radius: 999px; }
.rewards-card .note { font-family: 'Mulish', sans-serif; font-size: 13px; color: rgba(255,255,255,0.85); margin-top: 12px; }

/* ============================================================
   Gift cards
   ============================================================ */
.gift-split { grid-template-columns: 0.9fr 1.1fr; gap: 52px; }
.gift-visual { display: flex; justify-content: center; }
.gift-card {
  width: 360px; max-width: 100%; aspect-ratio: 1.6 / 1; border-radius: 22px; padding: 26px;
  background: linear-gradient(150deg, #063b3a 0%, #008390 100%);
  box-shadow: 0 30px 60px -24px rgba(0,72,71,0.6);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.gift-card .blob { position: absolute; right: -40px; bottom: -40px; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,0.06); }
.gift-card .top { display: flex; align-items: center; justify-content: space-between; }
.gift-card .top img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.gift-card .top span { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
.gift-card .name { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 26px; letter-spacing: 0.02em; color: #fff; }
.gift-card .tagline { font-family: 'Mulish', sans-serif; font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }
.gift-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ============================================================
   Reviews / rotating testimonials  (light section, right under hero)
   ============================================================ */
.pad-reviews { padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 64px); }
.reviews-top { text-align: center; max-width: 720px; margin: 0 auto; }

.rating-badge-lite {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 22px;
  background: var(--cream); border: 1px solid rgba(0,131,144,0.18);
  border-radius: 999px; padding: 10px 20px;
}
.rating-badge-lite .rating-num { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 24px; line-height: 1; color: var(--ink); }
.rating-stars { font-size: 17px; letter-spacing: 1px; color: #FFC107; }
.rating-src { display: inline-flex; align-items: center; gap: 7px; font-family: 'Jost', sans-serif; font-weight: 500; font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: #4a625f; }
.rating-src svg { display: block; }

.reviews-locations { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.review-loc-btn {
  display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.03em;
  text-transform: uppercase; color: var(--accent); background: rgba(0,131,144,0.06);
  border: 1px solid rgba(0,131,144,0.22); padding: 12px 22px; border-radius: 999px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.review-loc-btn:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.review-loc-btn:hover .star { color: #fff; }
.review-loc-btn .star { color: #FFC107; font-size: 16px; }

/* ============================================================
   Locations
   ============================================================ */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 42px; background: rgba(0,131,144,0.05); border: 1px solid rgba(0,131,144,0.18); border-radius: 28px; padding: clamp(18px, 3vw, 30px); }
.loc-card {
  display: flex; flex-direction: column; background: #fff;
  border-radius: 22px; overflow: hidden; border: 2px solid var(--accent);
  box-shadow: 0 14px 36px -26px rgba(0,72,71,0.5); transition: transform .18s ease, box-shadow .18s ease;
}
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 26px 48px -24px rgba(0,72,71,0.55); }
.loc-map {
  height: 180px; overflow: hidden; border-bottom: 1px solid rgba(0,131,144,0.10); background: #e8f1f0;
}
.loc-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.loc-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.loc-head h3 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 22px; color: var(--ink); }
.loc-head h3 a { color: inherit; text-decoration: none; }
.loc-head h3 a:hover { color: var(--accent); }
.loc-tag { font-size: 13.5px; color: #8a9a93; margin-top: 3px; }
.loc-more { display: inline-block; margin-top: 8px; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; color: var(--accent); text-decoration: none; }
.loc-more:hover { text-decoration: underline; }
.loc-info { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.loc-row {
  display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.45;
  color: #4a5f57; text-decoration: none;
}
.loc-row svg { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 1px; color: var(--accent); stroke: var(--accent); }
a.loc-row { transition: color .15s ease; }
a.loc-row:hover { color: var(--accent); }
.loc-hours span { color: #4a5f57; font-weight: 400; }
.hrs-open { color: #2f8f6b; font-weight: 700; }
.hrs-closed { color: #c0492f; font-weight: 700; }
.loc-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 20px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13.5px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent); text-decoration: none;
}
.loc-link:hover { color: var(--ink); }
.loc-actions { margin-top: auto; padding-top: 18px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.loc-actions .loc-link { margin-top: 0; padding-top: 0; }
.loc-dir {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 12.5px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--accent); text-decoration: none;
  border: 1.5px solid rgba(0,131,144,0.3); border-radius: 999px; padding: 7px 14px;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.loc-dir svg { width: 14px; height: 14px; }
.loc-dir:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============================================================
   Banner strip
   ============================================================ */
.banner { position: relative; height: clamp(220px, 32vw, 380px); overflow: hidden; }
.banner img { width: 100%; height: 100%; object-fit: cover; }
.banner-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; padding: 0 clamp(20px, 6vw, 80px);
  background: linear-gradient(90deg, rgba(6,59,58,0.78) 0%, rgba(6,59,58,0.2) 60%, rgba(6,59,58,0) 100%);
}
.banner-overlay .col { max-width: 520px; }
.banner-overlay h2 { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(28px, 4vw, 48px); line-height: 1.05; color: #fff; }
.banner-overlay h2 .em { font-weight: 600; }
.banner-overlay .btn-white { margin-top: 20px; box-shadow: 0 12px 30px rgba(0,0,0,0.25); padding: 15px 30px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #063b3a; padding: clamp(48px, 7vw, 80px) clamp(20px, 5vw, 64px) 34px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 36px; align-items: flex-start; justify-content: space-between; }
.footer-brand { max-width: 300px; }
.footer-brand img { height: 50px; width: auto; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,0.7); margin-top: 16px; }
.socials { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.social {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 12.5px; letter-spacing: 0.04em;
  text-transform: uppercase; color: #fff; text-decoration: none; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18); padding: 9px 15px; border-radius: 999px; transition: background .15s ease;
}
.social svg { width: 15px; height: 15px; flex: none; }
.social:hover { background: rgba(0,131,144,0.6); }
.footer-cols { display: flex; flex-wrap: wrap; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 13px; }
.footer-col .col-head {
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal-soft); margin-bottom: 3px;
}
.footer-col a { font-size: 15px; color: rgba(255,255,255,0.82); text-decoration: none; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1180px; margin: 34px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
}
.footer-bottom span { font-size: 13.5px; color: rgba(255,255,255,0.55); }

/* ============================================================
   Catering page (catering.html)
   ============================================================ */
@keyframes konaPop { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

.cat-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #06403F 0%, #063b3a 60%, #052e2d 100%);
  padding: clamp(92px, 11vw, 110px) clamp(20px, 5vw, 64px) clamp(34px, 5vw, 54px);
}
.cat-hero-inner { position: relative; }
.cat-back {
  display: inline-flex; align-items: center; gap: 8px; font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7);
  text-decoration: none; margin-bottom: 22px; transition: color .15s ease;
}
.cat-back:hover { color: #fff; }
.cat-eyebrow {
  display: block; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--teal-soft);
}
.cat-title { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(42px, 7vw, 86px); line-height: 0.96; color: #fff; margin-top: 14px; }
.cat-title .em { font-weight: 600; }
.cat-sub { font-size: clamp(17px, 2vw, 20px); line-height: 1.55; color: rgba(255,255,255,0.85); margin-top: 18px; max-width: 580px; }
.cat-policy { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 14px; letter-spacing: 0.03em; color: var(--teal-soft); margin-top: 14px; }

.cat-build { padding: clamp(48px, 6vw, 72px) clamp(20px, 5vw, 64px) clamp(64px, 9vw, 110px); }
.cat-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
.cat-steps { display: flex; flex-direction: column; gap: 34px; }
#catStepsMain, #catStepsDetails { display: flex; flex-direction: column; gap: 34px; }
.cat-back { align-self: flex-start; background: none; border: none; padding: 0; cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 14px; letter-spacing: 0.02em; color: var(--accent); }
.cat-back:hover { text-decoration: underline; }
.cat-step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.cat-stepnum { width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 14px; color: #fff; }
.cat-step-head h2 { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 21px; letter-spacing: 0.02em; color: var(--ink); }
.cat-step-note { font-size: 13px; color: #8aa09b; }

.pkg-list { display: flex; flex-direction: column; gap: 14px; }
.pkg-card { width: 100%; cursor: pointer; text-align: left; background: #fff; border-radius: 18px; padding: 20px 22px; border: 2px solid rgba(0,131,144,0.14); box-shadow: 0 8px 24px -20px rgba(0,72,71,0.5); transition: all .15s ease; outline: none; }
.pkg-card:hover { border-color: rgba(0,131,144,0.4); }
.pkg-card.on { border-color: var(--accent); box-shadow: 0 16px 36px -22px rgba(0,131,144,0.7); }
.pkg-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.pkg-head { display: flex; align-items: center; gap: 10px; }
.pkg-radio { width: 20px; height: 20px; flex: none; border-radius: 50%; border: 2px solid rgba(0,131,144,0.4); display: flex; align-items: center; justify-content: center; }
.pkg-radio i { width: 10px; height: 10px; border-radius: 50%; background: transparent; display: block; }
.pkg-card.on .pkg-radio { border-color: var(--accent); }
.pkg-card.on .pkg-radio i { background: var(--accent); }
.pkg-name { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 19px; color: var(--ink); }
.pkg-blurb { font-size: 14px; line-height: 1.5; color: #62786f; margin-top: 8px; padding-left: 30px; }
.pkg-price { text-align: right; white-space: nowrap; }
.pkg-price b { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 24px; color: var(--accent); }
.pkg-price span { display: block; font-size: 12px; color: #8aa09b; letter-spacing: 0.04em; }

.guest-stepper { display: flex; align-items: center; gap: 11.9px; background: #fff; border: 1.5px solid rgba(0,131,144,0.18); border-radius: 13.6px; padding: 11.9px 15.3px; width: fit-content; max-width: 100%; }
.guest-btn { width: 37.4px; height: 37.4px; flex: none; border-radius: 10.2px; border: none; background: #eef3f2; color: var(--accent); font-size: 22.1px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; transition: background .15s ease; }
.guest-btn:hover { background: #dcebe9; }
.guest-btn--plus { background: var(--accent); color: #fff; font-size: 20.4px; }
.guest-btn--plus:hover { background: #006d77; }
.guest-input { width: 76.5px; text-align: center; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 25.5px; color: var(--ink); border: none; outline: none; background: transparent; }
.guest-input::-webkit-outer-spin-button, .guest-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.guest-label { font-family: 'Jost', sans-serif; font-size: 11.9px; color: #8aa09b; margin-left: 5.1px; }

.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 12px; }
.addon-chip { width: 100%; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border-radius: 14px; padding: 15px 17px; border: 2px solid rgba(0,131,144,0.14); transition: all .15s ease; outline: none; }
.addon-chip.on { border-color: var(--accent); box-shadow: 0 12px 26px -20px rgba(0,131,144,0.7); }
.addon-left { display: flex; align-items: center; gap: 10px; }
.addon-box { width: 20px; height: 20px; flex: none; border-radius: 6px; border: 2px solid rgba(0,131,144,0.4); background: transparent; transition: all .15s ease; }
.addon-chip.on .addon-box { background: var(--accent); border-color: var(--accent); }
.addon-name { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 15px; color: var(--ink); text-align: left; }
.addon-price { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 14px; color: var(--accent); white-space: nowrap; }

.cat-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cat-field { display: flex; flex-direction: column; gap: 7px; }
.cat-field--full { grid-column: 1 / -1; }
.cat-field span { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #62786f; }
.cat-field input, .cat-field textarea { width: 100%; font-family: 'Mulish', sans-serif; font-size: 15px; color: var(--ink); background: #fff; border: 1.5px solid rgba(0,131,144,0.22); border-radius: 12px; padding: 13px 15px; outline: none; transition: border-color .15s ease; }
.cat-field textarea { resize: vertical; }
.cat-field input:focus, .cat-field textarea:focus { border-color: var(--accent); }
.cat-field-note { font-family: 'Mulish', sans-serif; font-size: 12px; color: #8aa09b; }

/* Delivery-address proximity verdict */
.cat-addr-status { margin-top: 8px; font-family: 'Mulish', sans-serif; font-size: 12.5px; line-height: 1.45; }
.cat-addr-status.ok { color: #1f7a44; }
.cat-addr-status.warn { color: #b06a00; }
.cat-addr-status.fee { color: #126c7a; }
.cat-addr-status strong { font-weight: 700; }
.cat-sum-delivery { color: #126c7a; }
/* Google Places autocomplete dropdown (classic) — sit above the form */
.pac-container { z-index: 100000; border-radius: 10px; margin-top: 4px; box-shadow: 0 10px 30px rgba(0,0,0,.14); font-family: 'Mulish', sans-serif; }
/* Google Places type-ahead element (current API).
   color-scheme:light fixes dark-mode rendering. The HOST draws NO border/background,
   so it never double-boxes with the widget's own field — only ONE box is ever drawn:
   the widget's native box on older builds, or ::part(input-container) on current builds.
   width/min-width/box-sizing keep it inside its grid column (no spill into the summary). */
.cat-field gmp-place-autocomplete, .cat-field .cat-pac {
  display: block; width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box;
  color-scheme: light;
  font-family: 'Mulish', sans-serif; font-size: 15px; color: var(--ink);
}
.cat-field gmp-place-autocomplete::part(input-container) {
  width: 100%; box-sizing: border-box;
  background: #fff; border: 1.5px solid rgba(0,131,144,0.22); border-radius: 12px; box-shadow: none;
}
.cat-field gmp-place-autocomplete:focus-within::part(input-container) { border-color: var(--accent); }
.cat-field gmp-place-autocomplete::part(input) {
  background: transparent; color: var(--ink);
  font-family: 'Mulish', sans-serif; font-size: 15px;
  border: none; box-shadow: none; padding: 13px 14px 13px 2px;
}

/* À la carte desserts & drinks */
.cat-items { display: flex; flex-direction: column; gap: 10px; }
.cat-rec-note { font-size: 13.5px; line-height: 1.55; color: #62786f; margin: 0 0 16px; }
.cat-rec-reset { background: none; border: none; padding: 0; font: inherit; color: var(--accent); font-weight: 600; text-decoration: underline; cursor: pointer; }
.cat-rec-reset:hover { color: var(--ink); }
.pop-pill { display: inline-block; vertical-align: middle; margin-left: 6px; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #000; background: rgba(245, 184, 28, 0.28); padding: 3px 9px; border-radius: 999px; line-height: 1.3; }
.cat-item-group { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-top: 10px; }
.cat-item-group:first-child { margin-top: 0; }
.cat-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: #fff; border-radius: 14px; padding: 13px 16px; border: 2px solid rgba(0,131,144,0.14); transition: border-color .15s ease, box-shadow .15s ease; }
.cat-item.on { border-color: var(--accent); box-shadow: 0 12px 26px -20px rgba(0,131,144,0.7); }
.cat-item-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cat-item-name { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 15.5px; color: var(--ink); }
.cat-item-meta { font-size: 12.5px; color: #8aa09b; }
.cat-item-suggest { align-self: flex-start; margin-top: 3px; padding: 0; background: none; border: none; cursor: pointer; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 12.5px; color: var(--accent); text-align: left; }
.cat-item-suggest:hover { text-decoration: underline; }
.cat-item-qty { display: flex; align-items: center; gap: 4px; flex: none; background: #f3f7f6; border-radius: 12px; padding: 5px; }
.qty-btn { width: 34px; height: 34px; flex: none; border-radius: 9px; border: none; background: #eef3f2; color: var(--accent); font-size: 20px; font-weight: 600; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.qty-btn:hover { background: #dcebe9; }
.qty-btn--plus { background: var(--accent); color: #fff; }
.qty-btn--plus:hover { background: #006d77; }
.qty-input { width: 40px; text-align: center; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); border: none; outline: none; background: transparent; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cat-summary { position: sticky; top: 90px; background: #fff; border-radius: 24px; padding: 28px; box-shadow: 0 30px 70px -32px rgba(0,72,71,0.5); border: 1px solid rgba(0,131,144,0.1); }
.cat-sum-brand { text-align: center; margin-bottom: 14px; }
.cat-sum-brand img { display: block; margin: 0 auto; width: auto; height: auto; max-width: 78%; max-height: 50px; }
.cat-sum-head { display: flex; align-items: center; justify-content: center; gap: 11px; }
.cat-sum-head img { height: 28px; width: auto; }
.cat-sum-head span { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.cat-sum-rows { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.cat-sum-line { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.cat-sum-pkg { font-size: 15px; color: var(--ink); font-weight: 600; }
.cat-sum-per { font-size: 14px; color: #62786f; white-space: nowrap; }
.cat-sum-addon { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.cat-sum-addon span { font-size: 14px; color: #62786f; }
.cat-sum-subtotal { border-top: 1px dashed rgba(0,131,144,0.22); padding-top: 12px; margin-top: 2px; }
.cat-sum-subtotal span { font-weight: 600; color: var(--ink); }
.cat-sum-calc { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; border-top: 1px dashed rgba(0,131,144,0.22); padding-top: 12px; font-size: 15px; color: var(--ink); }
.cat-total { margin-top: 18px; background: var(--cream); border-radius: 16px; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cat-total-label { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: #62786f; }
.cat-total-amt { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 34px; color: var(--accent); line-height: 1; }
.cat-fine { font-size: 12.5px; line-height: 1.5; color: #8aa09b; margin-top: 12px; }
.cat-submit { margin-top: 18px; width: 100%; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 16px; letter-spacing: 0.02em; text-transform: uppercase; color: #fff; border: none; border-radius: 14px; padding: 17px; background: var(--accent); cursor: pointer; box-shadow: 0 14px 30px -10px rgba(0,131,144,0.65); transition: transform .15s ease, opacity .15s ease; }
.cat-submit:hover:not(:disabled) { transform: translateY(-2px); }
.cat-submit:disabled { background: #9bb7b5; cursor: not-allowed; opacity: 0.8; box-shadow: none; }
.cat-hint { font-size: 12.5px; line-height: 1.5; color: #8aa09b; margin-top: 10px; text-align: center; }

.cat-thanks { padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 64px) clamp(72px, 10vw, 120px); min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.cat-thanks-inner { max-width: 640px; width: 100%; text-align: center; animation: konaFade .6s ease both; }
.cat-check { width: 88px; height: 88px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto; color: #fff; font-size: 42px; line-height: 1; box-shadow: 0 18px 40px -14px rgba(0,131,144,0.6); animation: konaPop .5s ease both; }
.cat-thx-title { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(34px, 5.5vw, 58px); line-height: 1.05; color: var(--ink); margin-top: 26px; }
.cat-thx-title .em { font-weight: 600; color: var(--accent); }
.cat-thx-lead { font-size: 18px; line-height: 1.6; color: #4a625f; margin-top: 16px; }
.cat-thx-lead strong { color: var(--ink); }
.cat-recap { margin-top: 34px; background: #fff; border-radius: 22px; padding: 26px 28px; text-align: left; box-shadow: 0 24px 60px -34px rgba(0,72,71,0.5); border: 1px solid rgba(0,131,144,0.1); }
.cat-recap-head { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.cat-recap-rows { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.cat-recap-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; border-bottom: 1px dashed rgba(0,131,144,0.2); padding-bottom: 11px; }
.cat-recap-row .k { font-family: 'Jost', sans-serif; font-weight: 500; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #8aa09b; white-space: nowrap; }
.cat-recap-row .v { font-size: 15px; font-weight: 600; color: var(--ink); text-align: right; }
.cat-recap-total { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 4px; margin-top: 12px; }
.cat-recap-total > span:first-child { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.cat-recap-total .cat-total-amt { font-size: 24px; }
.cat-thanks-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* Catering service-area chips */
.cat-areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(158px, 1fr)); gap: 14px; max-width: 900px; margin: 34px auto 0; }
.cat-area { display: flex; flex-direction: column; gap: 2px; text-align: center; background: var(--cream); border: 1px solid rgba(0,131,144,0.14); border-radius: 16px; padding: 18px 16px; text-decoration: none; transition: transform .12s ease, box-shadow .15s ease; }
.cat-area:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -22px rgba(0,72,71,0.5); }
.cat-area .city { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 18px; color: var(--ink); }
.cat-area:hover .city { color: var(--accent); }
.cat-area .note { font-size: 12.5px; color: #8a9a93; }

/* FAQ accordion (catering + reusable) */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 34px auto 0; }
.faq-item { background: #fff; border: 1px solid rgba(0,131,144,0.14); border-radius: 16px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; font-family: 'Jost', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '⌄'; font-size: 20px; line-height: 1; color: var(--accent); transition: transform .25s ease; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item summary:hover { background: rgba(0,131,144,0.04); }
.faq-item .faq-a { padding: 0 20px 18px; font-size: 15.5px; line-height: 1.65; color: #4a625f; }

/* ============================================================
   Responsive
   ============================================================ */
/* show the floating hero testimonial only where there's room beside the headline */
@media (max-width: 980px) {
  .rewards-split, .gift-split, .catering-split { grid-template-columns: 1fr; gap: 36px; }
  .gift-visual { order: -1; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; right: clamp(12px, 4vw, 24px);
    flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(251,246,236,0.97); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0,131,144,0.16); border-radius: 18px; padding: 14px;
    min-width: 220px; box-shadow: 0 24px 50px -20px rgba(0,72,71,0.4);
    opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(8px); }
  .main-nav .nav-link { padding: 11px 12px; border-radius: 10px; }
  .main-nav .nav-link:hover { background: rgba(0,131,144,0.08); }
  .main-nav .btn-order-nav { justify-content: center; margin-top: 6px; }
}

@media (max-width: 860px) {
  .perk-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .cat-summary { position: static; }
}

@media (max-width: 560px) {
  .hero-content { bottom: 84px; }
  .hero-actions .btn-hero, .hero-actions .btn-ghost { flex: 1 1 100%; justify-content: center; }
  .sig-head { align-items: flex-start; }
  .footer-cols { gap: 32px; }
  .cat-form { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .hero video { transition: none; }
}

/* ============================================================
   Order Online modal
   ============================================================ */
.order-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.order-modal[hidden] { display: none; }
.order-modal-backdrop { position: absolute; inset: 0; background: rgba(6,46,45,0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); animation: konaFade .2s ease both; }
.order-modal-card {
  position: relative; width: 100%; max-width: 430px; background: #fff; border-radius: 24px;
  padding: 30px 26px; box-shadow: 0 40px 90px -30px rgba(0,40,40,0.65);
  animation: orderPop .22s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes orderPop { from { opacity: 0; transform: translateY(14px) scale(.97); } to { opacity: 1; transform: none; } }
.order-modal-close {
  position: absolute; top: 14px; right: 15px; width: 34px; height: 34px; border: none;
  background: #f0f4f3; color: var(--ink); border-radius: 50%; font-size: 22px; line-height: 1;
  cursor: pointer; transition: background .15s ease;
}
.order-modal-close:hover { background: #e2eae8; }
.order-modal-title { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 22px; color: var(--ink); text-align: center; }
.order-modal-title .order-loc-name { color: var(--accent); }
.order-modal-sub { text-align: center; color: #62786f; font-size: 14.5px; margin-top: 5px; margin-bottom: 20px; }
.order-back {
  background: none; border: none; color: var(--accent); font-family: 'Jost', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: .02em; cursor: pointer; padding: 0; margin-bottom: 6px;
}
.order-back:hover { text-decoration: underline; }

.order-loc-list, .order-method-list, .order-platforms { display: flex; flex-direction: column; gap: 11px; }
.order-loc {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-align: left; width: 100%;
  background: #fff; border: 2px solid rgba(0,131,144,0.16); border-radius: 14px; padding: 14px 18px; cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.order-loc span { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); }
.order-loc small { font-size: 13px; color: #8aa09b; }
.order-method {
  display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; text-decoration: none;
  background: #fff; border: 2px solid rgba(0,131,144,0.16); border-radius: 14px; padding: 14px 18px; cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease;
}
.order-loc:hover, .order-method:hover { border-color: var(--accent); box-shadow: 0 12px 26px -20px rgba(0,131,144,0.7); transform: translateY(-1px); }
.order-method > svg, .order-method > img { width: 30px; height: 30px; flex: none; object-fit: contain; }
.order-method > svg { color: var(--accent); }
.order-method .om-txt { display: flex; flex-direction: column; }
.order-method .om-txt > span { font-family: 'Jost', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink); }
.order-method .om-txt small { font-size: 12.5px; color: #8aa09b; }

.order-plat {
  display: flex; align-items: center; justify-content: center; gap: 8px; height: 58px; border-radius: 14px;
  text-decoration: none; font-family: 'Jost', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: .01em;
  transition: transform .12s ease, box-shadow .15s ease;
}
.order-plat:hover { transform: translateY(-2px); }
.order-plat--uber { background: #000; color: #fff; gap: 4px; }
.order-plat--uber .ue-eats { color: #06c167; }
.order-plat--uber:hover { box-shadow: 0 16px 30px -16px rgba(0,0,0,.7); }
.order-plat--dd { background: #ff3008; color: #fff; }
.order-plat--dd:hover { box-shadow: 0 16px 30px -16px rgba(255,48,8,.65); }
.order-plat--pickup { background: var(--accent); color: #fff; height: 64px; }
.order-plat--pickup img { width: 30px; height: 30px; object-fit: contain; filter: brightness(0) invert(1); }
.order-plat--pickup:hover { background: var(--ink); box-shadow: 0 16px 30px -16px rgba(0,131,144,.6); }

/* ============================================================
   Accessibility (invisible to normal mouse use)
   ============================================================ */
/* Visible keyboard focus. :focus-visible only fires for keyboard/programmatic
   focus, never a mouse click — so the normal look is unchanged. This restores a
   focus indicator on elements that set outline:none (.pkg-card, .guest-input,
   .qty-input, .cat-field inputs, order-modal buttons, etc.). */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
/* skip-link destinations receive programmatic focus but shouldn't show a ring */
[tabindex="-1"]:focus { outline: none; }

/* Skip-to-content link — off-screen until a keyboard user tabs to it */
.skip-link {
  position: fixed; left: 8px; top: -60px; z-index: 1000;
  background: var(--accent); color: #fff; padding: 11px 18px; border-radius: 0 0 10px 10px;
  font-family: 'Jost', sans-serif; font-weight: 600; font-size: 14px; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; outline: 3px solid #fff; outline-offset: -3px; }

/* Screen-reader-only utility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
