/* ============================================================
   De Islands — de real Caribbean Food
   Design system: island-modern. Palette drawn from the logo.
   ============================================================ */

:root {
  --purple: #4b1257;
  --purple-deep: #2e0a38;
  --purple-ink: #23082b;
  --red: #e23124;
  --red-dark: #c02318;
  --yellow: #ffc917;
  --yellow-soft: #ffe38a;
  --green: #3e9b3a;
  --cream: #fff8ed;
  --cream-dark: #f7edda;
  --white: #ffffff;
  --ink: #2a1230;
  --ink-soft: #5d4a63;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 40px rgba(46, 10, 56, 0.10);
  --shadow-lift: 0 24px 60px rgba(46, 10, 56, 0.18);
  --font-display: "Lilita One", "Arial Black", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --wrap: 1180px;
}

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

html { scroll-behavior: smooth; }

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

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

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.5px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
}
.kicker::before {
  content: "";
  width: 34px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
}

.section-title { font-size: clamp(34px, 4.5vw, 52px); color: var(--purple); margin: 12px 0 14px; }
.section-sub { color: var(--ink-soft); max-width: 620px; font-size: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--yellow);
  color: var(--purple-ink);
  box-shadow: 0 12px 30px rgba(255, 201, 23, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255, 201, 23, 0.45); }
.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(226, 49, 36, 0.30);
}
.btn-red:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(226, 49, 36, 0.4); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-3px); }
.btn-outline-purple {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}
.btn-outline-purple:hover { background: var(--purple); color: var(--white); transform: translateY(-3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(46, 10, 56, 0.12);
  padding: 8px 0;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 62px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25)); transition: height .3s ease; }
.site-header.scrolled .brand img { height: 50px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  line-height: 1;
  transition: color .3s ease;
}
.brand-name small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: .85; }
.site-header.scrolled .brand-name,
.site-header.solid .brand-name { color: var(--purple); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--white);
  transition: background .2s ease, color .2s ease;
}
.site-header.scrolled .nav-links a,
.site-header.solid .nav-links a { color: var(--ink); }
.nav-links a:hover { background: rgba(255, 201, 23, 0.25); }
.nav-links a.active { background: var(--yellow); color: var(--purple-ink); }
.nav-links .nav-order {
  background: var(--red);
  color: var(--white) !important;
  margin-left: 8px;
  box-shadow: 0 8px 20px rgba(226, 49, 36, 0.35);
}
.nav-links .nav-order:hover { background: var(--red-dark); }

/* Header over light pages */
.site-header.solid { background: rgba(255, 248, 237, 0.92); backdrop-filter: blur(14px); box-shadow: 0 6px 30px rgba(46,10,56,0.10); }

@media (max-width: 1290px) { .brand-name { display: none; } }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  position: relative;
  z-index: 130;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
.site-header.scrolled .nav-toggle span, .site-header.solid .nav-toggle span { background: var(--purple); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, var(--purple-deep), var(--purple));
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 120;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { color: var(--white) !important; font-size: 22px; }
  .nav-links a.active { color: var(--purple-ink) !important; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--purple-deep);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/hero-bg.jpg") center / cover no-repeat;
  transform: scale(1.05);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 90% at 20% 40%, rgba(46, 10, 56, 0.92) 0%, rgba(46, 10, 56, 0.62) 55%, rgba(46, 10, 56, 0.34) 100%),
    linear-gradient(0deg, var(--cream) 0%, rgba(255,248,237,0) 14%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 130px; padding-bottom: 90px; }

.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 40px; }

.hero-script {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: clamp(20px, 2.6vw, 30px);
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 10px;
  text-shadow: 0 3px 0 rgba(0,0,0,0.25);
}
.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  text-shadow: 0 6px 0 rgba(0,0,0,0.22);
}
.hero h1 .accent { color: var(--yellow); }
.hero-tag {
  margin: 22px 0 34px;
  font-size: clamp(17px, 1.6vw, 21px);
  max-width: 560px;
  color: rgba(255,255,255,0.92);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-logo-side { display: flex; justify-content: center; }
.hero-logo-card { position: relative; text-align: center; }
.hero-logo-card img.hero-logo {
  width: min(360px, 70vw);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.45));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}
