/* =============================================
   YAMA'S FISH MARKET — Modern Hawaiian
   ============================================= */

/* --- Design Tokens --- */
:root {
  /* Palette — modern Hawaiian: ocean, sand, sunset */
  --cream: #faf6ef;
  --cream-alt: #f3ebdb;
  --sand: #e8dcc4;
  --teal: #0d7377;            /* Deep ocean — primary brand */
  --teal-dark: #0a5558;
  --teal-light: #14a39f;
  --coral: #e07a5f;           /* Sunset — secondary accent */
  --coral-dark: #c85a3c;
  --brown: #2d1a0e;           /* Warm near-black text */
  --brown-light: #5c4839;
  --brown-muted: #8a7868;
  --white: #ffffff;
  --line: rgba(45, 26, 14, 0.10);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w: 1240px;
  --wide: 1440px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(45, 26, 14, 0.06), 0 2px 8px rgba(45, 26, 14, 0.04);
  --shadow-md: 0 4px 16px rgba(45, 26, 14, 0.08), 0 2px 4px rgba(45, 26, 14, 0.05);
  --shadow-lg: 0 12px 40px rgba(45, 26, 14, 0.12), 0 4px 12px rgba(45, 26, 14, 0.06);
  --shadow-teal: 0 8px 24px rgba(13, 115, 119, 0.25);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.3s;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--coral); }
button { font-family: inherit; cursor: pointer; border: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brown);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
}

/* --- Layout --- */
.container { width: 90%; max-width: var(--max-w); margin: 0 auto; }
.container-wide { width: 92%; max-width: var(--wide); margin: 0 auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--brown-light);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 115, 119, 0.35);
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
}
.btn-coral:hover {
  background: var(--coral-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--brown);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--brown);
  color: var(--cream);
  border-color: var(--brown);
  transform: translateY(-2px);
}

/* Alias: teal filled button (same as btn-primary) */
.btn-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 115, 119, 0.35);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* --- Header --- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 246, 239, 0);
  transition: all var(--t) var(--ease);
}

/* On photo-hero pages, put a dark scrim just behind the nav so white
   links are always legible — even when floating over a bright photo. */
body.teal-hero-page .header:not(.scrolled) {
  background: linear-gradient(180deg, rgba(0,0,0,0.38) 0%, transparent 100%);
}

.header.scrolled {
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 4px 24px rgba(45, 26, 14, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: none;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  transition: transform var(--t) var(--ease);
}
.nav-logo:hover { transform: scale(1.04); }
.nav-logo img {
  display: block;
  height: 64px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--brown);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all var(--t) var(--ease);
}

/* Over-hero (top of page, not scrolled) links are white */
.header:not(.scrolled) .nav-links > li > a {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--teal);
  background: rgba(13, 115, 119, 0.08);
  text-shadow: none;
}

