/* =============================================================
   MORE THAN COFFEE — PREMIUM DESIGN SYSTEM
   Aesthetic: Warm editorial luxury · Philippine hospitality
   ============================================================= */

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --color-forest:    #2d3d2b;   /* deep forest green — primary */
  --color-canopy:    #3a4d39;   /* mid green — surfaces */
  --color-sage:      #6b7b65;   /* muted sage — secondary text */
  --color-parchment: #ede9dc;   /* warm parchment — page bg */
  --color-cream:     #f7f4ec;   /* soft cream — card bg */
  --color-linen:     #faf8f3;   /* near-white linen */
  --color-gold:      #b8935a;   /* warm gold — accent */
  --color-gold-lt:   #d4a96a;   /* light gold — hover */
  --color-ink:       #1c2619;   /* near-black — headlines */
  --color-mist:      #a8b3a4;   /* soft mist — borders */
  --color-rust:      #8b4513;   /* warm rust — badges */

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-heading:   'Cormorant Garamond', Georgia, serif;
  --font-body:      'DM Sans', system-ui, sans-serif;
  --font-label:     'DM Sans', system-ui, sans-serif;
  --font-mono:      'DM Mono', monospace;

  /* Spacing Scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  /* Radii */
  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(29,37,27,.06), 0 1px 2px rgba(29,37,27,.04);
  --shadow-md:  0 4px 16px rgba(29,37,27,.08), 0 2px 6px rgba(29,37,27,.05);
  --shadow-lg:  0 12px 40px rgba(29,37,27,.12), 0 4px 12px rgba(29,37,27,.07);
  --shadow-xl:  0 24px 64px rgba(29,37,27,.16);

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-std:  cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  180ms;
  --dur-std:   280ms;
  --dur-slow:  500ms;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }

/* ── BASE ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--color-parchment);
  color: var(--color-ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow { max-width: 760px; }
.container--wide   { max-width: 1400px; }

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); letter-spacing: 0.02em; }

p { line-height: 1.75; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: var(--color-forest);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--space-5);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-parchment);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-7);
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237,233,220,.72);
  transition: color var(--dur-fast) var(--ease-std);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-parchment);
  border-bottom-color: var(--color-gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-parchment);
  transition: transform var(--dur-std) var(--ease-out), opacity var(--dur-std);
}

/* Mobile drawer */
.nav-mobile-drawer {
  display: none;
  flex-direction: column;
  background-color: var(--color-forest);
  padding: var(--space-5) var(--space-6) var(--space-6);
  border-top: 1px solid rgba(255,255,255,.07);
  gap: var(--space-4);
}

.nav-mobile-drawer.open { display: flex; }

.nav-mobile-drawer a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(237,233,220,.8);
  padding: var(--space-2) 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color var(--dur-fast) var(--ease-std);
}

.nav-mobile-drawer a:hover,
.nav-mobile-drawer a.active {
  color: var(--color-parchment);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--dur-std) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-gold);
  color: var(--color-forest);
}

.btn--primary:hover {
  background-color: var(--color-gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,147,90,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--color-parchment);
  border: 1px solid rgba(237,233,220,.4);
}

.btn--ghost:hover {
  background: rgba(237,233,220,.1);
  border-color: rgba(237,233,220,.7);
}

.btn--outline-dark {
  background: transparent;
  color: var(--color-forest);
  border: 1.5px solid var(--color-forest);
}

.btn--outline-dark:hover {
  background: var(--color-forest);
  color: var(--color-parchment);
}

