/* ============================================================
   O'Pub — styles.css
   Dark, editorial, warm. Brass on charcoal.
   ============================================================ */

:root {
  --bg: #0e0b08;
  --bg-1: #131009;
  --bg-2: #1a160f;
  --bg-3: #221c14;
  --bg-4: #2a2218;

  --line: rgba(200, 152, 91, 0.18);
  --line-soft: rgba(241, 231, 210, 0.08);

  --cream: #f1e7d2;
  --cream-2: #d8cdb4;
  --cream-3: #a89e88;
  --mute: #786e5d;

  --brass: #c8985b;
  --brass-hi: #e9bd75;
  --brass-deep: #8a5a1f;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --pad-section: clamp(56px, 7.5vw, 112px);

  --ease: cubic-bezier(.2, .7, .2, 1);
  --mobile-header-offset: 64px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* overflow: clip avoids creating a scroll container (as overflow: hidden does),
     which would break position: sticky on iOS Safari. */
  overflow-x: clip;
  min-height: 100vh;
  background-image:
    radial-gradient(120% 60% at 50% -10%, rgba(232, 189, 117, 0.08), transparent 60%),
    radial-gradient(80% 80% at 100% 100%, rgba(139, 90, 31, 0.05), transparent 70%);
  background-attachment: fixed;
}

/* warm grain — fixed, very subtle */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.45;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch' seed='4'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.91  0 0 0 0 0.83  0 0 0 0.65 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

::selection {
  background: var(--brass);
  color: #1a1208;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--brass);
  color: #1a1208;
  padding: 10px 16px;
  font-weight: 600;
  z-index: 1000;
}

.skip:focus {
  left: 12px;
  top: 12px;
}

/* ============================================================
   Typography primitives
   ============================================================ */

.serif {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.italic {
  font-style: italic;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
  display: inline-block;
}

.eyebrow.no-rule::before {
  display: none;
}

.section-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 0.05em;
  font-variation-settings: "opsz" 14;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--cream);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-variation-settings: "opsz" 96, "SOFT" 50;
  line-height: 1.05;
  letter-spacing: -0.018em;
}

h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-variation-settings: "opsz" 32, "SOFT" 50;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p {
  color: var(--cream-2);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 56ch;
}

.rule {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  border: 0;
}

.rule.solid {
  background: var(--line);
}

/* ============================================================
   Layout shell
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section {
  position: relative;
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section);
}

/* ============================================================
   Top info strip
   ============================================================ */

.info-strip {
  position: relative;
  z-index: 40;
  background: #0a0805;
  border-bottom: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.info-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 3.4vw, 34px);
  padding-top: 11px;
  padding-bottom: 11px;
  flex-wrap: wrap;
}

.info-strip .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brass);
  display: inline-block;
  opacity: 0.7;
}

.info-strip a:hover {
  color: var(--cream);
}

/* ============================================================
   Header / nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(14, 11, 8, 0.55);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 8, 5, 0.85);
  border-bottom-color: var(--line-soft);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--cream);
  font-variation-settings: "opsz" 32, "SOFT" 80;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  border: 1px solid rgba(200, 152, 91, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 1px 0 rgba(0, 0, 0, 0.4);
  transition: transform .5s var(--ease), border-color .35s var(--ease);
}

.brand:hover .brand-mark {
  transform: rotate(-6deg);
  border-color: var(--brass);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand em {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: "opsz" 32, "SOFT" 100;
  margin: 0 1px;
}

@media (max-width: 760px) {
  .brand {
    gap: 10px;
    font-size: 1.35rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    padding: 3px;
  }
}

.nav-list {
  list-style: none;
  display: flex;
  gap: clamp(16px, 2vw, 30px);
  margin: 0;
  padding: 0;
  align-items: center;
}

/* Desktop primary nav is visible by default; hidden on mobile below. */
.primary-nav {
  display: flex;
  align-items: center;
}

.nav-list a {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-2);
  padding: 6px 0;
  transition: color .3s var(--ease);
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -2px;
  height: 1px;
  background: var(--brass);
  transition: right .35s var(--ease);
}

.nav-list a:hover {
  color: var(--cream);
}

.nav-list a:hover::after {
  right: 0;
}

.nav-list a.nav-chip {
  padding: 7px 16px;
  border: 1px solid rgba(200, 152, 91, 0.5);
  border-radius: 999px;
  color: var(--brass);
  letter-spacing: 0.22em;
  font-size: 11.5px;
  transition: color .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}