.header:not(.scrolled) .nav-links > li > a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.nav-order-btn {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  box-shadow: 0 4px 12px rgba(224, 122, 95, 0.35);
  text-shadow: none !important;
}
.nav-order-btn--catering {
  background: var(--teal) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(13, 115, 119, 0.35) !important;
}
.nav-order-btn--catering:hover {
  background: var(--teal-dark, #0a5c5f) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 18px rgba(13, 115, 119, 0.45) !important;
}
/* On pages with a teal hero, make catering button white/outlined ONLY while
   the header is still floating over the teal background (not yet scrolled).
   Once scrolled, fall back to the standard teal button so it stays visible
   against the cream header. */
body.teal-hero-page .header:not(.scrolled) .nav-order-btn--catering {
  background: var(--white) !important;
  color: var(--teal) !important;
  border: 1.5px solid var(--teal) !important;
  box-shadow: 0 4px 12px rgba(13, 115, 119, 0.2) !important;
}
body.teal-hero-page .header:not(.scrolled) .nav-order-btn--catering:hover {
  background: var(--teal) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 18px rgba(13, 115, 119, 0.45) !important;
}
.nav-order-btn:hover {
  background: var(--coral-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(224, 122, 95, 0.45);
}

/* Language Switcher */
.lang-switcher {
  position: relative;
  margin-right: 8px;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 100px;
  background: transparent;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  border: 1.5px solid var(--line);
}
.header:not(.scrolled) .lang-btn {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}
.lang-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.lang-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  stroke-width: 2;
}
.lang-btn .caret {
  width: 12px; height: 12px;
  transition: transform var(--t) var(--ease);
}
.lang-switcher.open .caret { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  min-width: 180px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--t) var(--ease);
  z-index: 1001;
}
.lang-switcher.open .lang-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  color: var(--brown);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  text-align: left;
  transition: background var(--t) var(--ease);
}
.lang-option:hover { background: var(--cream); }
.lang-option.active { background: var(--cream-alt); color: var(--teal); font-weight: 600; }
.lang-flag {
  font-size: 1.2rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .lang-btn { padding: 8px 12px; font-size: 0.8rem; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
  transform-origin: center;
}
.header:not(.scrolled) .nav-toggle span { background: var(--white); }

/* Hamburger → X animation when nav is open */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--brown) !important;
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--brown) !important;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(45, 26, 14, 0.08) 0%, rgba(45, 26, 14, 0.38) 100%),
    linear-gradient(90deg, rgba(13, 85, 88, 0.22) 0%, rgba(13, 85, 88, 0) 50%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 500;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 8px var(--coral);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero h1 em {
  font-style: italic;
  color: #f4d4a8;
  font-weight: 400;
}

.hero p {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  opacity: 0.92;
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- Info Bar --- */
.info-bar {
  background: var(--teal);
  color: var(--white);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.info-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(224, 122, 95, 0.15), transparent 50%);
}
.info-bar-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  text-align: center;
}
.info-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}
.info-item svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  stroke: rgba(255,255,255,0.85);
  stroke-width: 2;
}

/* --- About Preview --- */
.about-preview {
  background: var(--cream);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -24px;
  background: var(--coral);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  line-height: 1.2;
  transform: rotate(-3deg);
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
}
.about-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.95;
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
}
.about-text p {
  margin-bottom: 18px;
  color: var(--brown-light);
  font-size: 1.05rem;
  line-height: 1.75;
}
.about-text .highlight {
  color: var(--teal);
  font-weight: 600;
}

/* --- Menu Preview --- */
.menu-preview {
  background: var(--cream-alt);
  position: relative;
}

.menu-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sand);
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-body { padding: 24px 24px 28px; }

.menu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--brown);
}
.menu-card p {
  color: var(--brown-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Reviews Section --- */
.reviews {
  background: var(--cream);
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 8px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-grid.multi {
  max-width: none;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t) var(--ease-out);
  border-top: 3px solid var(--coral);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-quote {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--coral);
  opacity: 0.25;
  position: absolute;
  top: 20px;
  right: 28px;
  font-style: italic;
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #f5a623;
}
.review-stars svg {
  width: 18px; height: 18px;
  fill: currentColor;
}

.review-text {
  color: var(--brown-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.review-meta strong {
  display: block;
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 600;
}
.review-meta span {
  font-size: 0.82rem;
  color: var(--brown-muted);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--brown-light);
  transition: all var(--t) var(--ease);
  padding: 6px 10px;
  border-radius: 6px;
}
.review-source:hover { background: var(--cream-alt); color: var(--brown); }
.review-source svg { width: 20px; height: 20px; flex-shrink: 0; }

.review-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.review-card-link:hover { color: inherit; }
.review-card-link:hover .review-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--teal);
}

.review-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--cream);
  color: var(--teal);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--t) var(--ease);
  border: 1.5px solid var(--line);
  width: 100%;
  text-decoration: none;
}
.review-read-more:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}
.review-read-more svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* --- Menu Page --- */
.menu-page-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 64px;
}

.menu-section {
  margin-bottom: 64px;
}

.menu-section h2 {
  font-size: 2rem;
  color: var(--brown);
  padding-bottom: 16px;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.menu-section h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 60px; height: 3px;
  background: var(--coral);
  border-radius: 2px;
}

