/* ============================================================
   SARAY BAKERY & PATISSERIE — Main Stylesheet
   Brand: black/near-black · creamy white · stone · gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Palette */
  --clr-black:       #1a1917;
  --clr-bg:          #faf8f3;
  --clr-surface:     #ffffff;
  --clr-stone:       #f0ece4;
  --clr-stone-mid:   #e0dbd1;
  --clr-stone-dark:  #c8c2b7;
  --clr-gold:        #b8963e;
  --clr-gold-light:  #d4b96a;
  --clr-gold-pale:   #ede0c0;
  --clr-text:        #1a1917;
  --clr-muted:       #7a756e;

  /* Typography */
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Jost', system-ui, sans-serif;
  --fw-light:  300;
  --fw-reg:    400;
  --fw-mid:    500;
  --fw-semi:   600;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  /* Misc */
  --radius-sm: 3px;
  --radius-md: 8px;
  --transition: 0.32s ease;
  --shadow-soft: 0 4px 28px rgba(26,25,23,0.07);
  --shadow-card: 0 10px 48px rgba(26,25,23,0.11);
  --max-w: 1160px;
  --nav-h: 76px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-sans);
  font-weight: var(--fw-light);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  line-height: 1.15;
  color: var(--clr-black);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: var(--fw-semi); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem);   font-weight: var(--fw-semi); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: var(--fw-mid); }
h4 { font-size: 1.1rem; font-weight: var(--fw-mid); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: var(--fw-mid);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.section-header { text-align: center; margin-bottom: var(--space-lg); }
.section-header h2 { margin-top: var(--space-xs); }
.section-header p {
  max-width: 540px;
  margin: var(--space-sm) auto 0;
  color: var(--clr-muted);
  font-size: 1.05rem;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { width: 90%; max-width: var(--max-w); margin-inline: auto; }
section { padding: var(--space-xl) 0; }

/* Gold rule divider */
.rule {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: var(--space-sm) 0 var(--space-md);
}
.rule::before, .rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-gold-pale);
}
.rule-diamond {
  width: 6px; height: 6px;
  background: var(--clr-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
/* Centered short rule */
.divider {
  display: block;
  width: 48px; height: 1.5px;
  background: var(--clr-gold);
  border: none;
  margin: var(--space-sm) auto var(--space-md);
}
.divider-left { margin-left: 0; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.73rem;
  font-weight: var(--fw-mid);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.95em 2.4em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--clr-black);
  color: #fff;
}
.btn-primary:hover {
  background: #2e2c29;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,25,23,0.22);
}
.btn-outline {
  background: transparent;
  color: var(--clr-black);
  border: 1px solid var(--clr-black);
}
.btn-outline:hover {
  background: var(--clr-black);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-gold {
  background: var(--clr-gold);
  color: #fff;
  border: 1px solid var(--clr-gold);
}
.btn-gold:hover {
  background: #a0822f;
  border-color: #a0822f;
  transform: translateY(-2px);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(250,248,243,0.96);
  box-shadow: 0 1px 0 var(--clr-stone-mid);
  backdrop-filter: blur(10px);
}
.nav-inner {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
  transition: opacity var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: var(--fw-mid);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-black);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--clr-gold);
  transition: right 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.site-nav.hero-nav .nav-links a { color: rgba(255,255,255,0.85); }
.site-nav.hero-nav .nav-links a:hover { color: #fff; }
.site-nav.hero-nav .nav-links a::after { background: var(--clr-gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--clr-black);
  transition: var(--transition);
}
.site-nav.hero-nav .hamburger span { background: #fff; }

@media (max-width: 700px) {
  .hamburger { display: flex; }
  .nav-cta    { display: none; }
  .nav-links {
    position: fixed;
    inset: 0 0 0 35%;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--clr-surface);
    padding: var(--space-xl) var(--space-lg);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -6px 0 40px rgba(26,25,23,0.12);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 0.9rem; color: var(--clr-black) !important; }
}

/* ── VIDEO GALLERY HERO ──────────────────────────────────────── */
.video-gallery-hero {
  background: var(--clr-black);
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Top intro bar */
.vgh-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0 var(--space-md);
  flex-wrap: wrap;
}
.vgh-intro-text .eyebrow { color: var(--clr-gold-light); margin-bottom: 6px; }
.vgh-intro-text h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  margin-bottom: 8px;
}
.vgh-intro-text h1 em {
  font-style: italic;
  font-weight: var(--fw-light);
  color: var(--clr-gold-light);
}
.vgh-intro-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
  max-width: 420px;
}
.vgh-intro-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Large logo on the right of the intro */
.vgh-intro-logo {
  flex-shrink: 0;
}
.vgh-intro-logo img {
  width: 240px;
  height: 240px;
  /* White ring gives the circle definition on the dark background */
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.12));
}