/* ── SECTION CHROME ─────────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-8);
}

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

.section-header .eyebrow { margin-bottom: var(--space-3); }

.section-header h2 {
  margin-bottom: var(--space-4);
  color: var(--color-ink);
}

.section-header p {
  color: var(--color-sage);
  font-size: 1.0625rem;
  max-width: 560px;
}

.section-header--center p { margin-inline: auto; }

/* ── DIVIDER ─────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-4) 0;
}

.divider--center { margin-inline: auto; }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform: scale(1.04);
  animation: heroZoom 8s ease-out forwards;
}

.hero-slide.active { opacity: 1; }

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 27, 19, 0.88) 0%,
    rgba(20, 27, 19, 0.42) 50%,
    rgba(20, 27, 19, 0.18) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-parchment);
  padding: 0 0 var(--space-10);
  width: 100%;
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  animation: fadeUp .8s var(--ease-out) .2s both;
}

.hero-content h1 {
  color: var(--color-parchment);
  max-width: 700px;
  animation: fadeUp .8s var(--ease-out) .35s both;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 520px;
  color: rgba(237,233,220,.82);
  animation: fadeUp .8s var(--ease-out) .5s both;
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  animation: fadeUp .8s var(--ease-out) .65s both;
}

.hero-scroll {
  position: absolute;
  bottom: var(--space-7);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(237,233,220,.5);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp .6s var(--ease-out) 1s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

.hero-indicators {
  position: absolute;
  bottom: var(--space-7);
  right: var(--space-8);
  z-index: 2;
  display: flex;
  gap: var(--space-2);
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(237,233,220,.3);
  border: none;
  transition: background var(--dur-std), width var(--dur-std) var(--ease-out);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--color-gold);
  width: 20px;
  border-radius: 3px;
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  background-color: var(--color-cream);
  border-bottom: 1px solid rgba(45,61,43,.07);
  padding: var(--space-5) 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-sage);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.trust-item svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--color-mist);
}

/* ── ABOUT ───────────────────────────────────────────────────── */
.about-section {
  padding: var(--space-10) 0;
  background-color: var(--color-parchment);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.about-text { display: flex; flex-direction: column; gap: var(--space-5); }

.about-text p {
  color: var(--color-sage);
  font-size: 1.0625rem;
}

.about-text p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-ink);
  line-height: 1.55;
  font-style: italic;
}

.about-image-stack {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  right: 0;
  top: 0;
  width: 82%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-img-accent {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 6px solid var(--color-parchment);
  box-shadow: var(--shadow-lg);
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-7);
}

.vm-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid rgba(45,61,43,.07);
}

.vm-card h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.vm-card p {
  color: var(--color-sage);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ── GUEST FAVORITES ─────────────────────────────────────────── */
.favorites-section {
  padding: var(--space-10) 0;
  background: var(--color-ink);
  color: var(--color-parchment);
  overflow: hidden;
}

.favorites-section .section-header h2 { color: var(--color-parchment); }

.favorites-section .section-header p { color: rgba(237,233,220,.65); }

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.fav-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  cursor: pointer;
}

.fav-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.fav-card:hover img { transform: scale(1.06); }

.fav-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,27,19,.85) 0%, transparent 50%);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-1);
}

.fav-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  background: var(--color-gold);
  color: var(--color-forest);
  border-radius: var(--radius-pill);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}

.fav-card-overlay h3 {
  font-size: 1.125rem;
  color: var(--color-parchment);
  font-family: var(--font-display);
  font-weight: 400;
}

.fav-card-overlay p {
  font-size: 0.8125rem;
  color: rgba(237,233,220,.72);
  line-height: 1.5;
}

/* Wide feature card */
.fav-card--wide { grid-column: span 2; aspect-ratio: 16/9; }

/* ── GALLERY SECTIONS ────────────────────────────────────────── */
.gallery-section {
  padding: var(--space-10) 0;
  background: var(--color-parchment);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: var(--space-3);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-std);
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.04);
  opacity: .9;
}

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* Interior grid */
.interior-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.interior-grid .gallery-item { height: 260px; }

/* Community grid */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.community-grid .gallery-item { height: 320px; }

/* ── SIGNATURES SECTION ──────────────────────────────────────── */
.signatures-section {
  padding: var(--space-10) 0;
  background: var(--color-cream);
}

.signatures-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: var(--space-10);
  align-items: start;
}

.signatures-sticky {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.signatures-sticky img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.signature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.signature-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(45,61,43,.08);
  transition: background var(--dur-fast);
}

.signature-item:last-child { border-bottom: none; }

.signature-item-text h3 {
  font-size: 1.2rem;
  color: var(--color-ink);
  margin-bottom: var(--space-1);
}

.signature-item-text p {
  font-size: 0.9rem;
  color: var(--color-sage);
  line-height: 1.6;
}

.signature-item-meta {
  text-align: right;
  flex-shrink: 0;
}

.signature-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-ink);
}

.signature-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── FOOD MENU SECTIONS (on homepage) ───────────────────────── */
.menu-teaser-section {
  padding: var(--space-9) 0;
  background: var(--color-parchment);
}

.menu-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

.menu-teaser-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(45,61,43,.06);
}

.menu-teaser-card-img {
  height: 200px;
  overflow: hidden;
}

.menu-teaser-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.menu-teaser-card:hover .menu-teaser-card-img img {
  transform: scale(1.04);
}

.menu-teaser-card-body {
  padding: var(--space-5) var(--space-6);
}

.menu-teaser-card-body h3 { margin-bottom: var(--space-3); }