.menu-section-desc {
  color: var(--brown-muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.menu-items { display: grid; gap: 4px; }

/* ── Photo card grid layout ── */
.menu-items-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .menu-items-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .menu-items-cards { grid-template-columns: 1fr; }
}
.menu-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.menu-card-placeholder {
  width: 100%;
  height: 160px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.menu-card-body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.menu-card-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 4px;
}
.menu-card-name-tr {
  font-size: 0.82rem;
  color: var(--brown-light);
  margin-bottom: 4px;
}
.menu-card-desc {
  font-size: 0.82rem;
  color: var(--brown-muted);
  line-height: 1.5;
  flex: 1;
}
.menu-card-price {
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
  margin-top: 10px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px dotted var(--line);
  gap: 16px;
}

.menu-item-name {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--brown);
}
.menu-item-name-tr {
  font-size: 0.92rem;
  color: var(--brown-light);
  font-weight: 500;
  margin-top: 3px;
  font-style: normal;
  line-height: 1.35;
}
.menu-item-name-tr:empty { display: none; }
.menu-item-desc {
  color: var(--brown-muted);
  font-size: 0.9rem;
  margin-top: 3px;
  line-height: 1.55;
}
.menu-item-desc:empty { display: none; }

.menu-item-price {
  font-weight: 700;
  color: var(--teal);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.menu-feature-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
}

.menu-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.menu-thumb-row img {
  width: 100%; height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* --- Catering --- */
.catering-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.catering-feature {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--t) var(--ease-out);
  text-align: center;
}
.catering-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.catering-feature-icon {
  width: 56px; height: 56px;
  background: rgba(13, 115, 119, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.catering-feature-icon svg {
  width: 26px; height: 26px;
  stroke: var(--teal);
  stroke-width: 2;
}
.catering-feature h3 { margin-bottom: 10px; font-size: 1.2rem; }
.catering-feature p {
  color: var(--brown-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Forms --- */
.form-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--t) var(--ease);
  background: var(--cream);
  color: var(--brown);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(13, 115, 119, 0.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(13, 115, 119, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px; height: 20px;
  stroke: var(--teal);
  stroke-width: 2;
}
.contact-info-list h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}
.contact-info-list p,
.contact-info-list a {
  color: var(--brown-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--white);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}
.map-directions {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  transition: all var(--t) var(--ease);
  text-decoration: none;
}
.map-directions:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 115, 119, 0.4);
}
.map-directions svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}

/* --- Hours Table --- */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--line); }
.hours-table tr:last-child { border: none; }
.hours-table td {
  padding: 12px 0;
  font-size: 0.95rem;
}
.hours-table td:first-child { font-weight: 600; color: var(--brown); min-width: 120px; padding-right: 24px; }
.hours-table td:last-child { text-align: right; color: var(--brown-light); white-space: nowrap; }

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 100px 20px;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(224, 122, 95, 0.25), transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(20, 163, 159, 0.35), transparent 50%);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Order Online Section --- */
.order-section {
  background: var(--cream);
  text-align: center;
  position: relative;
}
.order-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  padding: 56px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--coral);
}
.order-card .eyebrow { color: var(--coral); }
.order-card h2 { margin-bottom: 16px; }
.order-card p { color: var(--brown-light); margin-bottom: 28px; }

/* --- Footer --- */
.footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-brand img {
  height: 110px;
  width: auto;
  margin-bottom: 20px;
}

/* Holidays styling */
.holidays-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--coral);
}

.holiday-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dotted var(--line);
  align-items: center;
}
.holiday-row:last-child { border-bottom: none; }

.holiday-date {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
}
.holiday-name {
  color: var(--brown);
  font-weight: 500;
  font-size: 0.95rem;
}
.holiday-hours {
  color: var(--brown-light);
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.holiday-hours.closed {
  color: var(--coral-dark);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .holiday-row {
    grid-template-columns: 1fr auto;
    row-gap: 2px;
  }
  .holiday-date { grid-column: 1 / -1; }
  .holidays-grid { padding: 24px 20px; }
}

/* Aloha Friday pull quote band */
.aloha-band {
  background: var(--teal);
  color: var(--white);
  padding: 72px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.aloha-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(224, 122, 95, 0.25), transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(20, 163, 159, 0.3), transparent 50%);
}
.aloha-band-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.aloha-band .eyebrow { color: rgba(255,255,255,0.85); }
.aloha-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
}
.aloha-quote em {
  color: #f4d4a8;
  font-weight: 400;
}

