/* ─── Hero ─── */
.hero {
  position: relative; height: 100vh; width: 100%; overflow: hidden;
  background: var(--charcoal);
  background-image: url('../assets/images/hero-dining-room.jpg');
  background-position: center 46%;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(180deg, rgba(3,26,34,.08) 0%, rgba(3,26,34,.18) 35%, rgba(3,26,34,.62) 100%),
    linear-gradient(90deg, rgba(3,26,34,.62) 0%, rgba(6,42,53,.16) 55%),
    linear-gradient(135deg, rgba(24,205,218,.18) 0%, transparent 36%, transparent 64%, rgba(211,173,79,.14) 100%);
}
.hero-content {
  position: absolute; z-index: 3; text-align: left;
  bottom: clamp(60px, 10vh, 120px);
  left: clamp(16px, 3vw, 48px);
  max-width: 600px;
}
.hero-glass {
  position: relative;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  background: rgba(3, 26, 34, 0.58);
  border: 1px solid rgba(24,205,218,0.18);
  border-radius: 20px;
  padding: clamp(24px, 3.5vw, 40px);
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(3,26,34,0.36),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.hero-river {
  position: absolute; inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.river-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
}
.river-layer-1 {
  width: 140%; height: 90%;
  top: -30%; left: -40%;
  background: radial-gradient(ellipse at center, rgba(24,205,218,0.28) 0%, transparent 60%);
  animation: river-flow-1 9s ease-in-out infinite alternate;
}
.river-layer-2 {
  width: 120%; height: 110%;
  top: 10%; left: 10%;
  background: radial-gradient(ellipse at center, rgba(0,138,122,0.24) 0%, transparent 55%);
  animation: river-flow-2 13s ease-in-out infinite alternate;
}
.river-layer-3 {
  width: 100%; height: 130%;
  top: -20%; left: 30%;
  background: radial-gradient(ellipse at center, rgba(211,173,79,0.18) 0%, transparent 50%);
  animation: river-flow-3 11s ease-in-out infinite alternate;
}
.river-shimmer {
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  animation: shimmer-sweep 5s ease-in-out infinite;
}
@keyframes river-flow-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(18%, 12%) scale(1.2); }
}
@keyframes river-flow-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-12%, -10%) scale(1.25); }
}
@keyframes river-flow-3 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(10%, 15%) scale(1.15); }
}
@keyframes shimmer-sweep {
  0% { left: -80%; }
  100% { left: 180%; }
}
.hero-glass-text {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: .7rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--peacock-cyan); margin-bottom: 14px;
}
.hero-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 300; line-height: 1.1;
  color: #fff; margin-bottom: 16px;
}
.hero-title .gradient-word {
  background: linear-gradient(135deg, var(--peacock-cyan) 0%, var(--peacock-teal) 40%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-lead {
  font-size: clamp(0.85rem, 1.4vw, 1.05rem); font-weight: 300;
  color: rgba(255,255,255,.78); line-height: 1.55; margin-bottom: 28px;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap;
}
.hero .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.34);
}
.hero .btn-ghost:hover {
  color: var(--peacock-cyan);
  border-color: var(--peacock-cyan);
}
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span {
  display: block; width: 1.5px; height: 40px;
  background: linear-gradient(180deg, var(--peacock-cyan), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ─── Section heading peacock accent ─── */
.location-text h2, .dine-text h2, .drink-text h2, .gather-text h2,
.menus-header h2, .section-head h2, .functions-text h2, .reservations-inner h2 {
  position: relative;
  padding-bottom: 16px;
}
.location-text h2::after, .dine-text h2::after, .drink-text h2::after, .gather-text h2::after,
.menus-header h2::after, .section-head h2::after, .functions-text h2::after, .reservations-inner h2::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--peacock-shine);
  border-radius: 2px;
}
/* Center the accent bar for centered headings */
.menus-header h2::after, .section-head h2::after, .reservations-inner h2::after {
  left: 50%; transform: translateX(-50%);
}

