/* ===== CSS VARIABLES ===== */
/* Bistró Tropical official logo palette + on-site photography */
:root {
  --logo-forest:     #0B3022;
  --logo-forest-deep:#061912;
  --logo-forest-mid: #123828;
  --logo-red:        #BD3429;
  --logo-red-dark:   #9e2b22;
  --logo-cream:      #EAE3CB;
  --logo-brown:      #7A421D;
  --logo-gold:       #EBB138;
  --logo-gold-soft:  #f2c86a;
  --logo-teal:       #0B4E63;
  --logo-teal-bright:#127a96;
  --logo-olive:      #3D541C;

  --teal:       var(--logo-teal);
  --teal-dark:  var(--logo-forest);
  --teal-light: var(--logo-teal-bright);
  --coral:      var(--logo-red);
  --coral-dark: var(--logo-red-dark);
  --gold:       var(--logo-gold);
  --gold-light: var(--logo-gold-soft);
  --sand:       #e8e1d2;
  --sand-dark:  #d4cbb8;
  --navy:       var(--logo-forest);
  --navy-mid:   var(--logo-forest-mid);
  --white:      #fffcf7;
  --cream:      var(--logo-cream);
  --brown:      var(--logo-brown);
  --olive:      var(--logo-olive);
  --text:       #1a241f;
  --text-light: #4a5648;
  --radius:     10px;
  --shadow:     0 6px 28px rgba(11, 48, 34, 0.11);
  --shadow-lg:  0 18px 48px rgba(11, 48, 34, 0.16);
  --dusk:       rgba(11, 78, 99, 0.48);
  --deep-water: rgba(11, 48, 34, 0.91);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--sand);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Fraunces', serif; line-height: 1.2; }

a { text-decoration: none; color: inherit; transition: color 0.2s; }

img { max-width: 100%; display: block; }

ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--coral);
  color: var(--cream);
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(189, 52, 41, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(234, 227, 203, 0.85);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ===== SECTION LABELS & TITLES ===== */
.section-label {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.section-label.center { text-align: center; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.center { text-align: center; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== PLACEHOLDERS ===== */
.img-placeholder {
  background: linear-gradient(135deg, rgba(234,227,203,0.5) 0%, rgba(11,78,99,0.12) 100%);
  border: 2px dashed var(--logo-teal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.img-placeholder .placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  text-align: center;
  padding: 16px;
}
.img-placeholder .placeholder-inner span { font-size: 2rem; }
.img-placeholder .placeholder-inner p { font-size: 0.8rem; font-weight: 600; opacity: 0.7; }
.img-placeholder .placeholder-inner small { font-size: 0.7rem; opacity: 0.5; }
.img-placeholder.small .placeholder-inner span { font-size: 1.4rem; }


/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(11, 48, 34, 0.94);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}
.logo-svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}
.logo-img {
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
/* White / clear mark for transparent header over hero */
.logo-img--nav {
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-top {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}
.logo-bottom {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--gold); }

.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--logo-forest-deep);
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  /* First layer = same diagonal tint as original hero (over photo); then warmth + depth */
  background:
    linear-gradient(155deg, var(--deep-water) 0%, var(--dusk) 42%, rgba(22, 28, 36, 0.92) 100%),
    radial-gradient(ellipse 88% 58% at 50% 100%, rgba(235, 177, 56, 0.16) 0%, transparent 52%),
    linear-gradient(180deg, rgba(11, 48, 34, 0.25) 0%, transparent 42%, rgba(6, 25, 18, 0.58) 100%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }

.hero-tagline {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title-line {
  display: block;
  font-size: 0.52em;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2em;
  color: rgba(234, 227, 203, 0.92);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(234, 227, 203, 0.88);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s forwards;
  opacity: 0;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}


/* ===== WELCOME STRIP ===== */
.welcome-strip {
  background: linear-gradient(90deg, var(--logo-forest-deep) 0%, var(--logo-forest-mid) 50%, var(--logo-forest-deep) 100%);
  border-top: 1px solid rgba(235, 177, 56, 0.28);
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(234, 227, 203, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 28px;
}
.strip-mark {
  display: block;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}
.strip-divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
}


/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: var(--sand);
}

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

.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand-dark);
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
}
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: var(--sand-dark);
}
.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--coral);
  color: var(--cream);
  width: 90px; height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.badge-year { font-size: 0.6rem; font-weight: 700; letter-spacing: 2px; opacity: 0.8; }