@media (max-width: 700px) {
  .vgh-intro-logo { display: none; }
}

/* Gold rule below intro */
.vgh-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,150,62,0.4), transparent);
  margin-bottom: var(--space-md);
}

/* Gallery track */
.vgh-track-wrap {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Bleed edge-to-edge */
  margin: 0 -5vw;
  padding: 0 5vw var(--space-sm);
  cursor: grab;
}
.vgh-track-wrap:active { cursor: grabbing; }
.vgh-track-wrap::-webkit-scrollbar { display: none; }

.vgh-track {
  display: flex;
  gap: 20px;
  width: max-content;
  align-items: flex-start;
}

/* Individual video card */
.vgh-card {
  width: 310px;
  aspect-ratio: 9/16;
  flex-shrink: 0;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #111;
  position: relative;
}

/* The video itself */
.vgh-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Credit overlay — sits at the bottom of each card */
.vgh-credit {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vgh-card:hover .vgh-credit { opacity: 1; }

.vgh-credit-user {
  font-size: 0.78rem;
  font-weight: var(--fw-mid);
  color: #fff;
  letter-spacing: 0.04em;
}
.vgh-credit-user::before {
  content: '@ ';
  color: var(--clr-gold-light);
  font-style: normal;
}
.vgh-credit a {
  font-size: 0.65rem;
  font-weight: var(--fw-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.vgh-credit a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

/* Placeholder card — shown until video file is added */
.vgh-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #1a1917;
  border: 1px dashed rgba(184,150,62,0.3);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: var(--space-md);
}
.vgh-placeholder .ph-icon {
  font-size: 2.2rem;
  opacity: 0.35;
}
.vgh-placeholder strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 2px;
}
.vgh-placeholder span {
  font-size: 0.75rem;
  color: rgba(184,150,62,0.55);
  line-height: 1.5;
}

/* Drag-scroll hint arrows */
.vgh-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 5% var(--space-sm);
}
.vgh-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.vgh-nav button:hover {
  background: rgba(184,150,62,0.2);
  border-color: var(--clr-gold);
  color: #fff;
}

@media (max-width: 700px) {
  .vgh-intro { flex-direction: column; align-items: flex-start; }
  .vgh-card  { width: 290px; }
}

/* ── INFO STRIP ─────────────────────────────────────────────── */
.info-strip {
  background: var(--clr-black);
  padding: var(--space-md) 0;
  border-top: 1px solid rgba(184,150,62,0.3);
  border-bottom: 1px solid rgba(184,150,62,0.3);
}
.info-strip-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  text-align: center;
}
.info-item { color: var(--clr-stone-dark); }
.info-item .info-label {
  font-size: 0.65rem;
  font-weight: var(--fw-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: block;
  margin-bottom: 4px;
}
.info-item strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: var(--fw-mid);
  color: #fff;
  line-height: 1.4;
}

