/* ==========================================================================
   Cafe Americano — Bartlett, Illinois
   Palette: Espresso & Bordeaux
   ========================================================================== */

:root {
  --ink: #1A1512;
  --cream: #F7F2EA;
  --bordeaux: #6B2233;
  --brass: #B08D4F;
  --sage: #5C7A82;
  --body: #5A5148;

  --cream-dim: #EFE7DA;
  --cream-70: rgba(247, 242, 234, 0.7);
  --cream-50: rgba(247, 242, 234, 0.5);
  --brass-30: rgba(176, 141, 79, 0.3);
  --brass-50: rgba(176, 141, 79, 0.5);

  --serif: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Jost", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 320ms;

  --gutter: clamp(1.25rem, 5vw, 6rem);
  --section-y: clamp(4.5rem, 11vw, 9.5rem);
  --maxw: 1440px;
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-size: clamp(1.0625rem, 0.4vw + 1rem, 1.1875rem);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

p { margin: 0 0 1.1em; max-width: 68ch; }
figure { margin: 0; }

::selection { background: var(--bordeaux); color: var(--cream); }

/* ------------------------------------------------------- accessibility -- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink);
  color: var(--cream);
  padding: 0.85rem 1.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 1px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* -------------------------------------------------------- paper grain -- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.032;
  mix-blend-mode: multiply;
}

/* -------------------------------------------------------------- shell -- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

/* --------------------------------------------------------- type atoms -- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.5rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--brass);
  flex: none;
}
.eyebrow--center { justify-content: center; }

.section-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.lede {
  font-size: clamp(1.0625rem, 0.5vw + 1rem, 1.25rem);
  color: var(--body);
}

.eyebrow, .trustline, .drinks-hint, .hero-foot, .footer-tagline, .menu-foot .footnote, .mobile-menu .meta { max-width: none; }

.rule {
  border: 0;
  height: 1px;
  background: var(--brass-30);
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  background: var(--bordeaux);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--bordeaux);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { background: transparent; color: var(--bordeaux); }
.btn--onDark:hover { color: var(--cream); border-color: var(--cream); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  border-bottom: 1px solid var(--brass-50);
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-ghost .arrow { transition: transform var(--dur) var(--ease); }
.btn-ghost:hover { border-color: var(--brass); color: #fff; }
.btn-ghost:hover .arrow { transform: translateX(6px); }
.btn-ghost--dark { color: var(--ink); border-color: var(--brass-50); }
.btn-ghost--dark:hover { color: var(--bordeaux); }

/* ---------------------------------------------------------------- nav -- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.nav.is-stuck {
  background: rgba(247, 242, 234, 0.88);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--brass-30);
  padding-block: 1rem;
}

.wordmark {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brass);
  transition: color var(--dur) var(--ease);
  white-space: nowrap;
}
.nav.is-stuck .wordmark, .nav.is-open .wordmark { color: var(--ink); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.6vw, 2.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur) var(--ease);
}
.nav.is-stuck .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: var(--bordeaux);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.nav-cta:hover { background: #55192a; transform: translateY(-1px); }
.nav-cta svg {
  width: 15px; height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.nav-right { display: flex; align-items: center; gap: 1.25rem; }

/* burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  position: relative;
  transition: background var(--dur) var(--ease);
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px; height: 1px;
  background: inherit;
  transition: transform var(--dur) var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.nav.is-stuck .burger span, .nav.is-open .burger span { background: var(--ink); }
.nav.is-open .burger span { background: transparent; }
.nav.is-open .burger span::before { background: var(--ink); transform: translateY(7px) rotate(45deg); }
.nav.is-open .burger span::after { background: var(--ink); transform: translateY(-7px) rotate(-45deg); }

/* mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 380ms var(--ease), visibility 380ms;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.mobile-menu li { border-bottom: 1px solid var(--brass-30); }
.mobile-menu a {
  display: block;
  padding: 1.1rem 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 3rem);
  color: var(--ink);
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
}
.mobile-menu.is-open a {
  animation: revealUp 620ms var(--ease) forwards;
  animation-delay: calc(var(--i) * 70ms + 90ms);
}
.mobile-menu .meta {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

@keyframes revealUp {
  to { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; }
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(1.05) contrast(1.03);
  display: block;
}
/* the slow zoom stays on the still; a moving clip does not need it */
.hero-video.is-playing { animation: none; transform: none; }
.hero-video:not(.is-playing) {
  animation: slowZoom 14s var(--ease) forwards;
}

.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.0);
  animation: slowZoom 14s var(--ease) forwards;
}
@keyframes slowZoom { to { transform: scale(1.06); } }

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,21,18,0.95) 0%, rgba(26,21,18,0.78) 32%, rgba(26,21,18,0.34) 62%, rgba(26,21,18,0.5) 100%),
    linear-gradient(100deg, rgba(26,21,18,0.78) 0%, rgba(26,21,18,0.42) 42%, rgba(26,21,18,0.06) 72%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(4.5rem, 9vw, 6.5rem);
}
.hero .eyebrow { color: var(--brass); }