/* ─── Location ─── */
.location {
  background: linear-gradient(180deg, #f7fcf9 0%, var(--surface-tint) 52%, var(--bg) 100%);
  padding: clamp(100px, 12vh, 160px) clamp(20px, 4vw, 64px);
}
.location-inner {
  display: flex; max-width: 1200px; margin: 0 auto; gap: 64px; align-items: center;
}
.location-text {
  flex: 1;
}
.location-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 24px;
}
.location-lead {
  font-size: 1.1rem; color: var(--muted); line-height: 1.7; margin-bottom: 40px; max-width: 440px;
}
.location-details {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 32px;
}
.detail-label {
  display: block; font-size: .7rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--peacock-teal); margin-bottom: 8px;
}
.detail-value {
  font-size: .95rem; color: var(--charcoal); line-height: 1.6;
}
.location-map {
  flex: 1;
  overflow: hidden;
  min-height: 400px;
  position: relative;
  background: var(--surface-deep);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(6,42,53,.10);
}
.osm-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #082e38;
  cursor: grab;
  touch-action: none;
  user-select: none;
}
.osm-map.is-dragging {
  cursor: grabbing;
}
.map-loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 70% 28%, rgba(24,205,218,.18) 0%, transparent 34%),
    linear-gradient(135deg, rgba(3,26,34,.96), rgba(8,46,56,.90));
}
.map-tile-layer {
  position: absolute;
  inset: 0;
}
.osm-tile {
  position: absolute;
  width: 256px;
  height: 256px;
  max-width: none;
  pointer-events: none;
  opacity: .98;
}
.map-marker {
  position: absolute;
  z-index: 3;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -100%) rotate(-45deg);
  border-radius: 50% 50% 50% 0;
  background: var(--gold);
  border: 3px solid #fff;
  box-shadow: 0 0 0 10px rgba(211,173,79,.22), 0 18px 34px rgba(0,0,0,.28);
}
.map-marker::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--peacock-navy);
}
.map-controls {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(6,42,53,.18);
  box-shadow: 0 10px 24px rgba(6,42,53,.18);
}
.map-controls button {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.94);
  color: var(--peacock-navy);
  font-size: 1.15rem;
  font-weight: 500;
}
.map-controls button + button {
  border-top: 1px solid rgba(6,42,53,.14);
}
.map-attribution {
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  padding: 3px 6px;
  background: rgba(255,255,255,.84);
  color: var(--peacock-navy);
  font-size: .62rem;
}
.map-attribution a {
  color: inherit;
  text-decoration: underline;
}
.map-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 24px;
  background: rgba(3,26,34,.84);
  border: 1px solid rgba(24,205,218,.24);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.map-card-kicker {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.map-card h3 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin-bottom: 8px;
}
.map-card p {
  color: rgba(255,255,255,.72);
  line-height: 1.55;
  margin-bottom: 18px;
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.map-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  background: rgba(24,205,218,.12);
  border: 1px solid rgba(24,205,218,.24);
  color: var(--peacock-cyan);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .10em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .location-details { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .location-inner { flex-direction: column; }
  .location-details { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; width: 100%; }
  .map-controls {
    top: 14px;
    right: 14px;
  }
  .map-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 20px;
  }
}