.nav-list a.nav-chip::after {
  display: none;
}

.nav-list a.nav-chip:hover,
.nav-list a.nav-chip:focus-visible {
  color: var(--cream);
  border-color: var(--brass);
  background: rgba(200, 152, 91, 0.12);
}

.nav-cta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brass);
  font-variation-settings: "opsz" 24, "SOFT" 100;
  white-space: nowrap;
  transition: color .3s var(--ease);
}

.nav-cta:hover {
  color: var(--brass-hi);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 60;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--cream);
  position: relative;
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1px;
  background: var(--cream);
  transition: transform .35s var(--ease);
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.is-open .menu-toggle span {
  background: transparent;
}

.is-open .menu-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}

.is-open .menu-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(80px, 12vw, 160px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 70%;
  background:
    radial-gradient(50% 60% at 70% 0%, rgba(232, 189, 117, 0.16), transparent 70%),
    radial-gradient(40% 70% at 15% 30%, rgba(139, 90, 31, 0.12), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: end;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: clamp(28px, 5vw, 48px);
}

.hero-eyebrow .pip {
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200, 152, 91, 0.18);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 120, "SOFT" 70;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--cream);
  text-wrap: balance;
}

.hero-title em {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: inherit;
}

.hero-title .amp {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-meta {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
}

.hero-lead {
  font-size: clamp(1.1rem, 1.6vw, 1.32rem);
  line-height: 1.5;
  color: var(--cream-2);
  max-width: 52ch;
}

.hero-lead strong {
  color: var(--cream);
  font-weight: 500;
}

.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(36px, 4vw, 48px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
  line-height: 1;
  border: 1px solid transparent;
}

.btn .arrow {
  display: inline-block;
  transition: transform .35s var(--ease);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.btn.primary {
  background: var(--brass);
  color: #1a1208;
}

.btn.primary:hover {
  background: var(--brass-hi);
}

.btn.ghost {
  border-color: var(--line);
  color: var(--cream);
}

.btn.ghost:hover {
  border-color: var(--brass);
  color: var(--brass-hi);
}

.btn.btn-sm {
  padding: 12px 22px;
  font-size: 12px;
}

/* hero footer / coordinates */
.hero-footer {
  position: relative;
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.hero-footer .label {
  display: block;
  color: var(--mute);
  margin-bottom: 6px;
  font-size: 10px;
}

.hero-footer .val {
  color: var(--cream-2);
  font-weight: 500;
}

/* ============================================================
   Section: About
   ============================================================ */

.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: baseline;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.section-head .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-variation-settings: "opsz" 24, "SOFT" 100;
  white-space: nowrap;
}

.section-head .head-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.about-copy h2 + p {
  margin-top: clamp(24px, 3vw, 36px);
}

.about-copy p + p {
  margin-top: 18px;
}

.about-copy .pull {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  color: var(--brass);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 36px 0 0;
  padding-left: 18px;
  border-left: 1px solid var(--line);
  max-width: 32ch;
}

.about-aside {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(200, 152, 91, 0.035), rgba(0, 0, 0, 0));
  border-radius: 4px;
}

.fact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}

.fact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fact-list li:first-child {
  padding-top: 0;
}

.fact-list dt,
.fact-list .k {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
}

.fact-list dd,
.fact-list .v {
  font-family: var(--serif);
  font-variation-settings: "opsz" 32, "SOFT" 70;
  color: var(--cream);
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  line-height: 1.35;
  margin: 0;
}

.fact-list .v.italic {
  font-style: italic;
  color: var(--brass);
}

/* ============================================================
   Section: Weekly happenings
   ============================================================ */

#weekly {
  background:
    linear-gradient(180deg, transparent, rgba(20, 16, 9, 0.6) 30%, rgba(20, 16, 9, 0.6) 70%, transparent);
}

.week-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: clamp(28px, 3.5vw, 44px);
}

.week-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(241, 231, 210, 0.06);
  background: #0a0805;
  isolation: isolate;
  transition: transform .6s var(--ease), border-color .4s var(--ease);
}

.week-card:hover {
  border-color: rgba(200, 152, 91, 0.28);
}

.week-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.week-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.05) brightness(0.82);
  transition: transform 1s var(--ease), filter .8s var(--ease);
}

.week-card:hover .week-card__media img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.05) brightness(0.9);
}