.badge-num { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 700; line-height: 1; }

.about-text { padding-right: 20px; }

.about-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--sand-dark);
  border-bottom: 1px solid var(--sand-dark);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
}
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 700; letter-spacing: 0.5px; }


/* ===== MENU ===== */
.menu {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--sand-dark);
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 1000px;
  margin: 0 auto 48px;
  border-bottom: 1px solid var(--sand-dark);
  padding-bottom: 2px;
}

.menu-tab {
  padding: 14px 10px 16px;
  margin: 0;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--text-light);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  text-align: center;
  line-height: 1.25;
}
.menu-tab:hover { color: var(--teal); border-bottom-color: rgba(11, 78, 99, 0.35); }
.menu-tab.active {
  background: transparent;
  border-bottom-color: var(--coral);
  color: var(--navy);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.menu-card.wide { grid-column: span 2; }
.menu-card.featured { border: 2px solid var(--gold); }

.featured-tag {
  position: static;
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: var(--logo-forest);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
}
.menu-card.featured .menu-card-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.menu-card-img { height: 180px; }
.menu-card-img.small { height: 160px; }

.menu-card-body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}
.menu-card-header h3 {
  font-size: 1.05rem;
  color: var(--navy);
}
.price {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--coral);
  white-space: nowrap;
}
.menu-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

@media (min-width: 640px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
  #tab-boils .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1000px;
  }
}

@media (max-width: 899px) {
  .menu-tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    max-width: none;
    margin-inline: -24px;
    padding-inline: 24px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .menu-tab {
    flex: 0 0 auto;
    min-width: 140px;
  }
}

/* ===== SEAFOOD BOILS ===== */
.boil-intro {
  text-align: center;
  background: linear-gradient(90deg, var(--teal-dark) 0%, var(--navy-mid) 50%, var(--teal-dark) 100%);
  color: rgba(255,252,250,0.92);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  border-radius: 4px;
  border-inline: 3px solid var(--gold);
  margin: 0 auto 32px;
  max-width: 900px;
}

.boil-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  margin: 0 auto 48px;
  max-width: 1100px;
  align-items: start;
}

.boil-combos-title {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 24px;
  text-align: center;
}