/* Service type badge */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.service-badge svg { width: 14px; height: 14px; stroke: var(--white); stroke-width: 2.5; }
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: color var(--t) var(--ease);
}
.footer-links a:hover { color: var(--coral); }

.footer p a {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--t) var(--ease);
}
.footer p a:hover { color: var(--coral); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t) var(--ease);
}
.footer-social a:hover {
  background: var(--coral);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px; height: 18px;
  stroke: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  position: relative;
  background: var(--teal);
  color: var(--white);
  text-align: center;
  padding: 180px 20px 100px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(224, 122, 95, 0.2), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(20, 163, 159, 0.3), transparent 50%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Page Hero — Photo Backdrop variant --- */
.page-hero--photo {
  background: var(--teal); /* fallback if image fails */
}
.page-hero--photo .page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
.page-hero--photo .page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 85, 88, 0.18) 0%, rgba(13, 85, 88, 0.42) 100%),
    linear-gradient(90deg, rgba(45, 26, 14, 0.10) 0%, rgba(45, 26, 14, 0) 60%);
}
.page-hero--photo .page-hero-inner {
  position: relative;
  z-index: 2;
}
/* Slightly stronger text shadow on photo backgrounds for legibility */
.page-hero--photo h1,
.page-hero--photo p {
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}
/* Eyebrow gets coral pop on photo heroes, matching home page decorative style */
.page-hero--photo .eyebrow {
  color: var(--coral);
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
/* Highlighted portion of h1 — warm golden cream, same as .hero h1 em on home page */
.page-hero--photo h1 em {
  font-style: italic;
  color: #f4d4a8;
  font-weight: 400;
}

/* --- Mobile Sticky CTA Bar --- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  gap: 8px;
}
.mobile-cta a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  border-radius: 10px;
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.mobile-cta a.primary {
  background: var(--coral);
  color: var(--white);
}
.mobile-cta a svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}

/* --- Section Transitions --- */
.divider-wave {
  display: block;
  width: 100%;
  height: 40px;
}

/* --- Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
/* =============================================
   RESPONSIVE — TABLET & MOBILE
   ============================================= */

@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { aspect-ratio: 4/3; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  /* Mobile nav dropdown */
  .nav-links {
    display: none;
    position: fixed;
    top: 92px; left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--line);
    z-index: 1100;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.active { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a,
  .header:not(.scrolled) .nav-links > li > a {
    display: block;
    color: var(--brown) !important;
    text-shadow: none !important;
    padding: 14px 18px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(13,115,119,0.1);
    pointer-events: auto !important;
  }
  .nav-links > li:has(.nav-order-btn) { display: none; }

  .nav-toggle {
    display: flex;
    z-index: 1101;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
  }

  /* Mobile bottom CTA bar */
  .mobile-cta { display: flex; }

  /* Info bar — stack vertically */
  .info-bar-inner {
    flex-direction: column;
    gap: 14px;
    text-align: left;
    align-items: flex-start;
    padding: 0 20px;
  }
  .info-item {
    white-space: normal;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .page-hero { padding: 120px 20px 60px; }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .menu-card-img { height: 160px; }

  /* Smaller logo so it doesn't crowd the header */
  .nav-logo img { height: 44px; }

  /* Buttons — prevent text overflow */
  .btn-lg { padding: 16px 20px; font-size: 0.92rem; }
  .btn { white-space: normal; text-align: center; }

  /* Catering form — stack two-column rows */
  .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Submit button full width */
  form button[type="submit"] { width: 100%; }

  /* Catering features — single column */
  .catering-features { grid-template-columns: 1fr !important; }

  /* Hours table — prevent time wrapping */
  .hours-table { table-layout: fixed; width: 100%; }
  .hours-table td { white-space: nowrap; overflow: hidden; }
  .hours-table td:first-child { width: 55%; }
  .hours-table td:last-child { width: 45%; }

  /* Bottom padding so content clears mobile CTA bar */
  footer, .footer { padding-bottom: 80px; }
}
