/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Logo-derived palette */
  --gold:       #C9A84C;
  --gold-light: #E0C47A;
  --gold-dim:   #9E8038;
  --ivory:      #F7F3EC;
  --ivory-mid:  #EDE5D4;
  --ink:        #131210;
  --ink-mid:    #1E1C18;
  --ink-soft:   #2E2B24;
  --stone:      #6B6455;
  --stone-light:#A89E8C;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
  --font-script:'Dancing Script', cursive;
}

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

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── Utility ── */
.section { min-height: 100vh; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 24px 80px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub { color: var(--stone); font-size: 1.05rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(201,168,76,.5);
}
.btn-outline:hover {
  background: rgba(201,168,76,.12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--ink);
}

.text-gold { color: var(--gold); }

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease forwards;
}
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
#navbar.scrolled {
  background: rgba(19,18,16,.95);
  backdrop-filter: blur(14px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(201,168,76,.15);
}

.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: rgba(247,243,236,.65);
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1000;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--ivory);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero-section {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(19,18,16,.92) 0%,
    rgba(30,28,24,.75) 55%,
    rgba(201,168,76,.12) 100%
  );
  z-index: 1;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Blobs — gold tones only */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .28;
}
.blob-1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, #C9A84C 0%, transparent 65%);
  top: -180px; right: -120px;
  animation: blobFloat 9s ease-in-out infinite;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #9E8038 0%, transparent 65%);
  bottom: -120px; left: -60px;
  animation: blobFloat 11s ease-in-out infinite reverse;
}
.blob-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #E0C47A 0%, transparent 65%);
  top: 50%; left: 45%;
  transform: translate(-50%, -50%);
  animation: blobFloat 13s ease-in-out infinite;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(22px, -28px) scale(1.04); }
  66%  { transform: translate(-14px, 18px) scale(.96); }
}

.coffee-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,.08);
}
.ring-1 {
  width: 560px; height: 560px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ringPulse 5s ease-in-out infinite;
}
.ring-2 {
  width: 860px; height: 860px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ringPulse 5s ease-in-out infinite .6s;
}
@keyframes ringPulse {
  0%, 100% { opacity: .06; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: .14; transform: translate(-50%,-50%) scale(1.02); }
}

.hero-cup-art {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: min(280px, 38vw);
  opacity: .1;
  animation: cupFloat 6s ease-in-out infinite;
}
@keyframes cupFloat {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 16px)); }
}
.cup-svg { width: 100%; }

.steam { animation: steamRise 2.5s ease-in-out infinite; }
.steam-1 { animation-delay: 0s; }
.steam-2 { animation-delay: .4s; }
.steam-3 { animation-delay: .8s; }
@keyframes steamRise {
  0%   { opacity: 0; transform: translateY(8px); }
  40%  { opacity: .5; }
  100% { opacity: 0; transform: translateY(-8px); }
}

.float-item {
  position: absolute;
  font-size: 1.5rem;
  opacity: .15;
  animation: floatRandom 7s ease-in-out infinite;
}
.fi-1 { top: 20%; left: 8%;  animation-delay: 0s; }
.fi-2 { top: 60%; left: 5%;  animation-delay: 1.5s; }
.fi-3 { top: 35%; right: 30%; animation-delay: .8s; }
.fi-4 { bottom: 25%; right: 8%; font-size: 1rem; animation-delay: 2s; color: var(--gold); opacity: .35; }
.fi-5 { top: 15%; right: 20%; font-size: .9rem; animation-delay: 3s; color: var(--gold-light); opacity: .3; }
@keyframes floatRandom {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%  { transform: translateY(-20px) rotate(10deg); }
  66%  { transform: translateY(10px) rotate(-5deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  text-align: center;
}
.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  color: rgba(247,243,236,.5);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(201,168,76,.4);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: .4; }
  50%       { transform: scaleY(1.3); opacity: .9; }
}