/* ── ABOUT TEASER ───────────────────────────────────────────── */
.about-teaser { background: var(--clr-surface); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
/* Gold accent frame */
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 20px -20px -20px 20px;
  border: 1px solid var(--clr-gold-pale);
  border-radius: var(--radius-md);
  z-index: -1;
}
.about-text p {
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
  font-size: 1.02rem;
}
.about-text p:last-of-type { margin-bottom: var(--space-md); }

@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap::after { display: none; }
}

/* ── HIGHLIGHTS ─────────────────────────────────────────────── */
.highlights { background: var(--clr-bg); }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.highlight-card {
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}
.card-img {
  aspect-ratio: 16/10;
  background: var(--clr-stone);
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.highlight-card:hover .card-img img { transform: scale(1.04); }
/* Placeholder fill when no image */
.card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--clr-stone-dark);
}
.card-body { padding: var(--space-md) var(--space-md) 1.5rem; }
.card-body .eyebrow { margin-bottom: 6px; }
.card-body h3 { margin-bottom: 10px; font-size: 1.5rem; }
.card-body p { color: var(--clr-muted); font-size: 0.95rem; line-height: 1.65; }

/* ── COFFEE FEATURE ─────────────────────────────────────────── */
.coffee-feature {
  position: relative;
  background: var(--clr-black);
  overflow: hidden;
}
.coffee-feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/coffee-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
}
/* Stone/marble panel on right */
.coffee-feature::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(184,150,62,0.15);
}
.coffee-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.coffee-text .eyebrow { color: var(--clr-gold-light); }
.coffee-text h2 { color: #fff; margin: var(--space-xs) 0 var(--space-sm); }
.coffee-text p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: var(--space-sm); }
.coffee-text p:last-of-type { margin-bottom: var(--space-md); }

.coffee-offerings { position: relative; z-index: 1; }
.coffee-col-label {
  font-size: 0.65rem;
  font-weight: var(--fw-mid);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
  display: block;
}
.coffee-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-md);
}
.coffee-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: var(--space-sm);
}
.coffee-list li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.coffee-list .item-name {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}
.coffee-list .item-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
  display: block;
}

@media (max-width: 760px) {
  .coffee-inner { grid-template-columns: 1fr; }
  .coffee-feature::after { display: none; }
}

/* ── STONE SECTION (marble/travertine feel) ─────────────────── */
.stone-section {
  background: var(--clr-stone);
  position: relative;
}
.stone-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-gold-pale), transparent);
}
.stone-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--clr-gold-pale), transparent);
}

/* ── PAGE HERO ──────────────────────────────────────────────── */
.page-hero {
  background: var(--clr-black);
  padding: calc(var(--nav-h) + var(--space-lg)) 0 var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero.jpg') center/cover no-repeat;
  opacity: 0.1;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero .eyebrow { color: var(--clr-gold-light); }
.page-hero p {
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: var(--space-sm) auto 0;
  font-size: 1.05rem;
}
/* Two-column layout for secondary page heroes */
.page-hero-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: center;
  text-align: left;
}
.page-hero-logo img {
  width: 170px;
  height: 170px;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.12));
  display: block;
}
/* Override the centered text default when split layout is used */
.page-hero-split .page-hero-inner { text-align: left; }
.page-hero-split .page-hero-inner p { margin-left: 0; }

@media (max-width: 600px) {
  .page-hero-split {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .page-hero-logo { display: none; }
  .page-hero-split .page-hero-inner { text-align: center; }
  .page-hero-split .page-hero-inner p { margin-inline: auto; }
}

/* Gold border bottom */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--clr-gold), transparent);
  z-index: 2;
}

/* ── MENU PAGE ──────────────────────────────────────────────── */
.menu-tabs {
  background: var(--clr-surface);
  border-bottom: 1px solid var(--clr-stone-mid);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}
