/* ============================================================
   MAUI'S DELI & SHOP — shared stylesheet
   Aesthetic: warm neighborhood deli, dark base, fire accents
   ============================================================ */

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

:root {
  --fire-orange: #E8582A;
  --fire-yellow: #F5A623;
  --ember: #c4421d;
  --charcoal: #1a1a1a;
  --warm-black: #0d0d0d;
  --cream: #FAF6F1;
  --warm-gray: #8a8178;
  --gold: #C8956C;
  --border-soft: rgba(250, 246, 241, 0.08);
  --container: 1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--warm-black);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.1;
}

.nav-brand img {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}

.nav-brand .flame {
  color: var(--fire-orange);
  font-size: 1.4rem;
}

/* Full brand name + sub-tagline stacked */
.nav-brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.2px;
  color: var(--cream);
  line-height: 1;
}

.nav-brand-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--fire-orange);
  line-height: 1;
}

/* Location badge on right side of nav */
.nav-location {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(232, 88, 42, 0.45);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-location:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
}

.nav-location svg {
  width: 14px;
  height: 14px;
  color: var(--fire-orange);
  flex-shrink: 0;
}

/* Dropdown caret for menu items with submenus (static visual only) */
.nav-links a .caret {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.65rem;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.nav-links a {
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: var(--fire-orange);
  border-bottom-color: var(--fire-orange);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--fire-orange);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(232, 88, 42, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--ember);
  box-shadow: 0 8px 30px rgba(232, 88, 42, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 241, 0.2);
}

.btn-ghost:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
  transform: translateY(-2px);
}

/* ---------- HERO (reused by interior pages too) ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
  position: relative;
  background: linear-gradient(180deg, var(--warm-black) 0%, #1c1410 50%, var(--warm-black) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(232, 88, 42, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 900px; }

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid var(--fire-orange);
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 1.75rem;
  animation: fadeDown 0.9s ease-out;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.9s ease-out 0.2s both;
}

.hero h1 .accent {
  color: var(--fire-orange);
  display: block;
  font-size: 0.35em;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  margin-top: 0.75rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 520px;
  margin: 1.5rem auto 2.5rem;
  line-height: 1.7;
  animation: fadeUp 0.9s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s ease-out 0.6s both;
}

.hero-mini {
  min-height: 45vh;
  padding: 6rem 1.5rem 4rem;
}

/* ---------- HERO SPLIT (homepage — text left, illustration right) ---------- */
.hero-split {
  min-height: auto;
  text-align: left;
  padding: 0;
  display: block;
  background: var(--warm-black);
  position: relative;
  overflow: hidden;
}

.hero-split::before {
  display: none;
}

.hero-split .hero-split-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.75rem;
  align-items: center;
  position: relative;
}

/* subtle dotted decoration bottom-left, echoing the target */
.hero-split .hero-split-inner::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  bottom: 1.25rem;
  width: 96px;
  height: 44px;
  background-image: radial-gradient(var(--warm-gray) 1px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-split-copy {
  animation: fadeUp 0.9s ease-out both;
}

.hero-split .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire-orange);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero-split .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--fire-orange);
  border-radius: 2px;
}

.hero-split h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  color: var(--cream);
  animation: fadeUp 0.9s ease-out 0.1s both;
}

.hero-split h1 .line {
  display: block;
}

.hero-split h1 .accent-line {
  color: var(--fire-orange);
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1em;
  letter-spacing: -0.01em;
  text-transform: none;
  margin-top: 0;
}

.hero-split .heart-divider {
  margin: 1rem 0 1.25rem;
  color: var(--fire-orange);
  font-size: 0.95rem;
  line-height: 1;
}

.hero-split .hero-split-lede {
  font-size: 1.02rem;
  color: var(--warm-gray);
  max-width: 440px;
  margin: 0 0 2rem;
  line-height: 1.65;
  animation: fadeUp 0.9s ease-out 0.3s both;
}

.hero-split-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fadeUp 0.9s ease-out 0.5s both;
}

.hero-split-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  font-size: 0.92rem;
}

.hero-split-cta .btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.hero-split-cta .btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(232, 88, 42, 0.4);
}

.hero-split-cta .btn-ghost:hover {
  border-color: var(--fire-orange);
  color: var(--fire-orange);
}

/* Hero illustration container */
.hero-split-art {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #14100d;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(232, 88, 42, 0.12);
  animation: fadeUp 0.9s ease-out 0.2s both;
}

