/* ═══════════════════════════════════════════
   BEAN BAR — Northbrook, Illinois
   Espresso · Cream · Brass
   ═══════════════════════════════════════════ */

:root {
  --ink: #120d08;
  --coffee: #191007;
  --cream: #f2ecdf;
  --paper: #f7f3ea;
  --bone: #ece5d5;
  --gold: #b59259;
  --gold-soft: #cdb183;
  --emerald: #1d5c45;
  --emerald-deep: #123f2f;
  --emerald-ink: #0c2b20;
  --emerald-soft: #8fbcaa;
  --taupe: #6f6557;
  --line-dark: rgba(242, 236, 223, 0.14);
  --line-light: rgba(18, 13, 8, 0.16);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
  --logo: "Oswald", "Arial Narrow", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* gold fails 3:1 on light grounds — use emerald there */
.about :focus-visible,
.menu :focus-visible,
.nav.is-scrolled :focus-visible {
  outline-color: var(--emerald);
}

a { color: inherit; }

/* ─────────── shared ─────────── */

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 22px;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--emerald-soft { color: var(--emerald-soft); }

.title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 340;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.title em {
  font-style: italic;
  font-weight: 340;
  color: var(--emerald);
}
.title--cream { color: var(--cream); }
.title--cream em { color: var(--gold-soft); }

/* buttons — sharp, quiet, tracked */
.btn {
  position: relative;
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 19px 42px;
  overflow: hidden;
  transition: color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
  cursor: pointer;
  z-index: 1;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover::after { transform: scaleX(1); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border: 1px solid var(--gold);
}
.btn--gold::after { background: var(--gold-soft); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-light);
}
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: var(--cream); border-color: var(--ink); }

.btn--onDark { color: var(--cream); border-color: rgba(242, 236, 223, 0.42); }
.btn--onDark::after { background: var(--cream); }
.btn--onDark:hover { color: var(--ink); border-color: var(--cream); }

.btn--emerald {
  background: var(--emerald);
  color: var(--cream);
  border: 1px solid var(--emerald);
}
.btn--emerald::after { background: var(--emerald-deep); }
.btn--emerald:hover { border-color: var(--emerald-deep); }

.btn--nav { padding: 13px 26px; font-size: 0.68rem; }

/* film grain on dark sections */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.055'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* reveal on scroll — slow, editorial; hidden state applies only when JS is present */
.reveal {
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* logo lockup — recreation of the Bean Bar mark */
.lockup__box {
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-family: var(--logo);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: 0.01em;
  padding: 14px 18px 16px;
  border: 4px solid currentColor;
}
.lockup__word {
  display: block;
  margin-top: 12px;
  font-family: var(--logo);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  line-height: 1;
  text-align: center;
}

/* ─────────── NAV ─────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4.5vw, 56px);
  color: var(--cream);
  transition: background 0.5s ease, color 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
}
.nav.is-scrolled {
  background: rgba(247, 243, 234, 0.96);
  color: var(--ink);
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 1px 0 var(--line-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark {
  font-family: var(--logo);
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1;
  padding: 5px 7px 6px;
  border: 2px solid currentColor;
}
.brand__type {
  font-family: var(--logo);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.16em;
}

.nav__links { display: flex; gap: clamp(14px, 2.4vw, 34px); }
.nav__link {
  position: relative;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.78;
  padding: 6px 0;
  transition: opacity 0.35s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: left 0.4s var(--ease-out), right 0.4s var(--ease-out);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { left: 0; right: 0; }
.nav__link.is-active { opacity: 1; }
.nav__link.is-active::after { left: 0; right: 0; background: var(--gold); }

/* locations dropdown */
.nav__drop { position: relative; }
.nav__drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: none;
  font-family: var(--sans);
  cursor: pointer;
}
.nav__drop-btn::after { content: none; }
.nav__chev { width: 10px; height: 7px; transition: transform 0.35s var(--ease-out); }
.nav__drop.is-open .nav__chev { transform: rotate(180deg); }
.nav__drop-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translate(-50%, -8px);
  min-width: 250px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line-light);
  box-shadow: 0 20px 48px rgba(18, 13, 8, 0.18);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
  z-index: 110;
}
.nav__drop.is-open .nav__drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.loc {
  display: block;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--ink);
  text-align: left;
  transition: background 0.25s ease;
}
a.loc:hover { background: var(--bone); }
.loc + .loc { border-top: 1px solid var(--line-light); }
.loc__name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 380;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-transform: none;
}
.loc__meta {
  display: block;
  margin-top: 4px;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}
