@charset "UTF-8";

:root {
  --ink: #091311;
  --ink-soft: #10201d;
  --forest: #163d35;
  --jade: #75aa91;
  --cream: #f1eadb;
  --paper: #e8dfce;
  --red: #f13c32;
  --gold: #c8a36c;
  --line-light: rgba(241, 234, 219, 0.22);
  --line-dark: rgba(9, 19, 17, 0.18);
  --page-pad: clamp(1.25rem, 4vw, 4rem);
  --display: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--cream);
  transform: translateY(-200%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

.eyebrow {
  margin: 0 0 1rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section { padding: clamp(5rem, 11vw, 10rem) var(--page-pad); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 5.5rem;
  padding: 1rem var(--page-pad);
  color: var(--cream);
  border-bottom: 1px solid transparent;
  transition: transform .5s var(--ease), background .4s, border-color .4s;
}

.site-header.is-scrolled {
  min-height: 4.75rem;
  background: rgba(9, 19, 17, .92);
  border-color: var(--line-light);
  backdrop-filter: blur(14px);
}

.site-header.is-hidden { transform: translateY(-105%); }

.brand {
  justify-self: start;
  width: 5.8rem;
  height: 3.7rem;
}

.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }

.desktop-nav { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.8rem); }
.desktop-nav a, .header-menu-link {
  position: relative;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.desktop-nav a::after, .header-menu-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.desktop-nav a:hover::after, .header-menu-link:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; justify-self: end; align-items: center; gap: 1.5rem; }
.menu-toggle { display: none; }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 7rem var(--page-pad) 3rem;
  color: var(--cream);
  background: var(--ink);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  transition: visibility .45s, opacity .45s, transform .6s var(--ease);
}

.mobile-menu[aria-hidden="false"] { visibility: visible; opacity: 1; transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .6rem 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 12vw, 5rem);
  line-height: 1;
  border-bottom: 1px solid var(--line-light);
}
.mobile-menu nav span { width: 2rem; font: 500 .65rem var(--sans); letter-spacing: .12em; }
.mobile-menu > p { margin: 2rem 0 0; color: var(--jade); font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
}

.hero-media { position: absolute; inset: 0; display: grid; grid-template-columns: 1.22fr .78fr; }
.hero-panel {
  min-height: calc(100% + 5rem);
  margin-top: -2.5rem;
  background-position: center;
  background-size: cover;
  transform: translateY(var(--parallax, 0));
  will-change: transform;
}

.hero-panel--cafe { background-image: linear-gradient(90deg, rgba(6, 15, 13, .65), rgba(6, 15, 13, .08)), url("./assets/hero-cafe.jpg"); }
.hero-panel--bar { background-image: linear-gradient(90deg, rgba(6, 15, 13, .04), rgba(6, 15, 13, .5)), url("./assets/hero-bar.jpg"); }
.hero-panel--bar::before { content: ""; position: absolute; inset: 0; background: rgba(5, 20, 17, .16); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.18), transparent 40%, rgba(0,0,0,.72)); }

.hero-grain, .visit-bg::after {
  position: absolute;
  inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image: repeating-radial-gradient(circle at 20% 30%, rgba(255,255,255,.7) 0 1px, transparent 1px 4px);
}

.hero-kicker {
  position: absolute;
  z-index: 2;
  top: 6.7rem;
  left: var(--page-pad);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100svh;
  width: min(62rem, 82vw);
  padding: 12rem var(--page-pad) clamp(6rem, 10vh, 8rem);
}

.hero-copy h1, .section h2, .preview-card h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.1rem, 10vw, 9.6rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .82;
}

.hero-copy h1 {
  line-height: calc(.82em + 4px);
}