/* ─── Dine / Drink / Gather ─── */
.dine, .drink, .gather {
  position: relative; display: flex; min-height: 85vh;
}
.dine-image, .drink-image, .gather-image {
  position: relative; flex: 1; overflow: hidden;
}
.dine-image img, .drink-image img, .gather-image img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 400px;
}
.dine-text, .drink-text, .gather-text {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 80px);
}
.dine-text h2, .drink-text h2, .gather-text h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 24px;
}
.dine-text p, .drink-text p, .gather-text p {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--muted); line-height: 1.75; max-width: 460px; margin-bottom: 28px;
}
.dine {
  background: linear-gradient(115deg, #f7fcf9 0%, var(--surface-tint) 56%, rgba(31,85,181,.10) 100%);
}
.drink {
  flex-direction: row-reverse;
  background: linear-gradient(135deg, var(--peacock-navy) 0%, #073f46 55%, var(--peacock-green) 100%);
}
.gather {
  background: linear-gradient(180deg, #f7fbf4 0%, var(--surface-tint) 60%, rgba(211,173,79,.14) 100%);
}
.drink-text .eyebrow { color: var(--gold); }
.drink-text h2 { color: #fff; }
.drink-text p { color: rgba(255,255,255,.76); }
.drink-text .arrow-link { color: var(--peacock-cyan); border-bottom-color: rgba(24,205,218,.36); }
.drink-text .arrow-link:hover { color: #fff; border-bottom-color: #fff; }

@media (max-width: 768px) {
  .dine, .drink, .gather { flex-direction: column; min-height: auto; }
  .dine-image, .drink-image, .gather-image { height: 50vh; }
  .drink { flex-direction: column; }
}

/* ─── Menus ─── */
.menus {
  background: linear-gradient(180deg, var(--peacock-navy) 0%, #0b4a4e 34%, var(--surface-tint) 34%, var(--bg) 100%);
  padding: clamp(100px, 12vh, 160px) 0;
  overflow: hidden;
  position: relative;
}
.menus-blob {
  position: absolute;
  width: 100%; height: 42%;
  top: 0; left: 0;
  transform: none;
  background: linear-gradient(120deg, rgba(24,205,218,.16) 0%, rgba(0,138,122,.18) 45%, rgba(211,173,79,.12) 100%);
  pointer-events: none;
  z-index: 0;
}
.menus-header, .todays-special, .menu-marquee-section, .menu-categories, .menus-cta {
  position: relative;
  z-index: 1;
}
.menus-header {
  text-align: center;
  padding: 0 clamp(20px, 4vw, 64px);
  margin-bottom: 64px;
}
.menus-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  max-width: 920px;
  margin: 0 auto 24px;
  color: #fff;
}
.menus-lead {
  font-size: 1.05rem; color: rgba(255,255,255,.72); line-height: 1.7;
  max-width: 520px; margin: 0 auto;
}
.menus-header .eyebrow { color: var(--gold); }

.todays-special {
  display: grid;
  grid-template-columns: minmax(260px, 36%) 1fr;
  max-width: 1100px;
  margin: -20px auto 72px;
  background: linear-gradient(135deg, var(--surface-deep) 0%, #0b4548 100%);
  color: #fff;
  border: 1px solid rgba(24,205,218,.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(3,26,34,0.22);
}
.todays-special[hidden] {
  display: none;
}
.special-image {
  min-height: 280px;
  background: var(--peacock-navy);
}
.special-image[hidden] {
  display: none;
}
.special-image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.special-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 56px);
}
.special-day {
  margin-top: 16px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.special-content h3 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
}
.special-content p {
  max-width: 560px;
}
.special-content > p:not(.special-day) {
  margin-top: 16px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}
.special-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.special-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 14px;
  background: rgba(24,205,218,.12);
  color: var(--peacock-cyan);
  border: 1px solid rgba(24,205,218,.22);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.special-meta span:first-child {
  background: rgba(211,173,79,.14);
  color: #f4d989;
  border-color: rgba(211,173,79,.32);
}
.special-meta span:empty {
  display: none;
}

/* ─── Helical Carousel ─── */
.menu-marquee-section {
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px 0 36px;
  margin-left: clamp(20px, 4vw, 64px);
  margin-right: clamp(20px, 4vw, 64px);
  box-shadow: 0 18px 42px rgba(6,42,53,0.12);
  overflow: hidden;
}
.marquee-label {
  display: flex; align-items: center; gap: 16px;
  padding: 0 clamp(20px, 4vw, 64px);
  margin-bottom: 28px;
}
.value-badge {
  display: inline-block;
  background: var(--peacock-gradient); color: #fff;
  font-size: .65rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 14px;
}
.marquee-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 300;
  color: var(--ink);
}
.helix-stage {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 4px 0 24px;
}
.helix-ring {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 0 clamp(20px, 4vw, 64px);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.helix-card {
  position: relative;
  flex: 0 0 clamp(190px, 22vw, 240px);
  width: clamp(190px, 22vw, 240px);
  transform: none;
  opacity: 1;
  filter: none;
}
.helix-card-inner {
  background: linear-gradient(180deg, #fff 0%, #f3fbf7 100%);
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(6,42,53,.12);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.helix-card-inner:hover {
  transform: translateY(-4px);
  border-color: var(--peacock-teal);
  box-shadow: 0 18px 42px rgba(6,42,53,.18);
}
.card-visual {
  width: 100%; height: 150px;
  overflow: hidden;
  display: block;
  pointer-events: none;
}
.card-visual img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.card-grad-amber   { background: linear-gradient(135deg, #e6b87e 0%, #b87333 100%); }
.card-grad-teal    { background: linear-gradient(135deg, #4db6ac 0%, #00695c 100%); }
.card-grad-teriyaki{ background: linear-gradient(135deg, #a0522d 0%, #6d4c41 100%); }
.card-grad-sage    { background: linear-gradient(135deg, #8fbc8f 0%, #556b2f 100%); }
.card-grad-cream   { background: linear-gradient(135deg, #faf0d7 0%, #e8d4a2 100%); }
.helix-card-info {
  padding: 14px 16px 18px;
}
.helix-price {
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem; font-weight: 400; color: var(--peacock-blue);
  margin-bottom: 4px;
}
.helix-card-info h4 {
  font-size: 1.05rem; font-weight: 400; margin-bottom: 4px;
  line-height: 1.25;
  color: var(--ink);
}
.helix-card-info p {
  font-size: .8rem; color: var(--muted); line-height: 1.45;
}

/* ─── Menu Categories ─── */
.menu-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px clamp(40px, 5vw, 80px);
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px clamp(24px, 4vw, 64px);
  z-index: 5;
  position: relative;
  background: rgba(251,255,252,.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(6,42,53,0.12);
}
.menu-category {
  opacity: 1;
  transform: none;
}
.category-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 300;
  margin-bottom: 28px;
  padding-bottom: 14px;
  padding-left: 16px;
  border-bottom: 1px solid var(--line);
  border-left: 4px solid var(--gold);
}
.menu-list {
  display: flex; flex-direction: column; gap: 20px;
}
.menu-dish {
  position: relative;
}
.dish-header {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 4px;
}
.dish-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem); font-weight: 400;
  color: var(--ink);
}
.dish-name small {
  font-size: .75rem; color: var(--muted); font-family: Inter, sans-serif;
}
.dish-line {
  flex: 1;
  border-bottom: 1px dotted rgba(6,42,53,.20);
  position: relative; top: -4px;
}
.dish-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 400; color: var(--peacock-teal);
  white-space: nowrap;
}
.dish-desc {
  font-size: .88rem; color: var(--muted); line-height: 1.55;
}
.value-tag {
  display: inline-block;
  background: var(--peacock-gradient);
  color: #fff;
  font-size: .6rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; margin-left: 6px;
  vertical-align: middle;
  border-radius: 2px;
}
.value-dish .dish-name {
  color: var(--ink);
}

/* Peacock decorative feather */
.peacock-feather {
  position: absolute;
  width: 80px; height: 80px;
  opacity: .18;
  pointer-events: none;
}
.menus-header {
  position: relative;
}

/* ─── Menus CTA ─── */
.menus-cta {
  text-align: center;
  margin-top: 80px;
  padding: 0 clamp(20px, 4vw, 64px);
}
.menus-cta .btn-gold {
  margin-bottom: 20px;
}
.menus-note {
  font-size: .85rem; color: var(--muted);
  max-width: 480px; margin: 0 auto;
}

@media (max-width: 768px) {
  .hero {
    height: 100svh;
    min-height: 760px;
    background-position: 56% center;
    padding-bottom: 0;
  }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3,26,34,.22) 0%, rgba(3,26,34,.08) 28%, rgba(3,26,34,.78) 100%),
      linear-gradient(90deg, rgba(3,26,34,.54) 0%, rgba(6,42,53,.08) 62%),
      linear-gradient(135deg, rgba(24,205,218,.18) 0%, transparent 45%, rgba(211,173,79,.12) 100%);
  }
  .hero-content {
    left: 20px;
    right: 20px;
    width: auto;
    bottom: clamp(34px, 7svh, 68px);
    max-width: none;
    padding: 0;
  }
  .hero-glass {
    box-sizing: border-box;
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px);
    margin: 0;
    border-radius: 18px;
    padding: 26px 22px;
    background: linear-gradient(135deg, rgba(4,35,43,.86) 0%, rgba(6,74,76,.76) 62%, rgba(41,73,45,.72) 100%);
    border-color: rgba(24,205,218,.28);
    box-shadow:
      0 24px 60px rgba(3,26,34,.42),
      inset 0 1px 0 rgba(255,255,255,.08);
  }
  .hero-title {
    font-size: clamp(2.15rem, 9vw, 2.75rem);
  }
  .hero-lead {
    max-width: 28ch;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-actions .btn-gold,
  .hero-actions .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 13px 12px;
  }
  .hero-scroll {
    bottom: 18px;
  }
  .menu-categories { grid-template-columns: 1fr; gap: 48px; padding: 40px 24px; }
  .menus-header {
    margin-bottom: 48px;
  }
  .menus-header h2 {
    max-width: 9.5em;
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.08;
  }
  .menus-lead {
    max-width: 30ch;
  }
  .todays-special {
    grid-template-columns: 1fr;
    margin: -24px 20px 56px;
  }
  .special-image, .special-image img {
    min-height: 220px;
  }
  .special-content {
    padding: 28px 24px 32px;
  }
  .menu-marquee-section { padding: 36px 0 28px; }
  .helix-stage { padding-bottom: 16px; }
  .helix-ring { gap: 16px; }
  .helix-card { flex-basis: 180px; width: 180px; }
  .card-visual { height: 110px; }
  .card-visual img { height: 110px; }
  .helix-card-info { padding: 10px 12px 14px; }
  .helix-price { font-size: 1.15rem; }
  .helix-card-info h4 { font-size: .92rem; }
  .marquee-label { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ─── What's On ─── */
.whats-on {
  background: linear-gradient(180deg, var(--surface-tint) 0%, #eef8f3 48%, rgba(211,173,79,.10) 100%);
  padding: clamp(100px, 12vh, 160px) 0;
}
.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 24px;
}
.events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  padding: 0 clamp(20px, 4vw, 64px);
  max-width: 1200px;
  margin: 0 auto;
}
.event-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: 0 14px 34px rgba(6,42,53,.10);
}
.event-image { height: 280px; overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.event-text { padding: 28px 28px 36px; }
.event-tag {
  display: inline-block;
  font-size: .65rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase;
  color: var(--peacock-teal); margin-bottom: 12px;
}
.event-text h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 12px; line-height: 1.15;
}
.event-text p {
  font-size: .95rem; color: var(--muted); line-height: 1.65;
}

@media (max-width: 1024px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .events-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 20px; }
}

/* ─── Reviews ─── */
.reviews {
  background: linear-gradient(180deg, var(--bg) 0%, #e7f4ef 48%, #f5fbf7 100%);
  padding: clamp(100px, 12vh, 160px) clamp(20px, 4vw, 64px);
}
.reviews-rating {
  font-size: 1rem; color: var(--muted); margin-top: 12px;
}
.reviews-rating .stars {
  color: var(--peacock-teal); letter-spacing: .15em; margin-right: 8px;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1200px; margin: 0 auto;
  align-items: stretch;
}
.review-card {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--peacock-blue);
  box-shadow: 0 14px 34px rgba(6,42,53,.08);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.review-card .stars {
  font-size: .9rem; color: var(--peacock-teal); letter-spacing: .15em; margin-bottom: 16px;
}
.review-card p {
  font-size: .95rem; color: var(--charcoal); line-height: 1.75; font-style: italic;
  margin-bottom: 20px;
  flex: 1;
}
.review-card cite {
  font-size: .8rem; font-weight: 400; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); font-style: normal;
}

@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ─── Functions ─── */
.functions {
  position: relative; display: flex; min-height: 85vh;
  background:
    linear-gradient(135deg, var(--peacock-ink) 0%, var(--peacock-navy) 42%, #06494c 72%, var(--peacock-green) 100%);
}
.functions-text {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 80px);
}
.functions-image {
  flex: 1; overflow: hidden;
}
.functions-image img { width: 100%; height: 100%; object-fit: cover; }
.functions-text h2 {
  font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 24px; max-width: 480px;
}
.functions-text > p {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.75; max-width: 420px; margin-bottom: 32px;
}
.functions-list {
  margin-bottom: 24px;
}
.function-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 0;
}
.functions-text .eyebrow { color: var(--peacock-cyan); }
.functions-text h2 { color: #fff; }
.functions-text > p { color: rgba(255,255,255,.75); }
.function-item { border-bottom: 1px solid rgba(255,255,255,.14); }
.function-name { color: #fff; font-size: 1.05rem; font-weight: 400; margin-bottom: 4px; }
.function-detail { color: rgba(255,255,255,.6); font-size: .9rem; }
.functions-text .arrow-link { color: var(--peacock-cyan); border-bottom-color: rgba(24,205,218,.34); }
.functions-text .arrow-link:hover { color: #fff; border-bottom-color: #fff; }
.functions-text .arrow-link { margin-bottom: 12px; display: inline-block; }

@media (max-width: 768px) {
  .functions { flex-direction: column; }
  .functions-image { height: 45vh; min-height: 300px; }
}

/* ─── Blog Listing ─── */
.blog-listing {
  background: linear-gradient(180deg, var(--bg) 0%, #f7fcf9 48%, var(--surface-tint) 100%);
  padding: clamp(80px, 10vh, 120px) clamp(20px, 4vw, 64px);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--peacock-teal);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(6,42,53,.12);
}
.blog-card-image {
  display: block;
  height: 220px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-content {
  padding: 28px 28px 36px;
}
.blog-date {
  font-size: .7rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--peacock-teal); margin-bottom: 12px; display: block;
}
.blog-card-content h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem); margin-bottom: 12px; line-height: 1.15;
}
.blog-card-content h2 a { color: var(--ink); transition: color .3s; }
.blog-card-content h2 a:hover { color: var(--peacock-blue); }
.blog-card-content p {
  font-size: .95rem; color: var(--muted); line-height: 1.65; margin-bottom: 20px;
}

/* ─── Blog Post ─── */
.blog-post {
  background: linear-gradient(180deg, #f8fcf9 0%, var(--bg) 50%, var(--surface-tint) 100%);
  padding: clamp(60px, 8vh, 100px) clamp(20px, 4vw, 64px);
}
.blog-post-inner {
  max-width: 720px; margin: 0 auto;
}
.blog-post-header {
  text-align: center; margin-bottom: 56px;
}
.blog-post-header .eyebrow { margin-bottom: 20px; }
.blog-post-header h1 {
  font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 20px;
}
.blog-post-meta {
  font-size: .85rem; color: var(--muted); letter-spacing: .04em;
}
.blog-post-body {
  font-size: 1.05rem; line-height: 1.8; color: var(--charcoal);
}
.blog-post-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem); margin: 48px 0 20px;
}
.blog-post-body p { margin-bottom: 24px; }
.blog-post-body blockquote {
  border-left: 3px solid var(--peacock-teal);
  padding-left: 24px; margin: 32px 0;
  font-style: italic; color: var(--muted);
}
.blog-post-body ul {
  margin: 20px 0; padding-left: 24px;
}
.blog-post-body li {
  margin-bottom: 10px; color: var(--charcoal);
}
.blog-post-body a {
  color: var(--peacock-blue); border-bottom: 1px solid rgba(31,85,181,.25);
  transition: border-color .3s;
}
.blog-post-body a:hover { border-bottom-color: var(--peacock-blue); }
.blog-post-image {
  margin: 40px 0; border-radius: 4px; overflow: hidden;
}
.blog-post-image img { width: 100%; height: auto; display: block; }
.blog-post-footer {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.blog-post-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.blog-post-tags span {
  font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  background: var(--peacock-light); color: var(--peacock-teal);
  padding: 4px 12px; border-radius: 2px;
}

@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ─── Reservations ─── */
.reservations {
  background: linear-gradient(180deg, var(--peacock-ink) 0%, var(--peacock-navy) 48%, #073f46 100%);
  padding: clamp(100px, 12vh, 160px) clamp(20px, 4vw, 64px);
}
.reservations-inner .eyebrow { color: var(--peacock-cyan); }
.reservations-inner h2 { color: #fff; }
.reservations-inner > p { color: rgba(255,255,255,.7); }
.reservation-form input,
.reservation-form textarea,
.reservation-form select {
  background: rgba(255,255,255,.09);
  border-color: rgba(24,205,218,.20);
  color: #fff;
}
.reservation-form input::placeholder,
.reservation-form textarea::placeholder { color: rgba(255,255,255,.45); }
.reservation-form input:focus,
.reservation-form textarea:focus,
.reservation-form select:focus {
  border-color: var(--peacock-cyan);
  box-shadow: 0 0 0 3px rgba(24,205,218,.14);
}
.reservations-inner {
  max-width: 560px; margin: 0 auto; text-align: center;
}
.reservations-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 24px;
}
.reservations-inner > p {
  font-size: 1rem; margin-bottom: 40px;
}
.reservation-form { text-align: left; }