.est-badge {
  position: absolute;
  right: -6px; bottom: 6px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.15;
  padding: 16px 14px;
  border-radius: 50%;
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(8deg);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  border: 3px dashed rgba(255,255,255,0.6);
}

.hero-stats {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.stat-chip {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 12px 20px;
}
.stat-chip .num { font-family: var(--font-display); font-size: 24px; color: var(--yellow); }
.stat-chip .lbl { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; opacity: .85; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; z-index: 3;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.8);
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0);} 50% { transform: translate(-50%, 8px);} }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-tag { margin-inline: auto; }
  .hero-logo-side { order: -1; margin-bottom: -8px; }
  .hero-logo-card img.hero-logo { width: min(230px, 55vw); }
  .est-badge { width: 80px; height: 80px; font-size: 13px; }
  .hero .wrap { padding-top: 110px; }
}

/* ---------- Sections ---------- */
section.pad { padding: 96px 0; }
.section-head { margin-bottom: 48px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

/* ---------- Dish cards ---------- */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px;
}
.dish-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.dish-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.dish-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dish-card:hover .dish-media img { transform: scale(1.07); }
.dish-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
.dish-badge.gold { background: var(--yellow); color: var(--purple-ink); }
.dish-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dish-body h3 { color: var(--purple); font-size: 24px; }
.dish-body p { color: var(--ink-soft); font-size: 15.5px; flex: 1; }
.dish-price {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 20px;
}
.dish-price small { font-family: var(--font-body); font-weight: 600; color: var(--ink-soft); font-size: 13px; }

/* ---------- Story split ---------- */
.story { background: var(--purple-deep); color: var(--white); position: relative; overflow: hidden; }
.story .leaf-tex {
  position: absolute; inset: 0; opacity: .12; pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, var(--green) 0 60px, transparent 61px),
    radial-gradient(circle at 88% 80%, var(--yellow) 0 80px, transparent 81px),
    radial-gradient(circle at 90% 12%, var(--red) 0 46px, transparent 47px),
    radial-gradient(circle at 6% 88%, var(--yellow) 0 40px, transparent 41px);
  filter: blur(2px);
}
.story-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story .section-title { color: var(--white); }
.story .kicker { color: var(--yellow); }
.story p { color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.story-media { position: relative; }
.story-media .main-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/3.4;
  object-fit: cover;
  width: 100%;
}
.story-media .float-img {
  position: absolute;
  width: 46%;
  right: -18px; bottom: -34px;
  border-radius: var(--radius-md);
  border: 6px solid var(--purple-deep);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 1;
  object-fit: cover;
  transform: rotate(4deg);
}
.story-points { margin-top: 26px; display: grid; gap: 14px; }
.story-points li { display: flex; gap: 14px; align-items: flex-start; color: rgba(255,255,255,0.9); }
.story-points .tick {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--purple-ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  margin-top: 2px;
}
@media (max-width: 920px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-media { margin-bottom: 26px; }
}