.hero-copy h1 em, .section h2 em, .preview-card h1 em { font-weight: 400; }
.hero-intro { max-width: 38rem; margin: 2rem 0 0; font-size: clamp(1rem, 1.6vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.2rem; }

.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  min-width: 13rem;
  min-height: 3.45rem;
  padding: .9rem 1.2rem;
  font-size: .875rem;
  font-weight: 650;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: color .3s, background .3s, border-color .3s, transform .3s var(--ease);
}

.button:hover { transform: translateY(-3px); }
.button:active { transform: translateY(0) scale(.99); }
.button--light { color: var(--ink); background: var(--cream); border-color: var(--cream); }
.button--light:hover { color: var(--cream); background: transparent; }
.button--ghost { color: var(--cream); background: rgba(9,19,17,.12); border-color: rgba(241,234,219,.55); }
.button--ghost:hover { background: rgba(9,19,17,.75); border-color: var(--cream); }
.button--dark { color: var(--cream); background: var(--ink); border-color: var(--ink); }
.button--dark:hover { color: var(--ink); background: transparent; }
.button--red { color: var(--cream); background: var(--red); border-color: var(--red); }
.button--red:hover { color: var(--red); background: transparent; }

.hero-side-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: var(--page-pad);
  font-size: .75rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.scroll-cue { position: absolute; z-index: 2; right: var(--page-pad); bottom: 2rem; display: flex; align-items: center; gap: .75rem; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue i { display: block; width: 2.8rem; height: 1px; overflow: hidden; background: rgba(255,255,255,.35); }
.scroll-cue i::after { content: ""; display: block; width: 100%; height: 100%; background: var(--cream); animation: line-pulse 2.2s infinite; }
@keyframes line-pulse { 0% { transform: translateX(-110%); } 55%, 100% { transform: translateX(110%); } }

.identity-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--cream);
  background: var(--forest);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.identity-strip div { padding: 1.3rem var(--page-pad); font-size: .75rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; border-right: 1px solid var(--line-light); }
.identity-strip span { margin-right: .7rem; color: var(--jade); }

.cafe-section { overflow: hidden; background: var(--cream); }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); align-items: end; gap: 8vw; max-width: 92rem; margin: 0 auto clamp(4rem, 9vw, 8rem); }
.section h2 { font-size: clamp(3.5rem, 7.4vw, 7.8rem); }
.section-intro .intro-copy { padding-bottom: .5rem; }
.section-intro .intro-copy > p { margin: 0; font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.65; }
.inline-actions { display: flex; flex-wrap: wrap; gap: 1.7rem; margin-top: 2rem; }
.arrow-link { display: inline-flex; justify-content: space-between; gap: 2rem; padding: .65rem 0; font-size: .875rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid currentColor; transition: opacity .3s, gap .3s; }
.arrow-link:hover { gap: 2.7rem; opacity: .72; }