.hero h1 {
  color: var(--cream);
  font-size: clamp(2.15rem, 5.4vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  max-width: 15ch;
  text-wrap: balance;
  margin-bottom: 1.15rem;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  animation: revealUp 900ms var(--ease) forwards;
  animation-delay: calc(var(--i) * 80ms + 200ms);
}

.hero-sub {
  color: var(--cream-70);
  max-width: 44ch;
  font-size: clamp(0.95rem, 0.3vw + 0.9rem, 1.0625rem);
  opacity: 0;
  animation: revealUp 900ms var(--ease) 620ms forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2.25rem;
  opacity: 0;
  animation: revealUp 900ms var(--ease) 760ms forwards;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  left: var(--gutter);
  bottom: 1.6rem;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0;
  animation: revealUp 900ms var(--ease) 900ms forwards;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-50);
}
.scroll-cue .line {
  display: block;
  width: 1px; height: 54px;
  background: var(--brass-30);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 1px; height: 18px;
  background: var(--brass);
  animation: cue 2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateY(-20px); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translateY(54px); opacity: 0; }
}


/* ------------------------------------------- hero: order + trust -- */
.hero h1 .accent {
  font-style: italic;
  color: var(--brass);
}

/* segmented order control */
.segment {
  display: inline-flex;
  margin-top: 1.75rem;
  border: 1px solid rgba(176, 141, 79, 0.45);
  border-radius: 999px;
  background: rgba(26, 21, 18, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 0.3rem;
  opacity: 0;
  animation: revealUp 900ms var(--ease) 760ms forwards;
  max-width: 100%;
}
.seg {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--cream-70);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.seg:first-child { background: var(--bordeaux); color: var(--cream); }
.seg:first-child:hover { background: #7d2a3d; }
.seg:last-child:hover { color: var(--cream); }
.seg-label {
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.1;
}
.seg-note {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.72;
  white-space: nowrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.8rem;
  margin: 1.5rem 0 0;
  max-width: none;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-50);
  opacity: 0;
  animation: revealUp 900ms var(--ease) 880ms forwards;
}
.hero-trust .sep { color: var(--brass); }

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.15rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass);
  opacity: 0;
  animation: revealUp 900ms var(--ease) 980ms forwards;
}
.hero-link .arrow { transition: transform var(--dur) var(--ease); }
.hero-link:hover .arrow { transform: translateX(6px); }