.hero-split-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- FEATURE STRIP (homepage, below hero) ---------- */
.feature-strip {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1rem;
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.feature-strip-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  position: relative;
}

.feature-strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--border-soft);
}

.feature-strip-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(232, 88, 42, 0.1);
  border: 1px solid rgba(232, 88, 42, 0.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--fire-orange);
}

.feature-strip-icon svg {
  width: 20px;
  height: 20px;
}

.feature-strip-text h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
  letter-spacing: 0.1px;
}

.feature-strip-text p {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.45;
  margin: 0;
}

/* ---------- LOCAL BAR (homepage, below feature strip) ---------- */
.local-bar {
  max-width: var(--container);
  margin: 1rem auto 2rem;
  padding: 0 1.5rem;
}

.local-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 1.1rem 1.75rem;
  background: #141010;
  border: 1px solid rgba(232, 88, 42, 0.25);
  border-radius: 100px;
  font-size: 0.95rem;
}

.local-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cream);
  font-weight: 500;
}

.local-bar-item svg {
  width: 16px;
  height: 16px;
  color: var(--fire-orange);
  flex-shrink: 0;
}

.local-bar-item .city {
  color: var(--fire-orange);
  font-weight: 600;
}

.local-bar-divider {
  width: 1px;
  height: 22px;
  background: var(--border-soft);
}

.local-bar-thanks {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  color: var(--fire-orange);
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.local-bar-thanks .heart {
  font-style: normal;
  margin-left: 0.35rem;
  font-size: 0.95em;
}

/* ---------- MAUI AROUND WRENTHAM (contact page section) ---------- */
.maui-wrentham {
  max-width: var(--container);
  margin: 2rem auto 0;
  padding: 4rem 1.5rem;
}

.maui-wrentham-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #1c1410 0%, #251510 100%);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  padding: 2.5rem;
  overflow: hidden;
}

.maui-wrentham-image {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #14100d;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.maui-wrentham-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.maui-wrentham-copy h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.maui-wrentham-copy p {
  color: var(--warm-gray);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

@media (max-width: 820px) {
  .maui-wrentham-grid { grid-template-columns: 1fr; gap: 1.75rem; padding: 1.75rem; }
}

/* Hero quick-action row shown above fold on homepage */
.hero-quick {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  animation: fadeUp 0.9s ease-out 0.75s both;
}
.hero-quick-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-gray);
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}
.hero-quick-item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fire-orange);
  box-shadow: 0 0 12px var(--fire-orange);
}
.hero-quick-item a {
  color: var(--cream);
  border-bottom: 1px dashed rgba(250,246,241,0.3);
  padding-bottom: 1px;
}
.hero-quick-item a:hover {
  color: var(--fire-orange);
  border-bottom-color: var(--fire-orange);
}

/* Floating call-ahead button (mobile) */
.call-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  background: var(--fire-orange);
  color: var(--cream);
  padding: 0.9rem 1.4rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 30px rgba(232,88,42,0.4);
  display: none;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s;
}
.call-float:hover { transform: translateY(-2px); }
.call-float .icon {
  font-size: 1.1rem;
}
@media (max-width: 720px) {
  .call-float { display: inline-flex; }
}

/* ---------- COMMUNITY NOTE ---------- */
.note-strip {
  background: linear-gradient(90deg, var(--fire-orange), var(--fire-yellow));
  color: var(--warm-black);
  padding: 1rem 1.5rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.note-strip strong { margin-right: 0.5rem; font-weight: 800; }

/* ---------- SECTIONS ---------- */
section.block {
  padding: 5rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire-orange);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-lede {
  color: var(--warm-gray);
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ---------- SUB OF THE WEEK FEATURE ---------- */
.sub-feature {
  background: linear-gradient(135deg, #1c1410 0%, #251510 100%);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.sub-feature.no-image { grid-template-columns: 1fr; }

.sub-feature-body { padding: 3rem; }

.sub-feature-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #2a1a12;
}

.sub-feature h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
}

.sub-feature .promo {
  display: inline-block;
  background: rgba(232, 88, 42, 0.15);
  color: var(--fire-orange);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sub-feature .price {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--fire-yellow);
  margin-top: 1rem;
}

/* ---------- FEATURED DISHES GRID ---------- */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dish-card {
  background: #14100d;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dish-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 88, 42, 0.4);
}

.dish-card-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #2a1a12;
}

.dish-card-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1c1410 0%, #241610 100%);
  color: rgba(232, 88, 42, 0.35);
}

.dish-card-body { padding: 1.5rem; }