.loc__tag {
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  border: 1px solid rgba(29, 92, 69, 0.4);
  padding: 3px 8px;
  white-space: nowrap;
}
.loc--soon { cursor: default; }
.loc--soon .loc__name { opacity: 0.8; }

.nav__right { display: flex; align-items: center; gap: 16px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  cursor: pointer;
  padding: 0 10px;
}
.nav__burger span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.4s var(--ease-out);
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* mobile overlay */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--coffee);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 48px;
  padding: 96px 24px 36px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.overlay.is-open { opacity: 1; visibility: visible; }
/* auto margins center when there is room, but never clip when there is not */
.overlay__links { display: flex; flex-direction: column; align-items: center; gap: 6px; margin-top: auto; }
.overlay__foot { margin-bottom: auto; }
@media (max-height: 520px) {
  .overlay { gap: 24px; }
  .overlay .overlay__links a { font-size: 1.4rem; padding: 4px 12px; }
}
.overlay__links a {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(1.9rem, 7vw, 2.6rem);
  text-decoration: none;
  padding: 6px 12px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), color 0.3s ease;
}
.overlay.is-open .overlay__links a { opacity: 1; transform: translateY(0); }
.overlay__links a:hover { color: var(--gold-soft); }
.overlay__links a:nth-child(1) { transition-delay: 0.08s; }
.overlay__links a:nth-child(2) { transition-delay: 0.14s; }
.overlay__links a:nth-child(3) { transition-delay: 0.2s; }
.overlay__links a:nth-child(4) { transition-delay: 0.26s; }
.overlay__links a:nth-child(5) { transition-delay: 0.32s; }
.overlay__links a:nth-child(6) { transition-delay: 0.38s; }
.overlay__links a:nth-child(7) { transition-delay: 0.44s; }
.overlay__cta { color: var(--gold-soft); }
.overlay__locations { text-align: center; }
.overlay__loc-label {
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.overlay__loc {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 2.1;
  opacity: 0.85;
}
.overlay__loc--soon { opacity: 0.5; }
.overlay__foot {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.55;
  line-height: 2.2;
}

/* ─────────── HERO ─────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px clamp(20px, 5vw, 64px) 110px;
  background:
    radial-gradient(1100px 700px at 50% 118%, rgba(181, 146, 89, 0.16), transparent 62%),
    radial-gradient(900px 520px at 50% -10%, rgba(181, 146, 89, 0.07), transparent 60%),
    var(--coffee);
  color: var(--cream);
  overflow: hidden;
}

.hero__rings { position: absolute; inset: 0; pointer-events: none; }
.ring {
  position: absolute;
  border: 1px solid rgba(181, 146, 89, 0.16);
  border-radius: 50%;
}
.ring--1 {
  width: min(88vw, 880px); height: min(88vw, 880px);
  left: 50%; top: 54%;
  translate: -50% -50%;
  animation: ringPulse 14s ease-in-out infinite;
}
.ring--2 {
  width: min(64vw, 640px); height: min(64vw, 640px);
  left: 50%; top: 54%;
  translate: -50% -50%;
  border-color: rgba(181, 146, 89, 0.1);
  animation: ringPulse 14s ease-in-out infinite;
  animation-delay: -4s;
}
.ring--3 {
  width: min(42vw, 420px); height: min(42vw, 420px);
  left: 50%; top: 54%;
  translate: -50% -50%;
  border-color: rgba(181, 146, 89, 0.07);
  animation: ringPulse 14s ease-in-out infinite;
  animation-delay: -8s;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.045); opacity: 0.7; }
}

/* svh pins the hero foot above mobile browser toolbars */
@supports (min-height: 100svh) {
  .hero { min-height: 100svh; }
}

.hero__inner { position: relative; z-index: 2; max-width: 900px; }

.hero__lockup {
  color: var(--cream);
  margin-bottom: 44px;
  animation: fadeDown 1.2s var(--ease-out) both;
}
.hero__lockup .lockup__box { font-size: 1.9rem; padding: 10px 13px 12px; border-width: 3px; }
.hero__lockup .lockup__word { font-size: 1.05rem; margin-top: 9px; letter-spacing: 0.16em; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 30px;
  animation: fadeIn 1.4s ease 0.35s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.hero__title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 330;
  font-size: clamp(3rem, 8.4vw, 6.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line__inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1.15s var(--ease-out) forwards;
}
.hero__title .line:nth-child(1) .line__inner { animation-delay: 0.25s; }
.hero__title .line:nth-child(2) .line__inner { animation-delay: 0.42s; }
.hero__title .line:nth-child(3) .line__inner { animation-delay: 0.59s; }
.line__inner--italic { font-style: italic; color: var(--gold-soft); }
@keyframes lineUp { to { transform: translateY(0); } }

.hero__rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto 34px;
  transform: scaleX(0);
  animation: ruleGrow 1s var(--ease-out) 1.05s forwards;
}
@keyframes ruleGrow { to { transform: scaleX(1); } }

.hero__sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  letter-spacing: 0.06em;
  color: rgba(242, 236, 223, 0.82);
  animation: fadeIn 1.4s ease 1.2s both;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 46px;
  animation: fadeIn 1.4s ease 1.45s both;
}