/* live open / closed status in the nav */
.status {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  max-width: none;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-70);
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav.is-stuck .status { color: var(--body); }
.status .dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: var(--brass);
  flex: none;
}
.status.is-open .dot { background: #6E8F5E; }
.status.is-closed .dot { background: var(--bordeaux); }

@media (max-width: 1100px) { .status { display: none; } }

@media (max-width: 560px) {
  .segment {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 1.25rem;
    gap: 0.25rem;
  }
  .seg { border-radius: 1rem; padding: 0.85rem 1.3rem; }
  .seg-note { white-space: normal; }
  .hero-trust { font-size: 0.6rem; letter-spacing: 0.1em; gap: 0.35rem 0.6rem; }
  .hero .eyebrow { font-size: 0.62rem; margin-bottom: 1.1rem; }
  .hero-sub { font-size: 0.92rem; line-height: 1.6; }
}

/* ---------------------------------------------------- triple concept -- */
.concept-head {
  display: grid;
  gap: clamp(1rem, 3vw, 3rem);
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.concept-head .lede { margin: 0; }

.panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 4vw, 2.75rem);
}
.panel { position: relative; }
.panel-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink);
}
.panel-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 620ms var(--ease);
}
.panel:hover .panel-media img { transform: scale(1.04); }

.numeral {
  position: absolute;
  top: 0.6rem; left: 1rem;
  z-index: 2;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass);
  letter-spacing: 0.02em;
  pointer-events: none;
}

.panel h3 {
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  margin: 1.5rem 0 0;
  display: inline-block;
  position: relative;
}
.panel h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: -8px;
  height: 1px; width: 100%;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease);
}
.panel:hover h3::after { transform: scaleX(1); }
.panel p { margin: 1.35rem 0 0; font-size: 1rem; max-width: 34ch; }

.panel-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, var(--ink) 0%, #3A1D24 55%, var(--bordeaux) 100%);
}
.monogram {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 4rem);
  letter-spacing: 0.12em;
  color: transparent;
  -webkit-text-stroke: 1px var(--brass);
}

/* -------------------------------------------------- signature drinks -- */
.drinks { background: var(--cream); }
.drinks-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.drinks-hint {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}

.rail {
  display: flex;
  gap: clamp(1rem, 2vw, 1.75rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  scroll-padding-inline: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
  padding-bottom: 1.25rem;
  scrollbar-width: none;
  cursor: grab;
}
.rail::-webkit-scrollbar { display: none; }
.rail.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.rail::after { content: ""; flex: 0 0 1px; }

.drink {
  flex: 0 0 min(78vw, 22rem);
  scroll-snap-align: start;
}
.drink-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.drink-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 620ms var(--ease);
  -webkit-user-drag: none;
  user-select: none;
}
.drink:hover .drink-media img { transform: scale(1.04); }
.drink-media .panel-placeholder { position: absolute; }

.tag {
  position: absolute;
  z-index: 2;
  top: 1rem; left: 1rem;
  background: var(--bordeaux);
  color: var(--cream);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
}

.drink-body {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 1.1rem;
}
.drink-body h3 { font-size: 1.35rem; letter-spacing: -0.01em; }
.drink-lead {
  flex: 1;
  border-bottom: 1px dotted var(--brass-50);
  transform: translateY(-0.28em);
}
.drink-price {
  font-family: var(--serif);
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  font-size: 1.1rem;
}
.drink p { font-size: 0.95rem; margin: 0.55rem 0 0; color: var(--body); }


/* ------------------------------------------------ carousel dots -- */
.dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
}
.dots--mobile { display: none; }
.dot-btn {
  width: 7px; height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(176, 141, 79, 0.35);
  cursor: pointer;
  transition: width 380ms var(--ease), background 380ms var(--ease);
}
.dot-btn:hover { background: rgba(176, 141, 79, 0.65); }
.dot-btn.is-active { width: 24px; background: var(--brass); }
.menu .dot-btn { background: rgba(176, 141, 79, 0.3); }

/* --------------------------------------------------------------- menu -- */
.menu {
  background: var(--ink);
  color: var(--cream-70);
  position: relative;
}
.menu h2, .menu h3 { color: var(--cream); }
.menu .lede { color: var(--cream-70); }