.dish-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.dish-card p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.dish-card .price {
  color: var(--fire-yellow);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---------- SPECIALS (weekly list) ---------- */
.specials-wrap {
  background: linear-gradient(180deg, #1c1410 0%, var(--warm-black) 100%);
  padding: 4rem 1.5rem;
}

.specials-banner {
  max-width: var(--container);
  margin: 0 auto 2.5rem;
  text-align: center;
}

.specials-banner .price-flash {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--fire-yellow);
  line-height: 1;
  padding: 0.5rem 1.5rem;
  position: relative;
}

.specials-banner .price-flash::before {
  content: '';
  position: absolute;
  inset: -10px -30px;
  border: 3px solid var(--fire-orange);
  border-radius: 50% / 30%;
  transform: rotate(-2deg);
  pointer-events: none;
}

.specials-list {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.special-day {
  background: #14100d;
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--fire-orange);
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s;
}

.special-day:hover { transform: translateY(-3px); }

.special-day .day {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fire-orange);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.special-day .dish {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}

.special-day .desc {
  color: var(--warm-gray);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.special-day .price {
  color: var(--fire-yellow);
  font-weight: 700;
  margin-top: 0.75rem;
  display: block;
}

/* ---------- MENU PAGE ---------- */
.menu-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.cat-chip {
  background: transparent;
  border: 1px solid rgba(250, 246, 241, 0.15);
  color: var(--cream);
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.cat-chip:hover { border-color: var(--fire-orange); color: var(--fire-orange); }
.cat-chip.active { background: var(--fire-orange); border-color: var(--fire-orange); color: var(--cream); }

.menu-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 100px;
}

.menu-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--fire-orange);
  display: inline-block;
  padding-right: 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.menu-item {
  background: #14100d;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}

.menu-item:hover {
  border-color: rgba(232, 88, 42, 0.3);
  transform: translateY(-2px);
}

.menu-item-body { flex: 1; min-width: 0; }

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.menu-item-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
}

.menu-item-price {
  font-weight: 700;
  color: var(--fire-yellow);
  white-space: nowrap;
  font-size: 1rem;
}

.menu-item-desc {
  color: var(--warm-gray);
  font-size: 0.88rem;
  line-height: 1.5;
}

.menu-item-unavailable {
  opacity: 0.45;
  position: relative;
}

.menu-item-unavailable::after {
  content: 'Sold out today';
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--charcoal);
  color: var(--warm-gray);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.menu-item-thumb {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #2a1a12;
  flex-shrink: 0;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #14100d;
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(0deg, rgba(13,13,13,0.95) 0%, transparent 100%);
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-caption small {
  display: block;
  color: var(--warm-gray);
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 0.25rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}

.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; }

.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: var(--cream);
  font-size: 2rem;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-card {
  background: #14100d;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 2rem;
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--fire-orange);
}

.contact-row {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-soft);
}

.contact-row:last-child { border: 0; margin: 0; padding: 0; }

.contact-row .label {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-bottom: 0.35rem;
  display: block;
}

.contact-row .value {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.hours-list { list-style: none; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.95rem;
}
.hours-list .day { color: var(--warm-gray); letter-spacing: 1px; font-size: 0.8rem; text-transform: uppercase; }
.hours-list .time { font-weight: 500; }

.map-embed {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--warm-black);
  border-top: 1px solid var(--border-soft);
  padding: 3rem 1.5rem 2rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}

.footer h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--fire-orange);
}