.week-card__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 6, 3, 0.55) 0%,
      rgba(8, 6, 3, 0.1) 28%,
      rgba(8, 6, 3, 0) 46%,
      rgba(8, 6, 3, 0.55) 72%,
      rgba(8, 6, 3, 0.92) 100%);
  pointer-events: none;
}

.week-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 1.8vw, 24px);
  color: var(--cream);
}

.week-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.week-card__day {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.week-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 231, 210, 0.68);
}

.week-card__tag .pulse {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 0 rgba(200, 152, 91, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

.week-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.week-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 70;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0;
}

.week-card__title em {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: "opsz" 96, "SOFT" 100;
}

.week-card__desc {
  color: rgba(241, 231, 210, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
  margin: 0;
  max-width: 34ch;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 152, 91, 0.55);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(200, 152, 91, 0);
  }
}

.week-note {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  align-items: baseline;
}

.week-note p {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  color: var(--cream-3);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0;
}

/* ============================================================
   Section: Drinks
   ============================================================ */

.drinks-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: stretch;
}

.drinks-feature {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: #0a0805;
  min-height: 520px;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.drinks-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 1.2s var(--ease);
}

.drinks-feature:hover img {
  transform: scale(1.04);
}

.drinks-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 5, 0.45) 0%, rgba(10, 8, 5, 0) 30%, rgba(10, 8, 5, 0) 55%, rgba(10, 8, 5, 0.85) 100%);
  pointer-events: none;
}

.drinks-feature .feat-top {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 2.4vw, 28px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-2);
}

.drinks-feature .feat-top .pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  display: inline-block;
  margin-right: 8px;
  vertical-align: 1px;
}

.drinks-feature .feat-bottom {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: clamp(22px, 2.6vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.drinks-feature .feat-title {
  font-family: var(--serif);
  font-variation-settings: "opsz" 96, "SOFT" 80;
  color: var(--cream);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
}

.drinks-feature .feat-title em {
  font-style: italic;
  color: var(--brass);
}

.drinks-feature .feat-cap {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.drinks-right {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(20px, 2.4vw, 32px);
  min-width: 0;
}

.drinks-mini {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: #0a0805;
  aspect-ratio: 16 / 7;
  isolation: isolate;
}

.drinks-mini img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 78%;
  filter: saturate(0.92) contrast(1.05) brightness(0.95);
  transition: transform 1.2s var(--ease);
}

.drinks-mini:hover img {
  transform: scale(1.04);
}

.drinks-mini::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 8, 5, 0.72) 0%, rgba(10, 8, 5, 0.25) 38%, rgba(10, 8, 5, 0) 60%);
}

.drinks-mini .mini-cap {
  position: absolute;
  left: clamp(16px, 2vw, 24px);
  bottom: clamp(14px, 1.8vw, 20px);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  color: var(--cream);
}

.drinks-mini .mini-cap .lbl {
  font-size: 9.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
}

.drinks-mini .mini-cap .ttl {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-variation-settings: "opsz" 48, "SOFT" 70;
  letter-spacing: -0.01em;
}

.drinks-mini .mini-cap .ttl em {
  font-style: italic;
  color: var(--brass);
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
}

.drinks-grid.is-stack {
  grid-template-columns: 1fr 1fr;
  align-content: start;
}

.drink {
  position: relative;
  padding: clamp(28px, 3.6vw, 44px);
  background: linear-gradient(180deg, rgba(34, 28, 20, 0.6), rgba(20, 16, 9, 0.4));
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color .4s var(--ease), transform .4s var(--ease);
}

.drink:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.drink::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 60% at 0% 0%, rgba(200, 152, 91, 0.08), transparent 50%);
}

.drink .num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  display: block;
}

.drink h3 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 14px;
}

.drink p {
  color: var(--cream-2);
  font-size: 0.97rem;
  line-height: 1.6;
  max-width: 42ch;
}

.drinks-foot {
  margin-top: clamp(24px, 3vw, 36px);
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  color: var(--cream-3);
  font-size: 0.98rem;
  text-align: center;
  letter-spacing: 0.01em;
}

/* ============================================================
   Cocktail menu card
   ============================================================ */

.menu-card {
  position: relative;
  margin-top: clamp(44px, 5.5vw, 80px);
  padding: clamp(32px, 4.2vw, 56px) clamp(24px, 4vw, 64px);
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(200, 152, 91, 0.07), transparent 70%),
    linear-gradient(180deg, rgba(20, 16, 11, 0.55) 0%, rgba(10, 8, 5, 0.55) 100%);
  isolation: isolate;
  scroll-margin-top: clamp(80px, 11vh, 120px);
}