.cafe-gallery { position: relative; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(14rem, .55fr); align-items: end; gap: clamp(1rem, 3vw, 3rem); max-width: 94rem; margin: 0 auto clamp(6rem, 12vw, 11rem); }
.image-frame { margin: 0; overflow: hidden; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.image-frame:hover img { transform: scale(1.025); }
.image-frame--wide { height: clamp(25rem, 58vw, 48rem); }
.image-frame--portrait { height: clamp(20rem, 35vw, 35rem); margin-bottom: -4rem; }
.image-frame figcaption, .bar-photo figcaption { padding-top: .8rem; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.vertical-note { position: absolute; right: -2.5rem; bottom: 2rem; margin: 0; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; writing-mode: vertical-rl; }

.offer-stack { max-width: 94rem; margin: 0 auto; border-top: 1px solid var(--line-dark); }
.offer-row {
  display: grid;
  grid-template-columns: 3rem minmax(13rem, .6fr) minmax(18rem, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 4vw, 4rem);
  min-height: 28rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line-dark);
}
.offer-row--reverse .offer-image { order: 3; }
.offer-row--reverse .offer-copy { order: 2; }
.offer-number { align-self: start; padding-top: .5rem; font-size: .75rem; letter-spacing: .12em; }
.offer-image { height: 22rem; overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.offer-row:hover .offer-image img { transform: scale(1.04); }
.offer-copy h3 { margin: .3rem 0 1.2rem; font: 400 clamp(2rem, 3.4vw, 3.8rem)/.98 var(--display); letter-spacing: -.035em; }
.offer-copy > p:last-child { max-width: 28rem; margin: 0; color: #34423f; }
.offer-row > a { align-self: end; padding-bottom: .6rem; font-size: .875rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid currentColor; }

.walk-in-panel {
  display: grid;
  grid-template-columns: .6fr 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 94rem;
  margin: clamp(5rem, 10vw, 10rem) auto 0;
  padding: clamp(2rem, 5vw, 5rem);
  color: var(--ink);
  background: var(--paper);
}
.walk-in-panel h3 { margin: 0; font: 400 clamp(2.4rem, 4.5vw, 5rem)/.95 var(--display); letter-spacing: -.04em; }
.walk-in-panel > p:nth-of-type(2) { margin: 0; font-size: 1.05rem; }
.walk-in-panel > div { display: grid; justify-items: start; gap: 1rem; }
.walk-in-panel .text-link { font-size: .875rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid currentColor; }

.transition-section { position: relative; min-height: 88vh; overflow: hidden; color: var(--cream); background: var(--ink); }
.transition-image { position: absolute; inset: -5rem 0; background: url("./assets/hero-bar.jpg") center 43% / cover no-repeat; transform: translateY(var(--parallax, 0)); }
.transition-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,17,15,.25), rgba(8,17,15,.65)); }
.transition-copy { position: relative; z-index: 2; display: grid; place-content: center; min-height: 88vh; padding: 4rem var(--page-pad); text-align: center; }
.transition-copy > p:nth-child(2) { margin: 0; font: italic 400 clamp(2.5rem, 5vw, 5.2rem)/1.02 var(--display); letter-spacing: -.035em; }
.transition-copy > span { display: block; margin-top: 2rem; font-size: 1.5rem; }