.hero__foot {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-bottom: 0;
  z-index: 2;
  animation: fadeIn 1.6s ease 1.9s both;
}
.hero__hours {
  font-size: 0.66rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(242, 236, 223, 0.55);
}
.hero__scrollline {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  overflow: hidden;
  position: relative;
}
.hero__scrollline::after {
  content: "";
  position: absolute;
  left: 0; top: -100%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--cream));
  animation: scrollDrip 2.4s ease-in-out infinite;
}
@keyframes scrollDrip {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}

/* ─────────── MARQUEE ─────────── */
.marquee {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marqueeScroll 44s linear infinite;
  font-family: var(--serif);
  font-weight: 340;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.marquee__track i {
  font-style: normal;
  color: var(--emerald);
  font-size: 0.55rem;
  vertical-align: middle;
  margin: 0 22px;
}
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ─────────── ABOUT ─────────── */
.about {
  background: var(--paper);
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 64px);
}
.about__inner {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.about__cup {
  width: 108px;
  margin-top: 54px;
  color: var(--gold);
}
.about__cup .draw,
.pour__icon .draw {
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  transition: stroke-dashoffset 2.4s var(--ease-out) 0.3s;
}
.is-visible .draw { stroke-dashoffset: 0; }
.steamlines path {
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 16 60;
  animation: steamFlow 3.6s ease-in-out infinite;
  opacity: 0.75;
}
.steamlines path:nth-child(2) { animation-delay: -1.8s; }
@keyframes steamFlow {
  0% { stroke-dashoffset: 76; opacity: 0; }
  30% { opacity: 0.75; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}

.about__lede {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  line-height: 1.55;
  color: var(--ink);
}
.about__lede::first-letter {
  font-size: 3.4em;
  float: left;
  line-height: 0.82;
  padding: 6px 14px 0 0;
  color: var(--emerald);
  font-weight: 380;
}

.about__stats {
  display: flex;
  margin-top: 58px;
  border-top: 1px solid var(--line-light);
}
.stat {
  flex: 1;
  padding: 26px clamp(10px, 2vw, 28px) 0;
}
.stat + .stat { border-left: 1px solid var(--line-light); }
.stat__num {
  display: block;
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1;
}
.stat__label {
  display: block;
  margin-top: 10px;
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
}

.about__note {
  margin-top: 44px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--emerald);
}

/* ─────────── OUR SPACE ─────────── */
.space {
  background: var(--bone);
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 64px);
  overflow: hidden;
}
.space__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(52px, 7vw, 80px);
}
.space__text {
  margin: 22px auto 0;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: rgba(18, 13, 8, 0.78);
  max-width: 38em;
}

.space__gallery {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(16px, 2.2vw, 26px);
  max-width: 1150px;
  margin: 0 auto;
}
.space__photo { margin: 0; }
.space__photo img {
  display: block;
  width: 100%;
  height: clamp(340px, 42vw, 540px);
  object-fit: cover;
  border: 1px solid var(--line-light);
  box-shadow: 0 30px 60px rgba(18, 13, 8, 0.14);
}
.space__photo figcaption {
  margin-top: 14px;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  color: var(--taupe);
}
.space__note {
  text-align: center;
  margin-top: clamp(44px, 5vw, 60px);
}
/* until the real photos exist, the gallery and note simply stay out of the way */
.space--nophotos .space__gallery { display: none; }
.space--nophotos .space__note { margin-top: 0; }

/* ─────────── SIGNATURES ─────────── */
.sig {
  position: relative;
  background:
    radial-gradient(1000px 600px at 50% -20%, rgba(181, 146, 89, 0.1), transparent 60%),
    var(--coffee);
  color: var(--cream);
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 64px);
  overflow: hidden;
}
.sig__head { text-align: center; max-width: 720px; margin: 0 auto clamp(60px, 8vw, 100px); position: relative; z-index: 1; }