.menu-card::before,
.menu-card::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(200, 152, 91, 0.45);
  pointer-events: none;
}

.menu-card::before {
  top: 12px;
  left: 12px;
  border-right: 0;
  border-bottom: 0;
}

.menu-card::after {
  bottom: 12px;
  right: 12px;
  border-left: 0;
  border-top: 0;
}

.menu-card__head {
  text-align: center;
  padding-bottom: clamp(22px, 2.8vw, 32px);
  margin-bottom: clamp(28px, 3.5vw, 40px);
  border-bottom: 1px solid rgba(200, 152, 91, 0.18);
}

.menu-card__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
  font-weight: 500;
}

.menu-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-variation-settings: "opsz" 96, "SOFT" 70;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  letter-spacing: -0.022em;
  line-height: 1.04;
  color: var(--cream);
  margin: 0;
}

.menu-card__title em {
  font-style: italic;
  color: var(--brass);
  font-variation-settings: "opsz" 96, "SOFT" 100;
}

.menu-card__sub {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 14, "SOFT" 100;
  color: var(--cream-3);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.menu-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
}

.menu-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu-col__title {
  margin: 0;
  padding-bottom: 12px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  border-bottom: 1px solid rgba(200, 152, 91, 0.22);
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 20px);
}

.menu-item {
  break-inside: avoid;
}

.menu-item__row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-item__name {
  font-family: var(--serif);
  font-variation-settings: "opsz" 32, "SOFT" 80;
  color: var(--cream);
  font-size: 1.08rem;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.menu-item__leader {
  flex: 1;
  border-bottom: 1px dotted rgba(200, 152, 91, 0.28);
  min-width: 18px;
  transform: translateY(-4px);
}

.menu-item__price {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 32, "SOFT" 100;
  color: var(--brass);
  font-size: 1.08rem;
  line-height: 1.2;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.menu-item__price::before {
  content: "$";
  margin-right: 1px;
  font-style: normal;
  color: rgba(200, 152, 91, 0.55);
  font-size: 0.72em;
  vertical-align: 0.1em;
  letter-spacing: 0;
}

.menu-item__ing {
  margin: 5px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(241, 231, 210, 0.52);
  letter-spacing: 0.02em;
}

@media (max-width: 820px) {
  .menu-card__body {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .menu-card {
    padding: 28px 20px;
  }
  .menu-card::before,
  .menu-card::after {
    width: 16px;
    height: 16px;
  }
  .menu-item__name,
  .menu-item__price {
    font-size: 1.02rem;
  }
}

/* ============================================================
   Section: Visit
   ============================================================ */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}

.visit-card {
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
}

.visit-stamp {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: -6px;
}

.visit-stamp .stamp-line {
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), rgba(200, 152, 91, 0));
  display: inline-block;
}

.address {
  font-family: var(--serif);
  font-variation-settings: "opsz" 96, "SOFT" 70;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.address em {
  font-style: italic;
  color: var(--brass);
}

.visit-lede {
  font-family: var(--serif);
  font-variation-settings: "opsz" 32, "SOFT" 90;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--cream-2);
  max-width: 44ch;
}

.contact-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}

.contact-stack .k {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
  display: block;
}

.contact-stack .v {
  font-family: var(--serif);
  font-variation-settings: "opsz" 32, "SOFT" 70;
  font-size: 1.18rem;
  color: var(--cream);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .3s var(--ease);
}

.contact-stack .v.italic {
  font-style: italic;
  color: var(--brass-hi);
}

.contact-stack a.v:hover {
  color: var(--brass-hi);
}

.hours-block {
  background: rgba(34, 28, 20, 0.5);
  border: 1px solid var(--line-soft);
  padding: clamp(22px, 2.5vw, 28px);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hours-block__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hours-block .k {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
}

.hours-block__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.hours-block__badge .pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 0 rgba(200, 152, 91, 0.5);
  animation: pulse 2.4s ease-out infinite;
}

.hours-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(241, 231, 210, 0.08);
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.hours-row dt {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  color: var(--cream);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}

.hours-row dd {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-2);
  font-feature-settings: "tnum" 1, "lnum" 1;
  white-space: nowrap;
}

.hours-block .note {
  font-size: 0.9rem;
  color: var(--cream-3);
  line-height: 1.55;
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 14, "SOFT" 100;
}

/* ============================================================
   Map card — custom illustrated mini-map
   ============================================================ */