/* ---------- Delivery banner ---------- */
.delivery {
  background: linear-gradient(120deg, var(--red), #f0552d 60%, var(--yellow));
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}
.delivery::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.delivery h2 { font-size: clamp(28px, 3.4vw, 42px); text-shadow: 0 3px 0 rgba(0,0,0,0.15); }
.delivery p { opacity: .95; margin-top: 8px; max-width: 480px; }
.delivery .btn { background: var(--purple-ink); color: var(--white); position: relative; z-index: 1; }
.delivery .btn:hover { background: var(--purple); }

/* ---------- Location cards ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.loc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-soft);
  border-top: 6px solid var(--yellow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.loc-card:nth-child(2) { border-top-color: var(--red); }
.loc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.loc-card .tag {
  display: inline-block;
  font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  background: var(--cream-dark); color: var(--purple);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 14px;
}
.loc-card h3 { color: var(--purple); font-size: 27px; margin-bottom: 14px; }
.loc-lines { display: grid; gap: 10px; margin-bottom: 22px; color: var(--ink-soft); }
.loc-lines a { color: var(--red); font-weight: 700; }
.loc-lines a:hover { text-decoration: underline; }
.loc-lines .row { display: flex; gap: 12px; align-items: flex-start; }
.loc-lines .ico { flex: 0 0 22px; text-align: center; }
@media (max-width: 820px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- Hours ---------- */
.hours-band {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.hours-clock {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--yellow);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display);
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 14px 30px rgba(75, 18, 87, 0.35);
}
.hours-clock .big { font-size: 28px; }
.hours-clock .sm { font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.85); }
.hours-info h3 { color: var(--purple); font-size: 28px; margin-bottom: 6px; }
.hours-info p { color: var(--ink-soft); }
.hours-info .times { font-family: var(--font-display); color: var(--red); font-size: 26px; margin-top: 6px; }
@media (max-width: 700px) {
  .hours-band { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

/* ---------- Menu page ---------- */
.page-hero {
  position: relative;
  padding: 170px 0 90px;
  background: var(--purple-deep);
  color: var(--white);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/hero-bg.jpg") center / cover no-repeat;
  opacity: .35;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(46,10,56,0.96) 25%, rgba(46,10,56,0.62));
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(42px, 6vw, 72px); text-shadow: 0 5px 0 rgba(0,0,0,0.25); }
.page-hero h1 .accent { color: var(--yellow); }
.page-hero p { max-width: 620px; margin-top: 16px; color: rgba(255,255,255,0.88); font-size: 18px; }
.page-hero .kicker { color: var(--yellow); }

.menu-nav {
  position: sticky;
  top: 66px;
  z-index: 60;
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(75, 18, 87, 0.12);
  padding: 12px 0;
}
.menu-nav .wrap { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.menu-nav .wrap::-webkit-scrollbar { display: none; }
.menu-nav a {
  font-weight: 700;
  font-size: 14.5px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple);
  border: 1.5px solid rgba(75, 18, 87, 0.18);
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}
.menu-nav a:hover, .menu-nav a.active { background: var(--purple); color: var(--white); }

.menu-section { padding: 70px 0 10px; }
.menu-section:last-of-type { padding-bottom: 80px; }
.menu-cat-head { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.menu-cat-head .num {
  font-family: var(--font-display);
  color: var(--white);
  background: var(--red);
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transform: rotate(-4deg);
  box-shadow: 0 10px 24px rgba(226,49,36,0.35);
}
.menu-cat-head h2 { font-size: clamp(28px, 3.4vw, 40px); color: var(--purple); }
.menu-cat-head .note { margin-left: auto; font-weight: 700; color: var(--green); font-size: 14px; text-align: right; }

.combo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.combo-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1.5px solid transparent;
}
.combo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: rgba(255, 201, 23, 0.7); }
.combo-num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  color: var(--purple);
  background: var(--yellow);
  border-radius: 12px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
}
.combo-body { flex: 1; }
.combo-body h4 { font-family: var(--font-body); font-weight: 700; font-size: 17px; color: var(--ink); line-height: 1.4; }
.combo-price { font-family: var(--font-display); color: var(--red); font-size: 21px; white-space: nowrap; }

.menu-list {
  columns: 2;
  column-gap: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 38px 42px;
  box-shadow: var(--shadow-soft);
}
.menu-list li {
  break-inside: avoid;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 0;
  font-weight: 600;
  font-size: 16.5px;
}
.menu-list li .dots { flex: 1; border-bottom: 2px dotted rgba(75, 18, 87, 0.25); transform: translateY(-4px); }
.menu-list li .price { font-family: var(--font-display); color: var(--red); font-size: 17px; white-space: nowrap; }
.menu-list li .price small { font-family: var(--font-body); color: var(--ink-soft); font-weight: 600; font-size: 12.5px; }
@media (max-width: 760px) { .menu-list { columns: 1; padding: 26px; } }