.sig__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1150px;
  margin: 0 auto;
  border: 1px solid var(--line-dark);
}
.pour {
  position: relative;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 3.4vw, 48px);
  text-align: center;
  transition: background 0.6s ease;
}
.pour + .pour { border-left: 1px solid var(--line-dark); }
.pour:hover { background: rgba(181, 146, 89, 0.06); }
.pour::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-out);
}
.pour:hover::after { transform: scaleX(1); }

.pour__index {
  position: absolute;
  top: 22px; left: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 340;
  font-size: 0.95rem;
  color: var(--gold);
  opacity: 0.85;
}
.pour__icon {
  width: 92px;
  height: 116px;
  color: var(--gold-soft);
  margin-bottom: 30px;
}
.pour__name {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.pour__desc {
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(242, 236, 223, 0.66);
  max-width: 30ch;
  margin: 0 auto;
}

.sig__cta { text-align: center; margin-top: clamp(56px, 7vw, 84px); position: relative; z-index: 1; }

/* ─────────── MENU ─────────── */
.menu {
  background: var(--paper);
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 64px);
}
.menu__head { text-align: center; margin-bottom: 54px; }

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 3.5vw, 46px);
  margin-bottom: 58px;
}
.menu__tab {
  position: relative;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: none;
  border: none;
  color: var(--taupe);
  padding: 10px 2px;
  cursor: pointer;
  transition: color 0.35s ease;
}
.menu__tab::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 1px;
  background: var(--emerald);
  transition: left 0.45s var(--ease-out), right 0.45s var(--ease-out);
}
.menu__tab:hover { color: var(--ink); }
.menu__tab.is-active { color: var(--ink); }
.menu__tab.is-active::after { left: 0; right: 0; }

.menu__panels { max-width: 760px; margin: 0 auto; }
.js .menu__panel { display: none; }
html:not(.js) .menu__tabs { display: none; }
.menu__panel.is-active { display: block; animation: panelFade 0.8s var(--ease-out); }
@keyframes panelFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.mi {
  padding: 26px 2px;
}
.mi + .mi { border-top: 1px solid var(--line-light); }
.mi__info h3 {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 1.3rem;
  letter-spacing: 0.005em;
}
.mi__info p {
  margin-top: 5px;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--taupe);
}
.mi__fave {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--emerald);
  border: 1px solid rgba(29, 92, 69, 0.4);
  padding: 4px 10px;
  margin-left: 12px;
  vertical-align: 0.24em;
  white-space: nowrap;
}

.menu__cta { text-align: center; margin-top: 56px; }

.menu__note {
  text-align: center;
  margin-top: 26px;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--taupe);
}
.menu__note a {
  color: var(--emerald);
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 92, 69, 0.5);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.menu__note a:hover { color: var(--ink); border-color: var(--ink); }

/* ─────────── REVIEWS ─────────── */
.reviews {
  position: relative;
  background-color: var(--emerald-ink);
  /* the actual tile wall, graded toward emerald and dimmed for legibility */
  background-image:
    linear-gradient(rgba(7, 26, 19, 0.5), rgba(5, 20, 15, 0.68)),
    linear-gradient(rgba(29, 92, 69, 0.45), rgba(29, 92, 69, 0.45)),
    url("images/tile-wall.jpg");
  background-size: auto, auto, cover;
  background-position: center;
  background-blend-mode: normal, multiply, normal;
  color: var(--cream);
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 64px);
  overflow: hidden;
}
.reviews__head { text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
.reviews__stars {
  margin-top: 24px;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  color: var(--gold-soft);
}

.carousel { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.carousel__stage {
  position: relative;
  display: grid;
  min-height: 280px;
}
.carousel__stage::before {
  content: "\201C";
  position: absolute;
  top: -0.28em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 7rem;
  font-weight: 340;
  line-height: 1;
  color: var(--gold-soft);
  opacity: 0.4;
  pointer-events: none;
}
.review {
  grid-area: 1 / 1;
  text-align: center;
  padding-top: 74px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), visibility 0s linear 0.9s;
  pointer-events: none;
}
.review.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s, 0s, 0s;
  pointer-events: auto;
}
.review blockquote {
  font-family: var(--serif);
  font-weight: 340;
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.6;
  color: var(--cream);
}
.review figcaption {
  margin-top: 30px;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.review figcaption::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 18px;
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 48px;
}
.carousel__btn {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(242, 236, 223, 0.3);
  border-radius: 50%;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.carousel__btn svg { width: 16px; height: 16px; }
.carousel__btn:hover { background: var(--cream); color: var(--emerald-ink); border-color: var(--cream); }
.carousel__btn .icon-play { display: none; }
.carousel__btn.is-paused .icon-play { display: block; }
.carousel__btn.is-paused .icon-pause { display: none; }

.carousel__dots { display: flex; gap: 12px; }
.carousel__dot {
  width: 26px;
  height: 14px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}
.carousel__dot::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(242, 236, 223, 0.3);
  transition: background 0.35s ease, height 0.35s ease;
}
.carousel__dot.is-active::after { background: var(--gold-soft); height: 2px; }