.menu-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.menu-head .eyebrow { color: var(--brass); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(176, 141, 79, 0.28);
  border-bottom: 1px solid rgba(176, 141, 79, 0.28);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.pill {
  background: none;
  border: 1px solid rgba(176, 141, 79, 0.42);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-70);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pill:hover { border-color: var(--brass); color: var(--cream); }
.pill[aria-pressed="true"] {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}

.menu-columns {
  position: relative;
  columns: 1;
}

.menu-group {
  break-inside: avoid;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  transition: opacity 300ms var(--ease);
}
.menu-group.is-hidden { display: none; }
.menu-group.is-fading { opacity: 0; }

.menu-group > h3 {
  font-size: 0.75rem;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(176, 141, 79, 0.3);
  margin-bottom: 1.6rem;
}
.menu-group .note {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--cream-50);
  display: block;
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

.m-item { margin-bottom: 1.15rem; }
.m-line {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
}
.m-name {
  font-family: var(--serif);
  font-size: 1.075rem;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.m-lead {
  flex: 1;
  border-bottom: 1px dotted rgba(176, 141, 79, 0.45);
  transform: translateY(-0.28em);
  min-width: 1.5rem;
}
.m-price {
  font-family: var(--serif);
  color: var(--brass);
  font-variant-numeric: tabular-nums;
  font-size: 1.02rem;
}
.m-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(247, 242, 234, 0.46);
  margin: 0.2rem 0 0;
  max-width: 46ch;
}

.menu-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--cream-50);
  letter-spacing: 0.02em;
}
.menu-foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(176, 141, 79, 0.28);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.menu-foot .footnote { font-size: 0.85rem; color: var(--cream-50); margin: 0; }
.menu .btn-ghost { color: var(--cream); }

/* the strip rides the bottom edge of the hero, inside the first screen */
.specials--hero {
  position: absolute;
  z-index: 3;
  left: 0; right: 0; bottom: 0;
  border-bottom: 0;
}
/* keep hero copy and the scroll cue clear of the band */
.hero-inner { padding-bottom: clamp(5.25rem, 7vw, 6rem); }
.scroll-cue { bottom: 4.35rem; }

/* ------------------------------------------------------------ specials -- */
.specials {
  background: var(--bordeaux);
  color: var(--brass);
  padding-block: 1.15rem;
  overflow: hidden;
  border-top: 1px solid rgba(176, 141, 79, 0.35);
  border-bottom: 1px solid rgba(176, 141, 79, 0.35);
}
.marquee {
  display: flex;
  width: max-content;
  animation: slide 44s linear infinite;
}
.specials:hover .marquee, .marquee:focus-within { animation-play-state: paused; }
.marquee-part {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding-right: 3.5rem;
  list-style: none;
  margin: 0;
}
.marquee-part li {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #D8BC85;
}
.marquee-part li .dot { color: rgba(216, 188, 133, 0.45); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------ reviews -- */
.reviews { background: var(--cream-dim); }
.trustline {
  text-wrap: balance;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin: 0 0 clamp(2rem, 4vw, 3rem);
}
.trustline .sep { color: var(--brass); padding-inline: 0.35rem; }

.quote-feature {
  position: relative;
  padding-left: clamp(2.5rem, 5vw, 4.5rem);
  margin: 0 0 clamp(2.5rem, 5vw, 4rem);
}
.quote-feature::before {
  content: "\201C";
  position: absolute;
  left: 0; top: -0.35em;
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 1;
  color: var(--brass);
  opacity: 0.75;
}
.quote-feature blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.25;
  color: var(--ink);
  max-width: 24ch;
  letter-spacing: -0.01em;
}
.quote-feature blockquote p { max-width: none; margin: 0; }

.attrib {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--brass-30);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.quote-grid blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--ink);
}
.quote-grid blockquote p { margin: 0; }