.market-note { margin-top: 14px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- Catering table ---------- */
.catering-quote {
  text-align: center;
  font-family: var(--font-display);
  color: var(--purple);
  font-size: clamp(24px, 3vw, 34px);
  max-width: 760px;
  margin: 0 auto 48px;
  line-height: 1.3;
}
.catering-quote .accent { color: var(--red); }
.table-scroll { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
table.catering {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--white);
  font-size: 16px;
}
table.catering thead th {
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 17px;
  padding: 18px 22px;
  text-align: left;
  position: sticky;
  top: 0;
}
table.catering thead th:not(:first-child) { text-align: right; }
table.catering tbody td { padding: 14px 22px; border-bottom: 1px solid rgba(75,18,87,0.08); }
table.catering tbody td:first-child { font-weight: 700; color: var(--ink); }
table.catering tbody td:not(:first-child) { text-align: right; font-family: var(--font-display); color: var(--red); font-size: 16.5px; }
table.catering tbody tr:nth-child(even) { background: var(--cream); }
table.catering tbody tr:hover { background: var(--yellow-soft); }
.tray-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 26px 0 46px; }
.tray-chips .chip {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 700;
  color: var(--purple);
  font-size: 14.5px;
}
.tray-chips .chip b { color: var(--red); }

/* ---------- Menu boards (original scans) ---------- */
.board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.board-grid a {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
  border: 4px solid var(--white);
}
.board-grid a:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-lift); }
.board-grid img { width: 100%; height: auto; }
.board-single { max-width: 720px; margin: 0 auto; }
@media (max-width: 700px) { .board-grid { grid-template-columns: 1fr; } }

/* ---------- Contact form ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 44px;
  border-top: 6px solid var(--green);
}
.form-card h3 { color: var(--purple); font-size: 28px; margin-bottom: 8px; }
.form-card > p { color: var(--ink-soft); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: 13.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--purple); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: var(--white);
}
.field textarea { min-height: 140px; resize: vertical; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .form-card { padding: 28px; } }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-bottom: 26px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.map-frame {
  border: 0;
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  margin-top: 8px;
  filter: saturate(1.05);
}

/* ---------- CTA final ---------- */
.final-cta {
  text-align: center;
  background: var(--purple-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/hero-bg.jpg") center / cover no-repeat;
  opacity: .18;
}
.final-cta .wrap { position: relative; }
.final-cta h2 { font-size: clamp(34px, 5vw, 58px); text-shadow: 0 4px 0 rgba(0,0,0,0.25); }
.final-cta h2 .accent { color: var(--yellow); }
.final-cta p { margin: 16px auto 34px; max-width: 520px; color: rgba(255,255,255,0.85); }
.final-cta .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer {
  background: var(--purple-ink);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { height: 92px; margin-bottom: 16px; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4)); }
.footer-brand p { font-size: 15px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--yellow);
  font-size: 17px;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; font-size: 15px; }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Card glow rings (subtle, brand colors) ---------- */
:root {
  --glow: 0 0 0 1.5px rgba(255, 201, 23, 0.45), 0 0 18px rgba(255, 201, 23, 0.16), 0 0 40px rgba(226, 49, 36, 0.08);
  --glow-hover: 0 0 0 1.5px rgba(255, 201, 23, 0.75), 0 0 26px rgba(255, 201, 23, 0.28), 0 0 52px rgba(226, 49, 36, 0.13);
}
.dish-card, .combo-card, .menu-list, .loc-card, .form-card, .hours-band, .table-scroll, .board-grid a {
  box-shadow: var(--shadow-soft), var(--glow);
}
.dish-card:hover, .combo-card:hover, .loc-card:hover, .board-grid a:hover {
  box-shadow: var(--shadow-lift), var(--glow-hover);
}

/* ---------- Clean modern type for menus & prices ---------- */
.combo-price,
.menu-list li .price,
.dish-price,
table.catering tbody td:not(:first-child) {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.2px;
  font-variant-numeric: tabular-nums;
}
.combo-price { font-size: 18px; }
.menu-list li .price { font-size: 16px; }
.dish-price { font-size: 18px; }
.dish-price small, .menu-list li .price small { font-weight: 600; }
table.catering tbody td:not(:first-child) { font-size: 15.5px; }
.combo-num, .menu-cat-head .num {
  font-family: var(--font-body);
  font-weight: 800;
}
table.catering thead th {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-logo-card img.hero-logo { animation: none; }
}