.map-card {
  position: relative;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(70% 60% at 50% 38%, rgba(200, 152, 91, 0.10), transparent 70%),
    linear-gradient(180deg, #110d08 0%, #0a0805 60%, #0c0906 100%);
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(241, 231, 210, 0.04);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(200, 152, 91, 0.45);
  z-index: 4;
  pointer-events: none;
}

.map-card::before {
  top: 14px;
  left: 14px;
  border-right: 0;
  border-bottom: 0;
}

.map-card::after {
  bottom: 14px;
  right: 14px;
  border-left: 0;
  border-top: 0;
}

.map-head {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(26px, 3vw, 36px) clamp(28px, 3.5vw, 38px) 4px;
  gap: 16px;
}

.map-eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 8px;
}

.map-title {
  display: block;
  font-family: var(--serif);
  font-variation-settings: "opsz" 32, "SOFT" 90;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.map-title em {
  font-style: italic;
  color: var(--brass);
}

.map-scale {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  border: 1px solid var(--line-soft);
  padding: 7px 11px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(241, 231, 210, 0.02);
  flex-shrink: 0;
}

.map-stage {
  position: relative;
  flex: 1 1 auto;
  padding: 4px clamp(14px, 2vw, 22px) 0;
}

.map-svg {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 6 / 5;
  display: block;
}

.map-svg .m-pulse {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: mapPulse 2.8s cubic-bezier(.22, .61, .36, 1) infinite;
}

@keyframes mapPulse {
  0%   { transform: scale(0.6); opacity: 0.7; }
  80%  { opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

.map-legend {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  padding: clamp(8px, 1.4vw, 14px) clamp(28px, 3.5vw, 38px) clamp(18px, 2vw, 22px);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-3);
  border-top: 1px solid rgba(241, 231, 210, 0.04);
}

.map-legend > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.map-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.map-legend .dot.opub {
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(200, 152, 91, 0.18);
}

.map-legend .dot.near {
  background: rgba(241, 231, 210, 0.55);
}

.map-legend .dot.park {
  background: transparent;
  border: 1px dashed rgba(200, 152, 91, 0.7);
  width: 10px;
  height: 10px;
}

.map-cta {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "lbl arrow"
    "sub arrow";
  align-items: center;
  column-gap: 18px;
  padding: clamp(18px, 2.2vw, 22px) clamp(28px, 3.5vw, 38px);
  border-top: 1px solid var(--line-soft);
  background: linear-gradient(0deg, rgba(20, 16, 10, 0.65), transparent);
  color: var(--cream);
  text-decoration: none;
  transition: background .35s var(--ease), color .35s var(--ease);
  overflow: hidden;
}

.map-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200, 152, 91, 0.12), rgba(200, 152, 91, 0));
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.map-cta .lbl {
  grid-area: lbl;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
}

.map-cta .sub {
  grid-area: sub;
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  font-size: 1.05rem;
  color: var(--cream);
  margin-top: 4px;
}

.map-cta .arrow {
  grid-area: arrow;
  font-size: 1.5rem;
  color: var(--brass);
  transition: transform .3s var(--ease), color .3s var(--ease);
  font-family: var(--sans);
  line-height: 1;
}

.map-cta:hover,
.map-cta:focus-visible {
  background: linear-gradient(0deg, rgba(28, 22, 14, 0.85), transparent);
}

.map-cta:hover::before,
.map-cta:focus-visible::before {
  opacity: 1;
}

.map-cta:hover .arrow,
.map-cta:focus-visible .arrow {
  transform: translate(3px, -3px);
  color: var(--cream);
}

.map-cta:hover .lbl,
.map-cta:focus-visible .lbl {
  color: var(--brass-hi);
}

/* ============================================================
   Section: Social / gallery
   ============================================================ */

.social-section {
  border-top: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(20, 16, 9, 0.6), transparent);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.social-copy h2 {
  margin-bottom: 22px;
}

.social-copy p {
  max-width: 46ch;
}

.social-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  isolation: isolate;
}

.tile.is-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(10, 8, 5, 0.7));
  z-index: 0;
  pointer-events: none;
}

.tile.is-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 1.2s var(--ease);
}

.tile.is-photo:hover img {
  transform: scale(1.05);
}