/* ------------------------------------------------------------ gallery -- */
.gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.4vw, 1.1rem);
}
.shot {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink);
}
.shot img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.03);
  transition: transform 620ms var(--ease);
}
.shot:hover img { transform: scale(1.02); }
.shot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: rgba(107, 34, 51, 0.85);
  color: var(--brass);
  opacity: 0;
  transition: opacity 380ms var(--ease);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  text-align: center;
  padding: 0.5rem;
}
.shot:hover .shot-overlay, .shot:focus-visible .shot-overlay { opacity: 1; }

/* -------------------------------------------------------------- visit -- */
.visit { background: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-list { list-style: none; margin: 0 0 2.5rem; padding: 0; }
.contact-list li { padding-block: 1.05rem; border-bottom: 1px solid var(--brass-30); }
.contact-list .label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.35rem;
}
.contact-list a, .contact-list span.val {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.contact-list a:hover { color: var(--bordeaux); border-bottom-color: var(--bordeaux); }

.hours { width: 100%; border-collapse: collapse; margin-bottom: 2.5rem; }
.hours caption {
  text-align: left;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  padding-bottom: 0.9rem;
}
.hours th, .hours td {
  text-align: left;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid var(--brass-30);
  color: var(--body);
}
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.today th, .hours tr.today td { color: var(--bordeaux); }
.hours tr.today th::after {
  content: "Today";
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-left: 0.85rem;
  color: var(--brass);
}

.chips { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 2.25rem; padding: 0; list-style: none; }
.chips li {
  border: 1px solid var(--brass-50);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--body);
}

.map-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 380px;
  background: var(--cream-dim);
  border: 1px solid var(--brass-30);
  overflow: hidden;
}
.map-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: sepia(0.32) saturate(0.86) contrast(1.04) brightness(1.02);
}

/* ------------------------------------------------------------- footer -- */
.footer {
  background: var(--ink);
  color: var(--cream-50);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 1px solid rgba(176, 141, 79, 0.28);
}
.footer-mark {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  line-height: 1;
}
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0;
}
.footer-cols { display: grid; grid-template-columns: minmax(0, 1fr); gap: 2.25rem; }
.footer h4 {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 0.65rem; }
.footer a {
  color: var(--cream-70);
  overflow-wrap: anywhere;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--dur) var(--ease);
}
.footer a:hover { color: var(--brass); }

.socials { display: flex; gap: 0.75rem; margin-top: 1.75rem; }
.socials a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(176, 141, 79, 0.4);
  border-radius: 999px;
  color: var(--brass);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.socials a:hover { background: var(--brass); color: var(--ink); }
.socials svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  padding-top: 1.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}
.footer-bottom p { margin: 0; max-width: none; }
.chamber { color: var(--cream-70); }
.hiring { color: var(--brass) !important; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.68rem !important; }

/* ------------------------------------------------------- menu page -- */
.page-head {
  background: var(--ink);
  color: var(--cream-70);
  padding-block: clamp(8rem, 14vw, 11rem) clamp(3rem, 6vw, 4.5rem);
}
.page-head h1 {
  color: var(--cream);
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.03em;
}
.page-head .lede { color: var(--cream-70); margin-top: 1.5rem; }
.page-head + .menu { padding-top: clamp(1rem, 2.5vw, 2.5rem); }
.nav--solid { position: fixed; background: rgba(26, 21, 18, 0.88); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom-color: rgba(176,141,79,0.28); }
.nav--solid.is-stuck { background: rgba(247, 242, 234, 0.92); }