/* ─────────── VISIT ─────────── */
.visit {
  position: relative;
  background:
    radial-gradient(900px 560px at 50% 120%, rgba(181, 146, 89, 0.13), transparent 62%),
    var(--coffee);
  color: var(--cream);
  padding: clamp(100px, 13vw, 180px) clamp(20px, 5vw, 64px);
  overflow: hidden;
}
.visit__head { text-align: center; margin-bottom: clamp(60px, 8vw, 100px); position: relative; z-index: 1; }

.visit__cols {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1050px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.vcol {
  padding: clamp(40px, 5vw, 60px) clamp(24px, 3vw, 44px);
  text-align: center;
}
.vcol + .vcol { border-left: 1px solid var(--line-dark); }
.vcol__label {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 26px;
}
.vcol__big {
  font-family: var(--serif);
  font-weight: 380;
  font-size: 1.7rem;
  margin-bottom: 12px;
}
.vcol__body {
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.9;
  color: rgba(242, 236, 223, 0.66);
}
.vcol__link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(205, 177, 131, 0.45);
  padding-bottom: 4px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.vcol__link:hover { color: var(--cream); border-color: var(--cream); }

.vcol__social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.vcol__social a {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--cream);
  transition: border-color 0.4s ease, color 0.4s ease, background 0.4s ease;
}
.vcol__social a:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(181, 146, 89, 0.08); }
.vcol__social svg { width: 19px; height: 19px; }

.visit__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(56px, 7vw, 80px);
  position: relative;
  z-index: 1;
}

/* ─────────── FOOTER ─────────── */
.footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: clamp(80px, 9vw, 120px) 24px 56px;
}
.footer__lockup { color: var(--cream); }
.footer__lockup .lockup__box { font-size: 2.1rem; padding: 11px 14px 13px; border-width: 3px; }
.footer__lockup .lockup__word { font-size: 1.2rem; }
.footer__tag {
  margin-top: 26px;
  font-family: var(--serif);
  font-weight: 340;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gold-soft);
}
.footer__rule {
  width: 44px;
  height: 1px;
  background: rgba(181, 146, 89, 0.5);
  margin: 36px auto;
}
.footer__fine {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(242, 236, 223, 0.6);
}
.footer__fine a {
  color: rgba(242, 236, 223, 0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 236, 223, 0.3);
  transition: color 0.3s ease;
}
.footer__fine a:hover { color: var(--gold-soft); }
.footer__copy {
  margin-top: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 236, 223, 0.32);
}

/* ─────────── responsive ─────────── */
@media (max-width: 1060px) {
  .nav__links { display: none; }
  .js .nav__burger { display: flex; }
}
@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__cup { margin-top: 34px; }
  .space__gallery { grid-template-columns: 1fr; gap: 32px; }
  .space__photo img { height: clamp(300px, 52vw, 420px); }
  .sig__grid { grid-template-columns: 1fr; }
  .pour + .pour { border-left: none; border-top: 1px solid var(--line-dark); }
  .visit__cols { grid-template-columns: 1fr; }
  .vcol + .vcol { border-left: none; border-top: 1px solid var(--line-dark); }
}
@media (max-width: 640px) {
  .btn--nav { display: none; }
  .hero { padding-top: 120px; padding-bottom: 150px; }
  .hero__lockup { margin-bottom: 34px; }
  .about__stats { flex-direction: column; border-top: none; }
  .stat { padding: 18px 0; border-top: 1px solid var(--line-light); }
  .stat + .stat { border-left: none; }
  .mi__fave { margin-left: 0; margin-top: 6px; display: inline-block; }
  .carousel__stage { min-height: 340px; }
}

/* ─────────── reduced motion ─────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .hero__title .line__inner { transform: none; }
  .hero__rule { transform: scaleX(1); }
  .about__cup .draw, .pour__icon .draw { stroke-dashoffset: 0; }
}