.footer p, .footer li {
  color: var(--warm-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer ul { list-style: none; }

.footer-bottom {
  max-width: var(--container);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-soft);
  text-align: center;
  font-size: 0.8rem;
  color: var(--warm-gray);
  letter-spacing: 0.5px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- EMPTY STATE ---------- */
.empty {
  color: var(--warm-gray);
  text-align: center;
  padding: 3rem 1rem;
  font-style: italic;
}

/* ---------- PILLAR GRID (Why Maui's Feels Different) ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar {
  background: #14100d;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s, border-color 0.2s;
}

.pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 88, 42, 0.35);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}

.pillar p {
  color: var(--warm-gray);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

/* ---------- SHOP GRID (In the Shop) ---------- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.shop-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #14100d;
}

.shop-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.shop-card:hover img { transform: scale(1.05); }

.shop-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem 1rem 1rem;
  background: linear-gradient(0deg, rgba(13,13,13,0.95) 0%, transparent 100%);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
}

.shop-footnote {
  text-align: center;
  color: var(--warm-gray);
  margin-top: 2rem;
  font-size: 0.95rem;
}

.shop-footnote strong {
  color: var(--fire-orange);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ---------- BREAKFAST TEASE ---------- */
.breakfast-tease {
  background: linear-gradient(135deg, #1c1410 0%, #2a1a10 100%);
  border-radius: 20px;
  max-width: 900px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breakfast-tease::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 166, 35, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.breakfast-tease-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- MEET MAUI ---------- */
.meet-maui-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.meet-maui-image {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: #14100d;
  aspect-ratio: 4 / 3;
}

.meet-maui-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-maui-copy p {
  color: var(--warm-gray);
  line-height: 1.7;
  font-size: 1.02rem;
}

@media (max-width: 820px) {
  .meet-maui-grid { grid-template-columns: 1fr; gap: 2rem; }
  .meet-maui-image { aspect-ratio: 5 / 4; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero-split .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 1.5rem 1.5rem;
  }
  .hero-split-art { order: -1; aspect-ratio: 16 / 11; }
  .hero-split-copy { text-align: center; }
  .hero-split .hero-eyebrow { justify-content: center; }
  .hero-split .hero-split-lede { margin-left: auto; margin-right: auto; }
  .hero-split-cta { justify-content: center; }
  .feature-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .feature-strip-item:not(:last-child)::after { display: none; }
}

@media (max-width: 820px) {
  .sub-feature { grid-template-columns: 1fr; }
  .sub-feature-body { padding: 2rem; }
  .sub-feature-image { aspect-ratio: 16 / 10; order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; text-align: left; }
  .nav-location .nav-location-label { display: none; }
  .nav-location { padding: 0.5rem 0.65rem; }
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--charcoal);
    padding: 1rem 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-soft);
  }
  .nav-links.open { display: flex; }
  .hero { min-height: 80vh; padding: 3rem 1.25rem; }
  section.block { padding: 3.5rem 1.25rem; }
  .menu-item { padding: 1.25rem; }
  .btn { padding: 0.85rem 1.5rem; font-size: 0.9rem; }

  /* Brand sub-tagline hidden on very small screens */
  .nav-brand-sub { display: none; }
  .nav-brand-name { font-size: 1.1rem; }
  .nav-brand img { width: 30px; height: 30px; }

  /* Homepage hero mobile tightening */
  .hero-split h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-split .hero-split-inner { padding: 2rem 1.25rem 1rem; }
  .feature-strip-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .feature-strip { padding: 1rem 1.25rem; }
  .local-bar { padding: 0 1.25rem; }
  .local-bar-inner {
    border-radius: 18px;
    padding: 1rem 1.25rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .local-bar-divider { display: none; }
  .local-bar-thanks { font-size: 0.95rem; }
}

/* ============================================================
   COMMUNITY BOARD
   ============================================================ */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.community-card {
  background: linear-gradient(160deg, #1c1410 0%, #241510 100%);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.community-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 88, 42, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.community-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.community-card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fire-orange);
  background: rgba(232, 88, 42, 0.1);
  border: 1px solid rgba(232, 88, 42, 0.35);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.community-card-pin {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--fire-orange);
  padding: 0.25rem 0.55rem;
  border-radius: 100px;
}

.community-card-date {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--warm-gray);
}

.community-card-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-bottom: 0.9rem;
  background: #14100d;
}

.community-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.community-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 0.55rem;
  color: var(--cream);
}

.community-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.community-card-cta {
  display: inline-block;
  margin-top: 1rem;
  color: var(--fire-orange);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(232, 88, 42, 0.35);
  align-self: flex-start;
  transition: border-color 0.2s;
}

.community-card-cta:hover {
  border-color: var(--fire-orange);
}

.community-empty {
  text-align: center;
  color: var(--warm-gray);
  padding: 2rem;
  font-style: italic;
}

.community-footer {
  text-align: center;
  margin-top: 2rem;
}

/* What's New page — list layout with more detail */
.community-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 780px;
  margin: 2rem auto 0;
}

.community-list .community-card {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
}

.community-list .community-card-image {
  aspect-ratio: 1 / 1;
  width: 120px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.community-list .community-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Coming Soon badge on menu items */
.coming-soon-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--fire-orange);
  background: rgba(232, 88, 42, 0.12);
  border: 1px solid rgba(232, 88, 42, 0.4);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

@media (max-width: 820px) {
  .community-grid { grid-template-columns: 1fr; }
  .community-list .community-card { flex-direction: column; }
  .community-list .community-card-image { width: 100%; aspect-ratio: 16 / 9; }
}