.tile .tag {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tile .tag .lbl {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.tile .tag .ttl {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  color: var(--cream);
  font-size: 1.05rem;
}

/* ============================================================
   Footer
   ============================================================ */

footer.site-footer {
  border-top: 1px solid var(--line-soft);
  background: #080603;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(32px, 4vw, 56px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-mark {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(200, 152, 91, 0.4);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 8px 30px rgba(0, 0, 0, 0.5);
}

.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-mark-cap {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 24, "SOFT" 100;
  max-width: 18ch;
  line-height: 1.35;
}

.footer-mark-cap small {
  display: block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 2.6rem);
  font-variation-settings: "opsz" 96, "SOFT" 70;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.footer-brand em {
  font-style: italic;
  color: var(--brass);
}

.footer-tag {
  margin-top: 14px;
  color: var(--cream-3);
  font-size: 0.95rem;
  max-width: 36ch;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--cream-2);
  font-size: 0.96rem;
  transition: color .3s var(--ease);
}

.footer-col a:hover {
  color: var(--brass-hi);
}

.footer-col ul.footer-hours {
  gap: 10px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px dashed rgba(241, 231, 210, 0.07);
}

.footer-hours li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.footer-hours span:first-child {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  font-size: 0.98rem;
  font-variation-settings: "opsz" 24, "SOFT" 100;
}

.footer-hours span:last-child {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-3);
  font-feature-settings: "tnum" 1, "lnum" 1;
  white-space: nowrap;
}

.footer-bottom {
  margin-top: clamp(48px, 6vw, 80px);
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.footer-bottom .sep {
  color: var(--brass);
}

/* ============================================================
   Reveal animation
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .week-card__tag .pulse {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Shared media frame helpers
   ============================================================ */

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: #0a0805;
  border-radius: 4px;
  isolation: isolate;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter .8s var(--ease);
  filter: saturate(0.92) contrast(1.02);
}

.media-frame:hover img {
  transform: scale(1.025);
}

.media-corner {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.media-corner.tl {
  top: 10px;
  left: 10px;
  width: 14px;
  height: 14px;
  border-top: 1px solid var(--brass);
  border-left: 1px solid var(--brass);
}

.media-corner.br {
  bottom: 10px;
  right: 10px;
  width: 14px;
  height: 14px;
  border-bottom: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
}

/* ============================================================
   Hero media
   ============================================================ */

.hero-shell {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 460px;
  max-height: 640px;
  margin: 0;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  border-radius: 4px;
  background: #0a0805;
  isolation: isolate;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.95) contrast(1.05) brightness(0.95);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 11, 8, 0.0) 40%, rgba(14, 11, 8, 0.55) 100%),
    radial-gradient(120% 80% at 50% 0%, rgba(0, 0, 0, 0.0), rgba(14, 11, 8, 0.35));
  pointer-events: none;
}

.hero-media .media-meta {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  color: var(--cream);
}

.hero-media .media-meta .lbl {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-media .media-meta .lbl::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--brass);
}

.hero-media .media-meta .stamp {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ============================================================
   About media
   ============================================================ */

.about-side {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 28px);
}

.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  background: #0a0805;
  isolation: isolate;
}

.about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 1.2s var(--ease);
}

.about-media:hover img {
  transform: scale(1.03);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60%, rgba(10, 8, 5, 0.55));
  pointer-events: none;
}

.about-media .caption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
}

.about-media .caption .ttl {
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
  font-size: 1.05rem;
  font-variation-settings: "opsz" 24, "SOFT" 100;
}

.about-media .caption .num {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

.about-side .fact-list li {
  padding: 14px 0;
}

/* ============================================================
   Reel — small editorial scroll-scrub
   ============================================================ */

.reel-section {
  position: relative;
  padding: clamp(64px, 9vw, 128px) 0;
  background:
    radial-gradient(120% 80% at 80% 0%, rgba(200, 152, 91, 0.05), transparent 60%),
    var(--bg);
}

.reel-section .container {
  position: relative;
}

.reel-track {
  position: relative;
  /* Outer scroll track — short, deliberate, restrained */
  height: 180vh;
}

.reel-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.reel-copy {
  max-width: 38ch;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 22px);
}

.reel-copy .num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brass);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  letter-spacing: 0.04em;
}

.reel-copy .eyebrow {
  color: var(--brass);
}

.reel-copy h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  color: var(--cream);
  margin: 0;
  text-wrap: balance;
}

.reel-copy p {
  color: var(--cream-2);
  max-width: 36ch;
  line-height: 1.55;
  margin: 0;
}

.reel-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-top: 8px;
}