/* ══════════════════════════════
   SEASONAL
══════════════════════════════ */
.seasonal-section {
  background: var(--ink-mid);
  padding: 100px 24px;
  overflow: hidden;
  position: relative;
}
.seasonal-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(201,168,76,.18) 0%, transparent 60%);
}
.seasonal-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.seasonal-badge {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 32px;
  font-weight: 600;
}
.seasonal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.seasonal-script {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: rgba(247,243,236,.45);
  margin-bottom: 12px;
}
.seasonal-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 24px;
}
.seasonal-body { color: rgba(247,243,236,.55); font-size: 1rem; line-height: 1.8; }

.seasonal-cards { display: flex; flex-direction: column; gap: 14px; }
.seasonal-card {
  background: rgba(247,243,236,.04);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: 8px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all .3s ease;
}
.seasonal-card:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.4);
  transform: translateX(6px);
}
.sc-featured {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.45);
}
.sc-emoji { font-size: 2rem; flex-shrink: 0; }
.seasonal-card h4 { color: var(--ivory); font-size: 1rem; margin-bottom: 4px; font-weight: 600; }
.seasonal-card p  { color: rgba(247,243,236,.5); font-size: .86rem; }

/* ══════════════════════════════
   MENU
══════════════════════════════ */
.menu-section { background: var(--ivory); }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 10px 26px;
  border: 1.5px solid rgba(19,18,16,.18);
  border-radius: 2px;
  background: transparent;
  color: var(--stone);
  font-family: var(--font-sans);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}
.menu-tab:hover  { border-color: var(--gold); color: var(--gold); }
.menu-tab.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  display: none;
}
.menu-grid.active { display: grid; }

.menu-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(19,18,16,.06);
  box-shadow: 0 2px 16px rgba(19,18,16,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(19,18,16,.12); }