/* --------------------------------------------------------- reveals -- */
.reveal { opacity: 0; transform: translateY(24px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
  transition-delay: var(--d, 0ms);
}

/* -------------------------------------------------------- breakpoints -- */
@media (min-width: 520px) {
  .footer-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 700px) {
  .masonry { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .panels { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .concept-head { grid-template-columns: 1.05fr 1fr; }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.1fr 1.4fr; }
  .map-frame { aspect-ratio: auto; height: 100%; min-height: 560px; }

  .menu-columns {
    columns: 2;
    column-gap: clamp(3rem, 6vw, 6rem);
    column-rule: 1px solid rgba(176, 141, 79, 0.22);
  }
  .quote-feature { padding-left: clamp(3.5rem, 6vw, 5.5rem); }
  .quote-grid { gap: clamp(3rem, 6vw, 6rem); }
}

@media (min-width: 1100px) {
  .masonry { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 899px) {
  .nav-links, .nav-right .nav-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 480px) {
  .scroll-cue { display: none; }
  .hero-inner { padding-bottom: clamp(5rem, 16vw, 7rem); }
}


/* ------------------------------------------------- phone refinements -- */
/* Same type, colours and structure as desktop — only proportions adapted. */
@media (max-width: 700px) {
  :root {
    --section-y: 3.75rem;          /* was up to 9.5rem — halves the cream voids */
    --gutter: 1.35rem;
  }

  /* headings sit a step closer to body copy so hierarchy still reads */
  .section-title { font-size: clamp(2.35rem, 9vw, 3rem); }
  .panel h3 { font-size: 2rem; }
  .drink-body h3 { font-size: 1.45rem; }
  .footer-mark { font-size: 2.4rem; }

  /* portrait crops shorten so a panel is not a full screen each */
  .panel-media { aspect-ratio: 4 / 5; }
  .panels { gap: 2.25rem; }
  .concept-head { margin-bottom: 2.25rem; }
  .concept-head .lede { margin-top: 1.1rem; }
  .numeral { font-size: 3.25rem; top: 0.45rem; left: 0.8rem; }

  /* carousel cards a touch wider, so the next card still peeks in */
  .drink { flex: 0 0 min(82vw, 20rem); }
  .drinks-head { margin-bottom: 1.75rem; }

  /* menu breathes without stretching the page */
  .filters { padding-block: 1.2rem; margin-bottom: 2rem; }
  .menu-group { margin-bottom: 2.25rem; }
  .m-item { margin-bottom: 1rem; }
  .m-name { font-size: 1.02rem; }

  /* pull-quote keeps its measure instead of being pushed right */
  .quote-feature { padding-left: 2.1rem; margin-bottom: 2.25rem; }
  .quote-feature::before { font-size: 4.25rem; top: -0.2em; }
  .quote-grid { padding-top: 2rem; gap: 2rem; }

  /* map was a desktop-height portrait; square reads better on a phone */
  .map-frame { aspect-ratio: 1 / 1; min-height: 300px; }
  .contact-list { margin-bottom: 2rem; }
  .hours { margin-bottom: 2rem; }


  .hero-inner { padding-bottom: 5.25rem; }
  /* portrait puts the drink behind the copy — deepen the scrim so type stays crisp */
  .hero-scrim {
    background:
      linear-gradient(to top, rgba(26,21,18,0.96) 0%, rgba(26,21,18,0.88) 34%, rgba(26,21,18,0.58) 68%, rgba(26,21,18,0.52) 100%),
      linear-gradient(100deg, rgba(26,21,18,0.72) 0%, rgba(26,21,18,0.42) 55%, rgba(26,21,18,0.2) 100%);
  }
  .specials--hero { padding-block: 0.85rem; }
  .marquee-part li { font-size: 0.62rem; letter-spacing: 0.2em; }

  /* the three rooms become a swipe rail with the next panel peeking in */
  .panels {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    padding-inline: var(--gutter);
    margin-inline: calc(var(--gutter) * -1);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .panels::-webkit-scrollbar { display: none; }
  .panel {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
  .panel p { max-width: none; }

  /* reviews swipe the same way */
  .quote-grid {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--gutter);
    padding-inline: var(--gutter);
    margin-inline: calc(var(--gutter) * -1);
    padding-top: 2rem;
    scrollbar-width: none;
  }
  .quote-grid::-webkit-scrollbar { display: none; }
  .quote-grid figure {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .dots--mobile { display: flex; }

  .footer { padding-block: 3.25rem 1.75rem; }
  .footer-top { padding-bottom: 2.25rem; gap: 2.25rem; }
  .gallery-head { margin-bottom: 1.75rem; }
  .menu-foot { margin-top: 2rem; }
}

/* ------------------------------------------------- reduced motion -- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero h1 .word, .hero-sub, .hero-ctas, .hero-foot, .mobile-menu a { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .marquee { animation: none; }
}


/* ============================================================ app mode --
   Only active when installed to a home screen (body.is-app) plus the
   install banner, which appears in the browser. Site design is unchanged. */

.appbar { display: none; }
.install-banner { display: none; }

/* --- install banner (browser only) --- */
.install-banner {
  display: block;
  position: fixed;
  z-index: 55;
  left: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  transform: translate(-50%, calc(100% + 2rem));
  width: min(28rem, calc(100vw - 2rem));
  background: var(--ink);
  border: 1px solid rgba(176, 141, 79, 0.4);
  padding: 1.1rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: transform 520ms var(--ease), opacity 520ms var(--ease), visibility 520ms;
}
.install-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.install-banner p {
  margin: 0 0 0.85rem;
  max-width: none;
  color: var(--cream-70);
  font-size: 0.9rem;
  line-height: 1.5;
}
.install-banner strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--cream);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.install-actions { display: flex; gap: 0.6rem; align-items: center; }
.install-actions .btn { padding: 0.75rem 1.4rem; font-size: 0.68rem; }
.install-later {
  background: none;
  border: 0;
  padding: 0.75rem 0.5rem;
  color: var(--cream-50);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.install-later:hover { color: var(--brass); }
.install-ios {
  margin: 0;
  color: var(--brass);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- installed app --- */
body.is-app {
  /* status bar sits over the page in standalone; keep the nav clear of it */
  padding-bottom: calc(4.25rem + env(safe-area-inset-bottom));
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-y: none;
}
body.is-app .nav { padding-top: calc(1.4rem + env(safe-area-inset-top)); }
body.is-app .nav.is-stuck { padding-top: calc(1rem + env(safe-area-inset-top)); }
body.is-app .hero-inner { padding-top: env(safe-area-inset-top); }
body.is-app .install-banner { display: none; }
body.is-app .footer { padding-bottom: 1.5rem; }

/* native-feeling tab bar */
body.is-app .appbar {
  display: flex;
  position: fixed;
  z-index: 48;
  left: 0; right: 0; bottom: 0;
  padding: 0.5rem 0.35rem calc(0.5rem + env(safe-area-inset-bottom));
  background: rgba(26, 21, 18, 0.94);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  border-top: 1px solid rgba(176, 141, 79, 0.3);
}
.appbar a {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.15rem;
  min-height: 48px;
  color: var(--cream-50);
  text-decoration: none;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 260ms var(--ease);
}
.appbar svg {
  width: 21px; height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.appbar a.is-current { color: var(--brass); }
.appbar a:active { color: var(--cream); }

/* the desktop nav links are redundant once the tab bar exists */
body.is-app .nav-cta { display: none; }

@media (prefers-reduced-motion: reduce) {
  .install-banner { transition: none; }
}

/* ------------------------------------------------------------- print -- */
@media print {
  .nav, .mobile-menu, .grain, .specials, .scroll-cue, .footer, .map-frame,
  .appbar, .install-banner { display: none !important; }
  body { background: #fff; color: #000; }
  .menu { background: #fff; }
  .menu h2, .menu h3, .m-name { color: #000; }
  .m-price { color: #000; }
  .m-desc { color: #333; }
}