.bar-section { overflow: hidden; color: var(--cream); background: var(--ink); }
.bar-heading { max-width: 78rem; margin: 0 0 clamp(5rem, 10vw, 9rem); }
.bar-heading h2 { font-size: clamp(4rem, 8.8vw, 9rem); }
.bar-heading > p:last-child { max-width: 36rem; margin: 2.5rem 0 0 auto; color: #c9c7be; font-size: 1.1rem; }

.bar-collage { position: relative; min-height: clamp(48rem, 72vw, 64rem); max-width: 94rem; margin: 0 auto; }
.bar-photo { position: absolute; margin: 0; overflow: hidden; }
.bar-photo img { width: 100%; height: calc(100% - 2.3rem); object-fit: cover; transition: transform 1s var(--ease), filter .6s; }
.bar-photo:hover img { transform: scale(1.025); filter: brightness(1.08); }
.bar-photo--one { top: 0; left: 0; width: 43%; height: 70%; z-index: 2; }
.bar-photo--two { top: 12%; right: 0; width: 52%; height: 46%; }
.bar-photo--three { right: 8%; bottom: 0; width: 48%; height: 38%; z-index: 3; }
.bar-photo figcaption { color: #a7b3ad; }

.bar-details { display: grid; grid-template-columns: .85fr 1.15fr; align-items: end; gap: 8vw; max-width: 94rem; margin: clamp(4rem, 7vw, 7rem) auto 0; padding-top: clamp(3rem, 5vw, 5rem); border-top: 1px solid var(--line-light); }
.bar-statement h3 { margin: .5rem 0 1.5rem; font: 400 clamp(3.1rem, 6vw, 6.5rem)/.9 var(--display); letter-spacing: -.05em; }
.bar-statement > p:nth-of-type(2) { max-width: 30rem; color: #c9c7be; font-size: 1.05rem; }
.bar-statement .button { margin-top: 1.5rem; }
.bar-detail-image img { width: 100%; min-height: 27rem; object-fit: cover; }
.bar-detail-image p { max-width: 25rem; margin: 1rem 0 0; color: #a7b3ad; font-size: .875rem; letter-spacing: .06em; text-transform: uppercase; }

.hours-section { color: var(--ink); background: var(--paper); }
.hours-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 4rem; max-width: 94rem; margin: 0 auto clamp(4rem, 8vw, 7rem); }
.hours-heading .eyebrow { grid-column: 1 / -1; }
.hours-heading > p:last-child { margin: 0 0 .75rem; font-size: 1.15rem; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; max-width: 94rem; margin: 0 auto; border: 1px solid var(--line-dark); }
.hours-card { padding: clamp(1.5rem, 4vw, 4rem); }
.hours-card--bar { color: var(--cream); background: var(--forest); }
.hours-card__top { display: flex; justify-content: space-between; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid currentColor; }
.hours-card__top > span { font-size: .75rem; letter-spacing: .12em; }
.hours-card__top div { text-align: right; }
.hours-card__top p { margin: 0; }
.hours-card__top p:first-child { font: 400 clamp(2rem, 3.4vw, 3.5rem)/1 var(--display); }
.hours-card__top p:last-child { margin-top: .5rem; font-size: .75rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; opacity: .82; }
.hours-card dl { margin: 2rem 0; }
.hours-card dl div { display: grid; grid-template-columns: 1fr auto; gap: 2rem; padding: .75rem 0; border-bottom: 1px solid currentColor; }
.hours-card dt, .hours-card dd { margin: 0; font-size: .9rem; }
.hours-card dd { font-weight: 600; }
.hours-note { min-height: 3.2rem; margin: 0 0 1rem; font-size: .875rem; opacity: .82; }

.community-section { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(22rem, .9fr); align-items: center; gap: clamp(3rem, 9vw, 9rem); background: var(--cream); }
.community-image { height: clamp(32rem, 56vw, 51rem); }
.community-image img { width: 100%; height: 100%; object-fit: cover; }
.community-copy h2 { font-size: clamp(3.5rem, 6.5vw, 7rem); }
.community-copy > p:nth-of-type(2) { max-width: 36rem; margin: 2rem 0 0; font-size: 1.05rem; }
.proof { display: flex; align-items: flex-end; gap: 1.3rem; margin: 3rem 0 1.5rem; }
.proof strong { font: 400 clamp(3rem, 6vw, 6rem)/.8 var(--display); letter-spacing: -.05em; }
.proof span { max-width: 8rem; font-size: .75rem; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }

.visit-section { position: relative; min-height: 90vh; overflow: hidden; color: var(--cream); background: var(--ink); }
.visit-bg { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,13,11,.88) 0%, rgba(5,13,11,.58) 58%, rgba(5,13,11,.2)), url("./assets/cafe-interior-2.jpg") center / cover no-repeat; }
.visit-copy { position: relative; z-index: 2; width: min(58rem, 100%); padding: clamp(7rem, 12vw, 11rem) var(--page-pad); }
.visit-copy h2 { margin: 0; font: 400 clamp(4rem, 8vw, 8.3rem)/.83 var(--display); letter-spacing: -.06em; }
.visit-locations { display: grid; grid-template-columns: 1fr 1fr; margin-top: clamp(3rem, 6vw, 6rem); border-top: 1px solid var(--line-light); }
.visit-locations > div { position: relative; display: grid; gap: 1.1rem; padding: 1.5rem 2rem 1.5rem 0; border-bottom: 1px solid var(--line-light); }
.visit-locations > div + div { padding-left: 2rem; border-left: 1px solid var(--line-light); }
.visit-locations span { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.visit-locations strong { font: 400 1.5rem/1.3 var(--display); }
.visit-locations i { position: absolute; right: 1rem; bottom: 1.5rem; color: var(--jade); font: 600 .75rem var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.visit-contact { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 2rem; font-size: .875rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.visit-contact a, .visit-contact span { border-bottom: 1px solid currentColor; }

.site-footer { padding: clamp(4rem, 8vw, 7rem) var(--page-pad) 1.5rem; color: var(--cream); background: var(--ink); border-top: 1px solid var(--line-light); }
.footer-brand { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding-bottom: 4rem; }
.footer-brand img { width: clamp(8rem, 15vw, 13rem); height: 7rem; object-fit: contain; object-position: left bottom; }
.footer-brand p { margin: 0; color: #a7b3ad; text-align: right; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); margin-left: 30%; border-top: 1px solid var(--line-light); }
.footer-links > div { display: grid; align-content: start; padding: 1.5rem; border-left: 1px solid var(--line-light); }
.footer-links p { margin: 0 0 1.2rem; color: var(--jade); font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-links a { width: fit-content; padding: .35rem 0; font-size: .88rem; }
.footer-links a:hover { color: var(--jade); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 5rem; padding-top: 1.2rem; color: #a7b3ad; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; border-top: 1px solid var(--line-light); }

.mobile-quick-actions { display: none; }

.js .reveal { opacity: 0; transform: translateY(2.5rem); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal-image img { transform: scale(1.015); transition: transform 1.1s var(--ease); }
.reveal-image.is-visible img { transform: scale(1); }

.preview-page { display: grid; min-height: 100svh; place-items: center; padding: 2rem; color: var(--cream); background: linear-gradient(135deg, rgba(8,18,15,.72), rgba(8,18,15,.96)), url("./assets/bar-neon-entrance.jpg") center / cover; }
.preview-card { width: min(44rem, 100%); padding: clamp(2rem, 6vw, 5rem); background: rgba(9,19,17,.88); border: 1px solid var(--line-light); backdrop-filter: blur(16px); }
.preview-logo { display: block; width: 7rem; height: 5rem; margin-bottom: 4rem; }
.preview-logo img { width: 100%; height: 100%; object-fit: contain; object-position: left; }
.preview-page--booking { background-image: linear-gradient(135deg, rgba(8,18,15,.74), rgba(8,18,15,.96)), url("./assets/cafe-interior-1.jpg"); }
.preview-card h1 { font-size: clamp(3.5rem, 10vw, 6.5rem); }
.preview-card > p:not(.eyebrow) { max-width: 32rem; margin: 2rem 0; color: #c9c7be; font-size: 1.05rem; }

/* Menu page */
.menu-page { color: var(--cream); background: var(--ink); }
.menu-hero { position: relative; min-height: 88svh; overflow: hidden; }
.menu-hero__image { position: absolute; inset: 0; background: url("./assets/cafe-interior-1.jpg") center 54% / cover no-repeat; transform: scale(1.03); }
.menu-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,15,13,.92), rgba(7,15,13,.54) 60%, rgba(7,15,13,.18)), linear-gradient(0deg, rgba(7,15,13,.68), transparent 55%); }
.menu-hero__copy { position: relative; z-index: 2; display: grid; align-content: end; min-height: 88svh; width: min(72rem, 90%); padding: 10rem var(--page-pad) clamp(5rem, 10vw, 8rem); }
.menu-hero__copy h1 { margin: 0; font: 400 clamp(4.3rem, 10vw, 10rem)/.82 var(--display); letter-spacing: -.065em; }
.menu-hero__copy h1 em { font-weight: 400; }
.menu-hero__copy > p:last-child { max-width: 40rem; margin: 2rem 0 0; font-size: clamp(1.05rem, 1.7vw, 1.35rem); }
.menu-hero__back { position: absolute; z-index: 2; right: var(--page-pad); bottom: 2rem; padding: .5rem 0; font-size: .875rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid currentColor; }

.menu-switcher { position: sticky; z-index: 50; top: 4.7rem; display: grid; grid-template-columns: repeat(4, 1fr); color: var(--cream); background: rgba(9,19,17,.96); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); backdrop-filter: blur(14px); }
.menu-switcher button { display: flex; align-items: baseline; justify-content: center; gap: .8rem; min-height: 4.5rem; padding: .9rem 1rem; color: inherit; background: transparent; border: 0; border-right: 1px solid var(--line-light); cursor: pointer; font-size: .875rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; transition: color .25s, background .25s; }
.menu-switcher button:last-child { border-right: 0; }
.menu-switcher button span { color: var(--jade); font-size: .75rem; }
.menu-switcher button:hover, .menu-switcher button[aria-selected="true"] { color: var(--ink); background: var(--cream); }
.menu-switcher button[aria-selected="true"] span { color: var(--forest); }

.menu-notice { display: flex; justify-content: space-between; gap: 2rem; padding: 1.4rem var(--page-pad); color: var(--ink); background: var(--gold); }
.menu-notice p { max-width: 56rem; margin: 0; font-size: .875rem; }
.menu-notice a, .menu-notice span { flex: 0 0 auto; align-self: flex-start; font-size: .875rem; font-weight: 650; border-bottom: 1px solid currentColor; }

.menu-panel { padding: clamp(5rem, 10vw, 9rem) var(--page-pad); color: var(--ink); background: var(--cream); }
.menu-panel--cocktails { color: var(--cream); background: var(--ink); }
.menu-panel__heading { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(18rem, .7fr); align-items: end; gap: 6vw; max-width: 94rem; margin: 0 auto clamp(4rem, 8vw, 7rem); }
.menu-panel__heading h2, .menu-cta h2 { margin: 0; font: 400 clamp(3.8rem, 7.5vw, 7.8rem)/.84 var(--display); letter-spacing: -.06em; }
.menu-panel__heading h2 em, .menu-cta h2 em { font-weight: 400; }
.menu-panel__heading > p { margin: 0 0 .75rem; font-size: 1.08rem; line-height: 1.65; }
.menu-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr); align-items: start; gap: clamp(3rem, 8vw, 8rem); max-width: 94rem; margin: 0 auto; }
.menu-layout--reverse .menu-list { order: 2; }
.menu-layout--reverse .menu-editorial { order: 1; }
.menu-list { border-top: 1px solid currentColor; }
.menu-group-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 1.5rem 0 1.2rem; border-bottom: 2px solid currentColor; }
.menu-group-heading--spaced { margin-top: 3.5rem; }
.menu-group-heading h3 { margin: 0; font: 400 clamp(2rem, 3vw, 3.2rem)/1 var(--display); letter-spacing: -.03em; }
.menu-group-heading span { text-align: right; font-size: .75rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.menu-item { position: relative; display: grid; grid-template-columns: 1fr auto; gap: .35rem 1.5rem; padding: 1.1rem 0; border-bottom: 1px solid currentColor; }
.menu-item h4 { grid-column: 1; margin: 0; font: 400 1.35rem/1.2 var(--display); }
.menu-item p { grid-column: 1; max-width: 36rem; margin: 0; color: #53615d; font-size: .9rem; }
.menu-panel--cocktails .menu-item p { color: #a7b3ad; }
.menu-item > span { grid-column: 2; grid-row: 1; align-self: center; font-size: .9rem; font-weight: 650; }
.menu-list__foot { display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; padding: 2rem 0; }
.menu-list__foot p { max-width: 30rem; margin: 0; font-size: .875rem; }
.menu-list__foot a { flex: 0 0 auto; font-size: .75rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid currentColor; }

.menu-editorial { position: sticky; top: 11rem; margin: 0; }
.menu-editorial img { width: 100%; height: clamp(29rem, 54vw, 51rem); object-fit: cover; }
.menu-editorial > div { display: grid; grid-template-columns: auto 1fr; gap: 2rem; padding: 1.2rem 0; border-bottom: 1px solid currentColor; }
.menu-editorial span { font-size: .75rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.menu-editorial p { max-width: 25rem; margin: 0; font-size: .875rem; }
.menu-editorial--bar img { filter: brightness(.82) contrast(1.06); }

.js .menu-panel[hidden] { display: none; }
.menu-cta { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 8vw; padding: clamp(5rem, 10vw, 9rem) var(--page-pad); color: var(--cream); background: var(--forest); }
.menu-cta > div:last-child { max-width: 34rem; }
.menu-cta > div:last-child > p { margin: 0 0 2rem; font-size: 1.08rem; }

@media (max-width: 800px) {
  .menu-hero { min-height: 86svh; }
  .menu-hero__copy { min-height: 86svh; padding: 7rem var(--page-pad) 3.5rem; }
  .menu-hero__back { display: none; }
  .menu-switcher { top: 4.7rem; grid-template-columns: 1fr 1fr; }
  .menu-switcher button { min-height: 3.7rem; }
  .menu-switcher button:nth-child(2) { border-right: 0; }
  .menu-switcher button:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .menu-notice { display: grid; gap: .75rem; }
  .menu-panel__heading, .menu-layout, .menu-cta { grid-template-columns: 1fr; }
  .menu-panel__heading { gap: 2rem; }
  .menu-layout--reverse .menu-list, .menu-layout--reverse .menu-editorial { order: initial; }
  .menu-editorial { position: relative; top: auto; grid-row: 1; }
  .menu-editorial img { height: 27rem; }
  .menu-list__foot { display: grid; }
  .menu-list__foot a { width: fit-content; }
}

@media (max-width: 430px) {
  .menu-hero__copy h1 { font-size: 3.2rem; line-height: .86; }
  .menu-switcher button { justify-content: flex-start; min-height: 3.5rem; font-size: .75rem; }
  .menu-switcher button span { display: none; }
  .menu-panel__heading h2, .menu-cta h2 { font-size: 3.4rem; }
  .menu-group-heading { align-items: flex-start; flex-direction: column; }
  .menu-group-heading span { text-align: left; }
  .menu-editorial img { height: 22rem; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .desktop-nav, .header-menu-link { display: none; }
  .menu-toggle { display: grid; width: 3rem; height: 3rem; place-content: center; gap: .42rem; color: var(--cream); background: transparent; border: 1px solid var(--line-light); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 1.15rem; height: 1px; background: currentColor; transition: transform .3s, opacity .3s; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(1) { transform: translateY(.23rem) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(-.23rem) rotate(-45deg); }
  .hero-copy { width: min(50rem, 92vw); }
  .identity-strip { grid-template-columns: 1fr 1fr; }
  .identity-strip div:nth-child(2) { border-right: 0; }
  .section-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .offer-row { grid-template-columns: 2rem minmax(12rem, .65fr) 1fr; }
  .offer-row > a { grid-column: 3; width: fit-content; }
  .offer-row--reverse .offer-image, .offer-row--reverse .offer-copy { order: initial; }
  .walk-in-panel { grid-template-columns: 1fr 1fr; }
  .walk-in-panel > .eyebrow { grid-column: 1 / -1; }
  .walk-in-panel > div { grid-column: 1 / -1; display: flex; align-items: center; }
  .community-section { gap: 3.5rem; }
  .footer-links { margin-left: 0; }
}

@media (max-width: 720px) {
  :root { --page-pad: 1.25rem; }
  body { padding-bottom: 4rem; }
  .site-header { min-height: 4.75rem; }
  .brand { width: 4.9rem; height: 3rem; }
  .hero-media { grid-template-columns: 1fr; }
  .hero-panel--cafe { grid-row: 1; background-position: center 35%; }
  .hero-panel--bar { display: none; }
  .hero-copy { width: 100%; padding-top: 9rem; padding-bottom: 5.3rem; }
  .hero-copy h1 { font-size: clamp(3.9rem, 20vw, 6rem); }
  .hero-copy .eyebrow { margin-bottom: .6rem; }
  .hero-intro { max-width: 29rem; margin-top: 1.35rem; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { min-width: 0; }
  .hero-side-note, .scroll-cue { display: none; }
  .hero-kicker { top: 5.5rem; font-size: .75rem; letter-spacing: .1em; }
  .identity-strip div { padding: 1rem 1.2rem; font-size: .75rem; }
  .section { padding-top: 5rem; padding-bottom: 5rem; }
  .section h2 { font-size: clamp(3.3rem, 15vw, 5.1rem); }
  .cafe-gallery { grid-template-columns: 1fr .62fr; margin-bottom: 7rem; }
  .image-frame--wide { height: 32rem; }
  .image-frame--portrait { height: 22rem; margin: 0 0 -4rem -2rem; z-index: 2; box-shadow: 0 1rem 2rem rgba(9,19,17,.15); }
  .vertical-note { display: none; }
  .offer-row { grid-template-columns: 2rem 1fr; gap: 1rem; min-height: 0; padding: 2rem 0; }
  .offer-number { grid-column: 1; grid-row: 1; }
  .offer-image { grid-column: 2; height: 19rem; }
  .offer-copy { grid-column: 2; }
  .offer-row > a { grid-column: 2; }
  .walk-in-panel { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem; }
  .walk-in-panel > .eyebrow, .walk-in-panel > div { grid-column: auto; }
  .walk-in-panel > div { display: grid; justify-items: stretch; }
  .walk-in-panel .button { width: 100%; }
  .transition-section, .transition-copy { min-height: 70vh; }
  .bar-heading > p:last-child { margin-left: 0; }
  .bar-collage { min-height: 49rem; }
  .bar-photo--one { width: 69%; height: 57%; }
  .bar-photo--two { top: 24%; width: 55%; height: 36%; z-index: 2; }
  .bar-photo--three { right: 0; width: 78%; height: 34%; }
  .bar-details { grid-template-columns: 1fr; }
  .bar-detail-image { margin-left: 12%; }
  .hours-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .hours-grid { grid-template-columns: 1fr; }
  .hours-card { padding: 2rem 1.4rem; }
  .hours-card__top p:first-child { font-size: 2.5rem; }
  .community-section { grid-template-columns: 1fr; }
  .community-image { height: 28rem; }
  .community-copy { padding: 0 .25rem; }
  .visit-section { min-height: 0; }
  .visit-copy { padding-top: 6rem; padding-bottom: 6rem; }
  .visit-locations { grid-template-columns: 1fr; }
  .visit-locations > div + div { padding-left: 0; border-left: 0; }
  .footer-brand { display: grid; padding-bottom: 3rem; }
  .footer-brand p { text-align: left; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line-light); }
  .footer-bottom { flex-wrap: wrap; }
  .mobile-quick-actions { position: fixed; z-index: 80; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; height: 4rem; color: var(--cream); background: var(--ink); border-top: 1px solid var(--line-light); }
  .mobile-quick-actions a { display: grid; place-items: center; font-size: .875rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
  .mobile-quick-actions a + a { color: var(--ink); background: var(--red); }
}

@media (max-width: 430px) {
  .hero-copy h1 { font-size: 3.8rem; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-actions .button--ghost { display: none; }
  .identity-strip { grid-template-columns: 1fr; }
  .identity-strip div { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .cafe-gallery { display: block; }
  .image-frame--wide { height: 29rem; }
  .image-frame--portrait { width: 54%; height: 16rem; margin: -5rem 1rem 0 auto; }
  .bar-collage { min-height: 43rem; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links > div, .footer-links > div:last-child { grid-column: auto; border-top: 1px solid var(--line-light); }
  .proof { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