.sauce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.sauce-tag {
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--sand-dark);
  color: var(--navy);
}
.sauce-tag.mild  { background: #d4edda; color: #155724; }
.sauce-tag.spicy { background: #fff3cd; color: #856404; }
.sauce-tag.hot   { background: #f8d7da; color: #721c24; }
.sauce-tag.extra { background: var(--coral); color: var(--white); }

/* GF badge */
.gf-badge {
  display: inline-block;
  background: var(--olive);
  color: var(--cream);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 7px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

/* Sides grid */
.sides-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
  background: var(--sand);
  border-radius: var(--radius);
  padding: 48px;
}
.sides-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
}
@media (max-width: 900px) {
  .sides-grid--3 {
    grid-template-columns: 1fr;
  }
}
.sides-heading {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.side-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sand-dark);
  font-size: 0.95rem;
}
.side-item > span:first-child {
  flex: 1;
  min-width: 0;
}
.side-item:last-child { border-bottom: none; }
.side-item .price { font-size: 0.95rem; }


/* ===== BRUNCH NOTE ===== */
.brunch-note {
  display: flex;
  align-items: stretch;
  background: linear-gradient(105deg, var(--teal-dark) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 0;
  border-radius: 4px;
  margin: 0 auto 32px;
  max-width: 900px;
  font-size: 1rem;
  border-inline: 4px solid var(--gold);
  overflow: hidden;
}
.brunch-note__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 26px;
}
.brunch-note strong { font-weight: 700; letter-spacing: 0.02em; }
.brunch-note__detail { font-size: 0.88rem; opacity: 0.82; line-height: 1.45; }

/* ===== WEEKLY SPECIALS ===== */
.specials {
  padding: 100px 0;
  background: var(--sand);
  background-image:
    linear-gradient(180deg, rgba(232,225,210,0.96) 0%, rgba(232,225,210,0.96) 100%),
    repeating-linear-gradient(-12deg, transparent, transparent 11px, rgba(11, 48, 34, 0.045) 11px, rgba(11, 48, 34, 0.045) 12px);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.special-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--sand-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.special-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.special-card.highlight {
  border-top-color: var(--coral);
  background: linear-gradient(160deg, #fffcf8 55%, #f5ebe4 100%);
}
.special-day {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.special-card.highlight .special-day { background: var(--coral); }
.special-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.special-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 100px 0 0;
  background: linear-gradient(180deg, var(--logo-forest) 0%, #061912 100%);
}
.gallery .section-label { color: var(--gold); }
.gallery .section-title,
.gallery .section-sub { color: var(--cream); }
.gallery .section-sub { color: rgba(234, 227, 203, 0.72); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 44px auto 0;
  padding: 0 20px 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.2);
  aspect-ratio: 4 / 3;
  min-height: 160px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item--deferred {
  display: none;
}
.gallery-grid.is-expanded .gallery-item--deferred {
  display: block;
}
.gallery-more-wrap {
  text-align: center;
  padding: 8px 20px 52px;
}
.gallery-more-btn[hidden] {
  display: none;
}
@media (min-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1024px;
    padding: 0 24px 24px;
  }
}
@media (max-width: 479px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px 16px;
  }
}
.gallery-item .placeholder-inner { color: rgba(255,255,255,0.4); }
.gallery-item .placeholder-inner p { color: rgba(255,255,255,0.3); }


/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(145deg, var(--logo-teal) 0%, #083445 42%, var(--logo-forest) 100%);
}
.testimonials .section-label { color: var(--gold); }
.testimonials .section-title { color: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.rating-bars {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
  align-items: flex-end;
}
.rating-bars span {
  flex: 1;
  max-width: 36px;
  height: 4px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0.95;
}
.testimonial-card p {
  color: rgba(255,255,255,0.9);
  font-size: 0.97rem;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.reviewer {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 700;
}


/* ===== CONTACT ===== */
.contact {
  padding: 100px 0 0;
  background: var(--sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 16px;
}
.contact-icon svg { flex-shrink: 0; }
.contact-card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-card p a { color: var(--teal); font-weight: 700; }
.contact-card p a:hover { color: var(--teal-dark); }
.contact-note { font-size: 0.8rem !important; margin-top: 6px; }

.contact-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}
.contact-link:hover { color: var(--coral-dark); }

.hours-list { text-align: left; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--sand-dark);
  font-size: 0.88rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { color: var(--text); font-weight: 700; }
.hours-row span:last-child { color: var(--text-light); }

.social-links { margin-top: 16px; display: flex; gap: 10px; justify-content: center; }
.social-btn {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.2s;
}
.social-btn.facebook { background: #1877F2; color: var(--white); }
.social-btn.facebook:hover { background: #0d65da; transform: translateY(-1px); }

.map-placeholder {
  height: 320px;
  background: var(--sand-dark);
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 3px solid var(--logo-teal);
}
.map-placeholder .placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  text-align: center;
}
.map-placeholder .placeholder-inner span { font-size: 3rem; }
.map-placeholder .placeholder-inner p { font-weight: 700; font-size: 1rem; }
.map-placeholder .placeholder-inner small { font-size: 0.8rem; opacity: 0.6; }


/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand .logo-top {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--gold);
}
.footer-brand .logo-bottom {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  color: rgba(255,255,255,0.5);
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.6);
}
.footer-contact p a { color: rgba(255,255,255,0.6); }
.footer-contact p a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}


/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-images { max-width: 480px; margin: 0 auto; }
  .about-text { padding-right: 0; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a {
    display: block;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links li:last-child a {
    margin: 12px 24px;
    width: calc(100% - 48px);
    text-align: center;
    border: none;
    border-radius: 6px;
  }

  .site-header { position: relative; background: var(--navy); }
  .hero { min-height: 90vh; }

  .about-stats { flex-direction: column; gap: 16px; }
  .about-img-secondary { display: none; }

  .menu-card.wide { grid-column: span 1; }
  .sides-grid { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
  .boil-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .specials-grid { grid-template-columns: 1fr; }

  .welcome-strip { gap: 0; }
  .strip-item { padding: 8px 16px; font-size: 0.82rem; }
  .strip-divider { display: none; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
}