.mc-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Beverage cards — gold/ivory/ink tones */
.mc-img-1  { background: linear-gradient(135deg, #f0e4b8 0%, #d4b86a 100%); }
.mc-img-2  { background: linear-gradient(135deg, #e8e0cc 0%, #c4b485 100%); }
.mc-img-3  { background: linear-gradient(135deg, #d8e8c8 0%, #c4c88c 100%); }
.mc-img-4  { background: linear-gradient(135deg, #f0e8d0 0%, #d4b86a 100%); }
.mc-img-5  { background: linear-gradient(135deg, #2e2b24 0%, #131210 100%); }
.mc-img-6  { background: linear-gradient(135deg, #eeddd4 0%, #c9a07a 100%); }
/* Mains */
.mc-img-m1 { background: linear-gradient(135deg, #f0e0a0 0%, #c9a84c 100%); }
.mc-img-m2 { background: linear-gradient(135deg, #f0dfc0 0%, #d4b06a 100%); }
.mc-img-m3 { background: linear-gradient(135deg, #d0e4c0 0%, #9eb08a 100%); }
.mc-img-m4 { background: linear-gradient(135deg, #e0d8c8 0%, #a09070 100%); }
/* Sweets */
.mc-img-s1 { background: linear-gradient(135deg, #faf0cc 0%, #e0c060 100%); }
.mc-img-s2 { background: linear-gradient(135deg, #2e2b24 0%, #131210 100%); }
.mc-img-s3 { background: linear-gradient(135deg, #f4edd8 0%, #d4b86a 100%); }
.mc-img-s4 { background: linear-gradient(135deg, #f0e4cc 0%, #c9a84c 100%); }

/* Emoji overlays */
.mc-img-1::before  { content: '🍑'; position: absolute; font-size: 4rem; }
.mc-img-2::before  { content: '🫐'; position: absolute; font-size: 4rem; }
.mc-img-3::before  { content: '🥭'; position: absolute; font-size: 4rem; }
.mc-img-4::before  { content: '🍎'; position: absolute; font-size: 4rem; }
.mc-img-5::before  { content: '☕'; position: absolute; font-size: 4rem; }
.mc-img-6::before  { content: '🌹'; position: absolute; font-size: 4rem; }
.mc-img-m1::before { content: '🥭'; position: absolute; font-size: 4rem; }
.mc-img-m2::before { content: '🥙'; position: absolute; font-size: 4rem; }
.mc-img-m3::before { content: '🥑'; position: absolute; font-size: 4rem; }
.mc-img-m4::before { content: '🍄'; position: absolute; font-size: 4rem; }
.mc-img-s1::before { content: '🥞'; position: absolute; font-size: 4rem; }
.mc-img-s2::before { content: '🍫'; position: absolute; font-size: 4rem; }
.mc-img-s3::before { content: '🍪'; position: absolute; font-size: 4rem; }
.mc-img-s4::before { content: '🎂'; position: absolute; font-size: 4rem; }

.mc-overlay-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(19,18,16,.85), transparent);
  color: var(--ivory);
  padding: 28px 16px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
  font-family: var(--font-script);
  font-size: 1rem;
}
.menu-card:hover .mc-overlay-text { opacity: 1; transform: translateY(0); }

.mc-body { padding: 20px; }
.mc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  gap: 8px;
}
.mc-top h4 { font-size: 1rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.mc-price   { font-size: .95rem; font-weight: 700; color: var(--gold-dim); white-space: nowrap; }
.mc-body p  { font-size: .84rem; color: var(--stone); line-height: 1.65; margin-bottom: 12px; }
.mc-tag {
  display: inline-block;
  background: rgba(201,168,76,.1);
  color: var(--gold-dim);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 600;
  border: 1px solid rgba(201,168,76,.25);
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about-section { background: var(--ivory-mid); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-frame {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--ink);
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #2e2b24 0%, #131210 100%);
  padding: 40px;
}
.aip-decor {
  display: flex;
  gap: 20px;
  font-size: 3rem;
  margin-bottom: 24px;
  opacity: .5;
}
.aip-shelf {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,.2);
  margin: 8px 0;
}
.aip-caption {
  color: rgba(247,243,236,.35);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--ink);
  padding: 20px 24px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(201,168,76,.35);
}
.aac-year { display: block; font-size: 2rem; font-weight: 900; font-family: var(--font-serif); line-height: 1; }
.aac-line  { font-size: .75rem; opacity: .75; letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; display: block; }
.about-dot-grid {
  position: absolute;
  top: -24px; left: -24px;
  width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(201,168,76,.35) 1px, transparent 1px);
  background-size: 12px 12px;
}

.about-text .section-title  { text-align: left; margin-bottom: 24px; }
.about-text p               { color: var(--stone); font-size: 1rem; line-height: 1.85; margin-bottom: 16px; }
.about-text strong          { color: var(--ink); }

.about-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(19,18,16,.1);
  border-bottom: 1px solid rgba(19,18,16,.1);
}
.as-item  { text-align: center; }
.as-num   { display: block; font-family: var(--font-serif); font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.as-label { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone-light); }

.about-brands { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.brand-pill {
  padding: 9px 20px;
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 2px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-dim);
  letter-spacing: .06em;
  transition: all .25s ease;
}
.brand-pill:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.brand-times      { font-size: 1.1rem; font-weight: 700; color: var(--gold); }

/* ══════════════════════════════
   LOCATIONS
══════════════════════════════ */
.locations-section { background: var(--ink-soft); }
.locations-section .section-title { color: var(--ivory); }
.locations-section .section-sub   { color: var(--stone-light); }
.locations-section .section-label { color: var(--gold); }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.location-card {
  background: rgba(247,243,236,.04);
  border: 1px solid rgba(201,168,76,.14);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s ease, transform .3s ease;
}
.location-card:hover { border-color: rgba(201,168,76,.5); transform: translateY(-4px); }
.lc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 0;
}
.lc-pin         { font-size: 1.8rem; }
.lc-header h3   { font-family: var(--font-serif); font-size: 1.4rem; color: var(--ivory); }
.lc-city        { font-size: .78rem; color: rgba(247,243,236,.4); letter-spacing: .12em; }
.lc-map         { margin: 16px 0 0; }
.lc-map iframe  { border-radius: 0; filter: grayscale(50%) sepia(15%); }
.lc-info        { padding: 20px 24px 24px; }
.lc-address     { color: var(--ivory); font-size: .92rem; margin-bottom: 8px; }
.lc-hours       { color: rgba(247,243,236,.5); font-size: .86rem; display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.lc-btn         { width: 100%; justify-content: center; }

/* ══════════════════════════════
   VIBES
══════════════════════════════ */
.vibes-section  { background: var(--ivory); overflow: hidden; }
.vibes-header   { text-align: center; }
.ig-handle      { color: var(--gold); font-weight: 600; font-size: 1.05rem; }
.ig-handle:hover{ text-decoration: underline; }

.vibes-strip-wrapper {
  overflow: hidden;
  margin: 40px 0;
  cursor: grab;
  user-select: none;
}
.vibes-strip-wrapper:active { cursor: grabbing; }

.vibes-strip {
  display: flex;
  gap: 16px;
  padding: 0 24px;
  animation: stripScroll 32s linear infinite;
  width: max-content;
}
.vibes-strip:hover { animation-play-state: paused; }

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.vibe-tile {
  width: 240px;
  height: 280px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: transform .3s ease;
}
.vibe-tile:hover { transform: scale(1.04); }
.vt-content { text-align: center; }
.vt-emoji   { font-size: 2.8rem; display: block; margin-bottom: 14px; }
.vt-content p { font-size: .92rem; line-height: 1.55; font-weight: 500; }

/* Vibe tile colour variants — all from logo palette */
.vt-dark  { background: var(--ink);     color: var(--ivory); }
.vt-warm  { background: linear-gradient(135deg, #f0e4b8, #c9a84c); color: var(--ink); }
.vt-sage  { background: linear-gradient(135deg, #d8e4c8, #a4b888); color: var(--ink-soft); }
.vt-cream { background: var(--ivory-mid); border: 1px solid rgba(201,168,76,.2); color: var(--ink); }

.vibes-cta { text-align: center; padding-bottom: 80px; }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer-section {
  background: var(--ink);
  padding: 80px 24px 40px;
  border-top: 1px solid rgba(201,168,76,.12);
}
.footer-inner    { max-width: 1200px; margin: 0 auto; }
.footer-logo-wrap{ text-align: center; margin-bottom: 60px; }
.footer-logo     { height: 80px; width: auto; margin: 0 auto 20px; }
.footer-tagline  {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: rgba(247,243,236,.3);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,243,236,.06);
}
.footer-col h5 {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col p   { color: rgba(247,243,236,.4); font-size: .86rem; line-height: 1.85; margin-bottom: 6px; }
.footer-col a   { color: rgba(247,243,236,.4); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom  {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p    { color: rgba(247,243,236,.2); font-size: .78rem; }
.footer-powered a   { color: rgba(247,243,236,.2); }
.footer-powered a:hover { color: var(--gold); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 900px) {
  .seasonal-content { grid-template-columns: 1fr; gap: 40px; }
  .about-inner      { grid-template-columns: 1fr; gap: 40px; }
  .about-visual     { order: -1; }
  .about-accent-card{ bottom: -16px; right: -12px; }
  .locations-grid   { grid-template-columns: 1fr; }
  .footer-cols      { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #navbar         { padding: 16px 24px; }
  #navbar.scrolled{ padding: 12px 24px; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(19,18,16,.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 999;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a    { font-size: 1.1rem; }
  .nav-toggle     { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .hero-cup-art   { display: none; }
  .hero-title     { font-size: clamp(2.2rem, 9vw, 3.5rem); }

  .section-inner  { padding: 80px 20px 60px; }
  .menu-tabs      { gap: 6px; }
  .menu-tab       { padding: 8px 18px; font-size: .76rem; }
  .menu-grid      { grid-template-columns: 1fr 1fr; }

  .vibe-tile      { width: 200px; height: 240px; }
  .footer-cols    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .menu-grid    { grid-template-columns: 1fr; }
  .about-stats  { gap: 20px; }
  .hero-ctas    { flex-direction: column; align-items: center; }
  .btn          { padding: 13px 28px; }
}