.menu-teaser-card-body p {
  color: var(--color-sage);
  font-size: 0.9375rem;
  margin-bottom: var(--space-4);
}

/* ── FULL MENU PAGE ──────────────────────────────────────────── */
.menu-page {
  background: var(--color-parchment);
  min-height: 100vh;
}

.menu-hero {
  background: var(--color-forest);
  color: var(--color-parchment);
  padding: var(--space-10) 0 var(--space-8);
  text-align: center;
}

.menu-hero h1 { color: var(--color-parchment); margin-bottom: var(--space-4); }
.menu-hero p  { color: rgba(237,233,220,.72); font-size: 1.0625rem; }

.menu-nav-sticky {
  position: sticky;
  top: 64px;
  z-index: 800;
  background: var(--color-cream);
  border-bottom: 1px solid rgba(45,61,43,.08);
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-nav-sticky::-webkit-scrollbar { display: none; }

.menu-nav-inner {
  display: flex;
  gap: 0;
  padding: 0 var(--space-6);
  min-width: max-content;
}

.menu-nav-link {
  display: inline-flex;
  align-items: center;
  padding: 14px var(--space-5);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-sage);
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
  white-space: nowrap;
}

.menu-nav-link:hover { color: var(--color-ink); }
.menu-nav-link.active { color: var(--color-forest); border-bottom-color: var(--color-gold); }

.menu-content {
  padding: var(--space-8) 0 var(--space-10);
}

.menu-section {
  padding: var(--space-7) 0;
  border-bottom: 1px solid rgba(45,61,43,.06);
  scroll-margin-top: 130px;
}

.menu-section:last-child { border-bottom: none; }

.menu-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  color: var(--color-ink);
  margin-bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.menu-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(45,61,43,.1);
}

.menu-subcategory {
  margin-bottom: var(--space-7);
}

.menu-subcategory-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(184,147,90,.2);
}

/* Food items */
.food-list {
  display: flex;
  flex-direction: column;
}

.food-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-5);
  padding: 10px 0;
  border-bottom: 1px dashed rgba(45,61,43,.07);
  transition: background var(--dur-fast);
}

.food-item:last-child { border-bottom: none; }

.food-item:hover { background: rgba(45,61,43,.02); margin-inline: calc(var(--space-3) * -1); padding-inline: var(--space-3); border-radius: var(--radius-sm); }

.food-name {
  font-size: 0.9375rem;
  color: var(--color-ink);
  flex: 1;
}

.food-note {
  font-size: 0.8rem;
  color: var(--color-sage);
  font-style: italic;
  margin-left: var(--space-2);
}

.food-price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-ink);
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* Drink grid */
.drink-table {
  width: 100%;
  border-collapse: collapse;
}

.drink-table thead tr {
  border-bottom: 2px solid rgba(45,61,43,.1);
}

.drink-table th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-sage);
  padding: 0 0 var(--space-3);
  text-align: left;
}

.drink-table th:not(:first-child) { text-align: center; }

.drink-table tbody tr {
  border-bottom: 1px dashed rgba(45,61,43,.06);
  transition: background var(--dur-fast);
}

.drink-table tbody tr:hover { background: rgba(45,61,43,.025); }

.drink-table td {
  padding: 10px 0;
  font-size: 0.9375rem;
  color: var(--color-ink);
}

.drink-table td:not(:first-child) {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
}

.drink-table td.na {
  color: var(--color-mist);
  font-size: 0.75rem;
}

/* Ice blended grid */
.blended-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-2) var(--space-8);
}

.blended-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(45,61,43,.07);
  font-size: 0.9375rem;
}

.blended-item .price {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
}

/* ── REWARDS PAGE ────────────────────────────────────────────── */
.rewards-page {
  background: var(--color-parchment);
}

.rewards-hero {
  background: var(--color-forest);
  color: var(--color-parchment);
  padding: var(--space-10) 0 var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rewards-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(184,147,90,.15) 0%, transparent 70%);
}

.rewards-hero h1 {
  color: var(--color-parchment);
  margin-bottom: var(--space-4);
  position: relative;
}

.rewards-hero p {
  color: rgba(237,233,220,.72);
  font-size: 1.0625rem;
  max-width: 520px;
  margin-inline: auto;
  position: relative;
}

.rewards-content {
  padding: var(--space-10) 0;
}

.rewards-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-10);
  align-items: start;
}

.rewards-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.rewards-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-5);
  align-items: start;
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(45,61,43,.07);
}

.rewards-step:last-child { border-bottom: none; }

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 1.25rem;
  color: var(--color-ink);
  margin-bottom: var(--space-2);
}