.reel-meta .rule {
  flex: 0 0 32px;
  height: 1px;
  background: var(--brass);
}

/* Frame — a small portrait card, like a held-up phone clip */
.reel-frame {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
  background: #050402;
  box-shadow:
    0 1px 0 rgba(241, 231, 210, 0.06) inset,
    0 30px 80px -28px rgba(0, 0, 0, 0.85),
    0 14px 40px -18px rgba(0, 0, 0, 0.6);
  isolation: isolate;
}

.reel-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(241, 231, 210, 0.08);
  border-radius: inherit;
  pointer-events: none;
  z-index: 3;
}

.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #050402;
  pointer-events: none;
  filter: saturate(0.92) contrast(1.04) brightness(0.95);
  z-index: 1;
}

.reel-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 4, 2, 0.4) 0%, rgba(5, 4, 2, 0) 18%, rgba(5, 4, 2, 0) 70%, rgba(5, 4, 2, 0.7) 100%);
  z-index: 2;
}

.reel-frame .reel-corners span {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--brass);
  z-index: 4;
  opacity: 0.9;
}

.reel-frame .reel-corners .tl { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.reel-frame .reel-corners .tr { top: 10px; right: 10px; border-left: 0; border-bottom: 0; }
.reel-frame .reel-corners .bl { bottom: 10px; left: 10px; border-right: 0; border-top: 0; }
.reel-frame .reel-corners .br { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.reel-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-2);
  background: rgba(5, 4, 2, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px;
  border: 1px solid rgba(241, 231, 210, 0.08);
  border-radius: 999px;
}

.reel-tag .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 3px rgba(200, 152, 91, 0.18);
}

.reel-progress {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 2px;
  background: rgba(241, 231, 210, 0.12);
  z-index: 5;
  border-radius: 1px;
  overflow: hidden;
}

.reel-progress .bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brass-deep), var(--brass) 60%, var(--brass-hi));
}

.reel-time {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 5;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--cream-3);
  background: rgba(5, 4, 2, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(241, 231, 210, 0.06);
}

/* ============================================================
   Focus styles
   ============================================================ */

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

/* ============================================================
   Responsive — broad breakpoints
   ============================================================ */

@media (max-width: 1080px) {
  .hero-shell {
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(28px, 4vw, 48px);
  }

  .hero-media {
    min-height: 420px;
  }

  .week-grid {
    gap: 14px;
  }

  .week-card {
    aspect-ratio: 3 / 4;
  }

  .week-card__title {
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  }

  .week-card__desc {
    font-size: 0.88rem;
  }
}

@media (max-width: 960px) {
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
    aspect-ratio: 16 / 11;
    max-height: 460px;
    min-height: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    aspect-ratio: 16 / 10;
    max-height: 480px;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .map-svg {
    aspect-ratio: 5 / 4;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
  }

  .drinks-shell {
    grid-template-columns: 1fr;
  }

  .drinks-feature {
    min-height: 360px;
    aspect-ratio: 16 / 10;
  }

  .reel-track {
    height: 160vh;
  }

  .reel-stage {
    grid-template-columns: 1fr;
    gap: 36px;
    align-content: center;
  }

  .reel-copy {
    max-width: none;
    text-align: left;
  }

  .reel-frame {
    max-width: 280px;
  }
}

/* -------------------------------------------------------------
   MOBILE NAV
   Mobile uses a fixed header with measured offset instead of sticky so
   Safari can fully move it out of view on downward scroll.
   ------------------------------------------------------------- */