.menu-tabs-inner {
  width: 90%;
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-tabs-inner::-webkit-scrollbar { display: none; }

[data-tab-btn] {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: var(--fw-mid);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
}
[data-tab-btn]:hover { color: var(--clr-black); }
[data-tab-btn].active {
  color: var(--clr-black);
  border-bottom-color: var(--clr-gold);
}

.menu-panel { padding: var(--space-lg) 0 var(--space-xl); }
.menu-panel-header {
  margin-bottom: var(--space-lg);
}
.menu-panel-header h2 { margin-top: var(--space-xs); }
.menu-panel-header p { color: var(--clr-muted); font-size: 1rem; margin-top: var(--space-xs); max-width: 560px; }

.menu-rotating-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-gold-pale);
  border-left: 2px solid var(--clr-gold);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--clr-black);
  font-size: 1rem;
  margin-bottom: var(--space-lg);
}
.menu-rotating-note::before {
  content: '✦';
  color: var(--clr-gold);
  font-style: normal;
  font-size: 0.75rem;
}

/* Menu grid & items */
.menu-category { margin-bottom: var(--space-lg); }
.menu-category-title {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: var(--fw-semi);
  color: var(--clr-black);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--clr-stone-mid);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.menu-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-gold-pale);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0 var(--space-lg);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--clr-stone);
  gap: var(--space-sm);
}
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: var(--fw-mid);
  color: var(--clr-black);
  line-height: 1.3;
}
.menu-item-desc {
  font-size: 0.83rem;
  color: var(--clr-muted);
  margin-top: 2px;
}
.menu-item-price {
  font-family: var(--ff-serif);
  font-size: 1rem;
  color: var(--clr-gold);
  white-space: nowrap;
  font-weight: var(--fw-mid);
  flex-shrink: 0;
}

/* Coffee customization note */
.customize-note {
  background: var(--clr-stone);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}
.customize-note h4 { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--ff-sans); color: var(--clr-muted); margin-bottom: var(--space-sm); }
.customize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-sm);
}
.customize-group span:first-child {
  display: block;
  font-size: 0.68rem;
  font-weight: var(--fw-mid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 6px;
}
.customize-group ul { display: flex; flex-direction: column; gap: 4px; }
.customize-group li { font-size: 0.88rem; color: var(--clr-muted); }

/* ── VISIT PAGE ─────────────────────────────────────────────── */
.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: start;
}
.visit-info-block { margin-bottom: var(--space-lg); }
.visit-info-block:last-child { margin-bottom: 0; }
.visit-info-block h3 { margin-bottom: var(--space-sm); font-size: 1.5rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-stone);
  font-size: 0.95rem;
  line-height: 1.4;
}
.hours-table td:first-child { color: var(--clr-black); font-weight: var(--fw-mid); }
.hours-table td:last-child { text-align: right; color: var(--clr-muted); }
.hours-table tr:last-child td { border-bottom: none; }

.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list a, .contact-list span {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--clr-text);
  font-size: 0.97rem;
  transition: color var(--transition);
}
.contact-list a:hover { color: var(--clr-gold); }
.ci {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--clr-gold);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/4;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
/* Placeholder until map is embedded */
.map-placeholder {
  width: 100%; height: 100%;
  background: var(--clr-stone);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: var(--clr-muted);
  font-size: 0.9rem;
  text-align: center;
}
.map-placeholder .map-icon { font-size: 3rem; }

@media (max-width: 760px) {
  .visit-layout { grid-template-columns: 1fr; }
  .map-wrap { aspect-ratio: 1; position: static; }
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-black);
  border-top: 1px solid rgba(184,150,62,0.25);
}
.footer-top {
  padding: var(--space-xl) 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-lg);
}
.footer-brand img { height: 72px; width: auto; margin-bottom: var(--space-md); opacity: 0.88; }
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  max-width: 240px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: var(--fw-mid);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--space-sm);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: var(--space-md) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
}

@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ── ANIMATIONS ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── UTILITIES ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm  { margin-top: var(--space-sm); }
.mt-md  { margin-top: var(--space-md); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