.step-text p {
  color: var(--color-sage);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.rewards-perks {
  margin-top: var(--space-8);
  padding: var(--space-6);
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(45,61,43,.06);
}

.rewards-perks h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-5);
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
  color: var(--color-ink);
}

.perk-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.rewards-visuals {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.rewards-visuals img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.rewards-visuals img:first-child { height: 280px; }
.rewards-visuals img:nth-child(2) { height: 180px; }
.rewards-visuals img:last-child { height: 180px; }

.rewards-note {
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-6);
  background: rgba(184,147,90,.08);
  border: 1px solid rgba(184,147,90,.25);
  border-radius: var(--radius-lg);
  color: var(--color-sage);
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.7;
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-page {
  background: var(--color-parchment);
}

.contact-hero {
  background: var(--color-forest);
  padding: var(--space-10) 0 var(--space-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 120%, rgba(184,147,90,.1) 0%, transparent 70%);
}

.contact-hero h1 { color: var(--color-parchment); position: relative; margin-bottom: var(--space-4); }
.contact-hero p  { color: rgba(237,233,220,.72); font-size: 1.0625rem; position: relative; }

.contact-content {
  padding: var(--space-10) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: var(--space-8);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-6); }

.contact-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 1px solid rgba(45,61,43,.06);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-card-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact-card-body p {
  font-size: 0.9375rem;
  color: var(--color-ink);
  line-height: 1.7;
}

.contact-card-body a {
  color: var(--color-ink);
  transition: color var(--dur-fast);
}

.contact-card-body a:hover { color: var(--color-gold); }

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-1) var(--space-5);
}

.hours-row {
  display: contents;
}

.hours-row span:first-child {
  font-size: 0.875rem;
  color: var(--color-sage);
}

.hours-row span:last-child {
  font-size: 0.875rem;
  color: var(--color-ink);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: var(--space-3);
  align-items: center;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  background: var(--color-parchment);
  border: 1px solid rgba(45,61,43,.1);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-forest);
  transition: all var(--dur-fast) var(--ease-std);
}

.social-link:hover {
  background: var(--color-forest);
  color: var(--color-parchment);
  border-color: var(--color-forest);
}

.social-link img {
  width: 16px;
  height: 16px;
  filter: none;
  display: inline;
}

.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(45,61,43,.08);
  height: 480px;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
#image-lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(10,12,9,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  cursor: zoom-out;
  padding: var(--space-6);
}

#image-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--color-forest);
  color: rgba(237,233,220,.65);
  padding: var(--space-10) 0 var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-parchment);
  margin-bottom: var(--space-3);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(237,233,220,.65);
  transition: color var(--dur-fast);
}

.footer-col a:hover { color: var(--color-parchment); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-6);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll[data-delay="1"] { transition-delay: .1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: .2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: .3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: .4s; }

/* ── SECTION PADDING DEFAULTS ────────────────────────────────── */
.section-pad { padding: var(--space-10) 0; }
.section-pad--sm { padding: var(--space-8) 0; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .favorites-grid { grid-template-columns: repeat(2, 1fr); }
  .fav-card--wide { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .about-image-stack { height: 400px; }
  .signatures-layout { grid-template-columns: 1fr; }
  .signatures-sticky { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rewards-layout { grid-template-columns: 1fr; }
  .rewards-visuals { display: grid; grid-template-columns: repeat(3, 1fr); }
  .rewards-visuals img { height: 200px !important; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --space-10: 80px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-brand { font-size: 1.1rem; }

  .hero { height: 85vh; }
  .hero-indicators { display: none; }

  .trust-bar-inner { gap: var(--space-5); }
  .trust-divider { display: none; }

  .favorites-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .fav-card--wide { grid-column: span 2; }

  .interior-grid { grid-template-columns: repeat(2, 1fr); }
  .interior-grid .gallery-item { height: 180px; }

  .community-grid { grid-template-columns: 1fr 1fr; }
  .community-grid .gallery-item { height: 220px; }

  .vision-mission-grid { grid-template-columns: 1fr; }

  .menu-teaser-grid { grid-template-columns: 1fr; }

  .blended-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .rewards-visuals { grid-template-columns: 1fr; }
  .rewards-visuals img { height: 220px !important; }

  .map-container { height: 300px; }
}

@media (max-width: 480px) {
  .favorites-grid { grid-template-columns: 1fr; }
  .fav-card--wide { grid-column: span 1; }
  .interior-grid { grid-template-columns: 1fr; }
  .interior-grid .gallery-item { height: 220px; }
  .community-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}