:root {
  --mobile-header-h: 64px;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: calc(var(--mobile-header-offset) + 16px);
  }

  body {
    padding-top: var(--mobile-header-offset);
  }

  .info-strip {
    display: none;
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0d0a07;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(241, 231, 210, 0.06);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transition:
      transform .32s cubic-bezier(.22, .61, .36, 1),
      background .35s var(--ease),
      border-color .35s var(--ease);
  }

  .site-header.is-hidden {
    transform: translate3d(0, calc(-1 * var(--mobile-header-offset)), 0);
    -webkit-transform: translate3d(0, calc(-1 * var(--mobile-header-offset)), 0);
  }

  body.is-open .site-header {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }

  .site-header.is-scrolled {
    background: #0a0805;
    border-bottom-color: rgba(241, 231, 210, 0.08);
  }

  .site-header .container {
    min-height: var(--mobile-header-h);
    padding-top: calc(env(safe-area-inset-top, 0px) + 8px);
    padding-bottom: 8px;
    gap: 12px;
  }

  .primary-nav {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

/* Drawer element — hidden on desktop entirely. */
.mobile-drawer {
  display: none;
}

@media (max-width: 760px) {
  /* Drawer stays below the measured mobile header. */
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--mobile-header-offset);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45; /* one below site-header (z:50) so the header & toggle stay on top */
    background: #0a0805;
    padding:
      28px
      24px
      calc(32px + env(safe-area-inset-bottom, 0px));
    gap: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform .4s cubic-bezier(.22, .61, .36, 1),
      opacity .3s ease,
      visibility 0s linear .4s;
  }

  .mobile-drawer[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      transform .4s cubic-bezier(.22, .61, .36, 1),
      opacity .25s ease,
      visibility 0s linear 0s;
  }

  .mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .mobile-drawer__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .mobile-drawer__nav ul a {
    display: block;
    padding: 12px 2px;
    font-family: var(--serif);
    font-size: clamp(1.6rem, 6.2vw, 2.1rem);
    font-variation-settings: "opsz" 72, "SOFT" 80;
    letter-spacing: -0.02em;
    color: var(--cream);
    line-height: 1.02;
    border-bottom: 1px solid rgba(241, 231, 210, 0.05);
    transition: color .25s var(--ease);
  }

  .mobile-drawer__nav ul li:last-child a {
    border-bottom: none;
  }

  .mobile-drawer__nav ul a:hover,
  .mobile-drawer__nav ul a:active,
  .mobile-drawer__nav ul a:focus-visible {
    color: var(--brass);
  }

  .mobile-drawer__chip {
    align-self: flex-start;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border: 1px solid rgba(200, 152, 91, 0.5);
    border-radius: 999px;
    color: var(--brass);
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  }

  .mobile-drawer__chip span {
    font-size: 13px;
    letter-spacing: 0;
    transform: translateY(-0.5px);
  }

  .mobile-drawer__chip:hover,
  .mobile-drawer__chip:active,
  .mobile-drawer__chip:focus-visible {
    background: rgba(200, 152, 91, 0.14);
    color: var(--cream);
    border-color: var(--brass);
  }

  .mobile-drawer__contact {
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(200, 152, 91, 0.22);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-drawer__tel {
    font-family: var(--serif);
    font-style: italic;
    font-variation-settings: "opsz" 36, "SOFT" 100;
    color: var(--brass);
    font-size: 1.45rem;
    letter-spacing: -0.005em;
  }

  .mobile-drawer__addr {
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream-2);
  }

  .mobile-drawer__hours {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream-3);
    margin-top: 2px;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .site-header {
    transition: background .35s var(--ease), border-color .35s var(--ease);
  }
}

  .hero-eyebrow {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 10px;
  }

  .hero-eyebrow .sep {
    display: none;
  }

  .week-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .week-card {
    aspect-ratio: 5 / 4;
  }

  .week-card__overlay {
    padding: 18px;
  }

  .week-card__title {
    font-size: 1.9rem;
  }

  .week-card__desc {
    font-size: 0.9rem;
    max-width: 42ch;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
    max-height: none;
  }

  .drinks-grid {
    grid-template-columns: 1fr;
  }

  .drinks-feature {
    min-height: 320px;
    aspect-ratio: 4 / 5;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-brand-row {
    gap: 14px;
  }

  .hero-footer {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding-top: 18px;
  }

  .hero-footer > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 10px;
  }

  .hero-footer > div:last-child {
    border-bottom: 0;
  }

  .hero-footer .label {
    margin-bottom: 0;
  }

  .contact-stack {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
  }

  .map-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .map-svg {
    aspect-ratio: 4 / 5;
  }

  .map-svg .m-pin--far,
  .map-svg .m-sub {
    display: none;
  }

  .map-cta {
    grid-template-columns: 1fr auto;
    column-gap: 14px;
  }

  .info-strip {
    font-size: 10px;
  }

  .info-strip .container {
    gap: 14px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .info-strip .hide-sm {
    display: none;
  }

  .reel-section {
    padding: 64px 0;
  }

  .reel-track {
    height: 150vh;
  }

  .reel-frame {
    max-width: 240px;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(2.8rem, 16vw, 4rem);
    letter-spacing: -0.025em;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reel-track {
    height: auto;
  }

  .reel-stage {
    position: static;
    height: auto;
    padding: 32px 0;
  }

  .map-svg .m-pulse {
    animation: none;
  }
}
