:root {
  --ink: #111111;
  --ink-soft: #1a1a1a;
  --paper: #f1eee7;
  --white: #fffef9;
  --warm: #bd9a61;
  --muted: #8e8a82;
  --line: rgba(255, 255, 255, 0.2);
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--warm); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  transform: translateY(-200%);
  padding: .7rem 1rem;
  background: var(--white);
  color: var(--ink);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  background: #111;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  transition: height .45s var(--ease), background .45s var(--ease);
}
.site-header.is-scrolled {
  height: 76px;
  background: #111;
}
.brand {
  width: 64px;
  height: 82px;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: height .45s var(--ease), width .45s var(--ease);
}
.brand img {
  width: 100%;
  filter: invert(1) brightness(2);
}
.is-scrolled .brand { width: 48px; height: 62px; }
.site-nav { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 3.5rem); }
.site-nav a, .site-nav button {
  font-size: .69rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: opacity .25s ease;
}
.site-nav button { border: 0; background: transparent; color: inherit; cursor: pointer; }
.site-nav a:hover, .site-nav button:hover { opacity: .55; }
.site-nav .nav-cta { border: 1px solid rgba(255,255,255,.55); padding: .8rem 1.1rem; }
.site-nav .nav-instagram {
  width: 25px;
  height: 25px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
}
.nav-instagram svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
}
.nav-instagram .instagram-dot { fill: currentColor; stroke: none; }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 11rem clamp(1.25rem, 5vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
}
.hero-media, .hero-shade { position: absolute; inset: 0; height: 100%; }
.hero-media { object-fit: cover; object-position: 54% center; transform: scale(1.015); animation: hero-in 1.8s var(--ease) both; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(9,9,9,.86) 0%, rgba(9,9,9,.48) 44%, rgba(9,9,9,.08) 78%),
    linear-gradient(0deg, rgba(9,9,9,.7) 0%, transparent 45%);
}
.hero-copy { position: relative; z-index: 2; max-width: 830px; }
.eyebrow, .section-index {
  margin: 0;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-eyebrow { margin-bottom: 1.6rem; color: rgba(255,255,255,.72); }
.hero h1, .hero-line, h2, h3 { font-family: var(--display); text-transform: uppercase; }
.hero h1 {
  margin: 0;
  max-width: 8ch;
  font-size: clamp(4.6rem, 10.5vw, 10.5rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .73;
}
.hero h1 span { display: block; font-weight: 300; }
.hero-line {
  margin: .55rem 0 2rem;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300;
  letter-spacing: .04em;
}
.text-link {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.6);
  padding-bottom: .45rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-mark {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 5vw, 5.5rem);
  top: 20%;
  width: clamp(120px, 17vw, 260px);
  opacity: .92;
}
.hero-mark img { filter: invert(1) brightness(2); }
.hero-hours {
  position: absolute;
  z-index: 2;
  right: calc(clamp(1.25rem, 5vw, 5.5rem) + 2.25rem);
  bottom: clamp(2rem, 5vw, 4.5rem);
  width: clamp(200px, 16vw, 250px);
  margin: 0;
  padding: clamp(.85rem, 1.4vw, 1.15rem) clamp(.9rem, 1.5vw, 1.25rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8,8,8,.72), rgba(8,8,8,.42));
  box-shadow: 0 12px 32px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--display);
  font-size: clamp(.92rem, 1.15vw, 1.2rem);
  font-weight: 300;
  letter-spacing: .04em;
  line-height: 1.15;
  text-transform: uppercase;
}
.hero-hours h2 { margin: 0 0 .65rem; font-size: 1em; font-weight: 500; letter-spacing: .14em; }
.hero-hours dl { margin: 0; }
.hero-hours dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .12rem 0; }
.hero-hours dt, .hero-hours dd { margin: 0; font: inherit; }
.hero-hours dd { font-variant-numeric: tabular-nums; }
.hero-caption {
  position: absolute;
  z-index: 2;
  right: clamp(1.25rem, 5vw, 5.5rem);
  bottom: clamp(2rem, 5vw, 4.5rem);
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
@keyframes hero-in { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.015); } }

.section-pad { padding: clamp(5.5rem, 10vw, 10rem) clamp(1.25rem, 7vw, 7.5rem); }
.section-index { color: var(--muted); }
.manifesto { background: var(--paper); color: var(--ink); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(3rem, 10vw, 11rem);
  align-items: end;
  margin-top: clamp(3.5rem, 7vw, 7rem);
}
.manifesto h2, .section-head h2, .atmosphere h2, .place h2 {
  margin: 0;
  font-size: clamp(4.2rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .78;
}
.manifesto h2 em { font-weight: 300; color: var(--warm); }
.manifesto-copy { max-width: 34rem; }
.manifesto-copy p { margin: 1.2rem 0 0; color: #57544e; }
.manifesto-copy .lead {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.drinks { background: var(--ink); }
.drinks-intro {
  min-height: 740px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  border-top: 1px solid var(--line);
}
.drinks-intro-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 8vw, 8rem);
  background: #20150f;
}
.drinks-intro-copy h2 {
  margin: 0;
  max-width: 7ch;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .82;
}
.drinks-intro-photo { min-height: 620px; overflow: hidden; }
.drinks-intro-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 1.2s var(--ease);
}
.drinks-intro:hover .drinks-intro-photo img { transform: scale(1.025); }
.drink {
  min-height: 740px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border-top: 1px solid var(--line);
}
.drink-photo { min-height: 620px; overflow: hidden; }
.drink-photo img { height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.drink:hover .drink-photo img { transform: scale(1.025); }
.drink-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 8vw, 8rem);
  background: var(--ink-soft);
}
.drink-copy .eyebrow { color: var(--warm); }
.drink-copy h3 {
  margin: 1rem 0 2rem;
  font-size: clamp(4.8rem, 9vw, 9.5rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .75;
}
.drink-copy > p:last-child { max-width: 32rem; color: #bbb7ae; }
.drink-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  color: #595650;
}
.drink-negroni { grid-template-columns: .85fr 1.15fr; }
.drink-negroni .drink-photo { order: 2; }
.drink-negroni .drink-copy { background: #20150f; }

.atmosphere { background: var(--paper); color: var(--ink); }
.atmosphere-head {
  display: grid;
  grid-template-columns: .3fr 1fr .55fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
.atmosphere h2 { font-size: clamp(4rem, 8vw, 8rem); }
.atmosphere-head > p:last-child { max-width: 29rem; margin: 0; color: #5c5953; }
.gallery {
  display: grid;
  grid-template-columns: 1.05fr .55fr .85fr;
  grid-template-rows: 38vw 31vw;
  gap: clamp(.75rem, 1.5vw, 1.5rem);
}
.gallery figure { margin: 0; overflow: hidden; }
.gallery img { height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery figure:hover img { transform: scale(1.035); }
.gallery-a { grid-row: 1 / 3; }
.gallery-b { grid-column: 2 / 4; }
.gallery-c, .gallery-d { grid-row: 2; }

.place { display: grid; grid-template-columns: 1fr 1fr; min-height: 850px; }
.place-photo { overflow: hidden; }
.place-photo img { height: 100%; object-fit: cover; }
.place-copy { display: flex; flex-direction: column; justify-content: center; background: #161616; }
.place-copy .eyebrow { margin-top: 4rem; color: var(--warm); }
.place h2 { margin-top: 1.2rem; font-size: clamp(4.5rem, 8vw, 8rem); }
.place-copy > p:not(.eyebrow):not(.section-index) { max-width: 34rem; margin: 2rem 0; color: #aaa69d; }
.button {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,.5);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.button:hover { background: var(--white); color: var(--ink); }

.footer { padding-bottom: 2rem; background: #090909; }
.footer-mark { width: min(430px, 100%); margin: 0 auto 7rem; }
.footer-mark > img { display: block; width: min(430px, 64vw); margin: 0 auto; filter: invert(1) brightness(2); }
.footer-info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.footer-info p { margin: 0; }
.footer-label { margin-bottom: 1rem !important; color: #77736c; font-size: .65rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.footer-action { display: flex; justify-content: flex-end; align-items: start; }
.button-light { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 2rem; color: #77736c; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }

.booking-modal { width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(5,5,5,.88); color: var(--white); }
.booking-modal::backdrop { background: rgba(5,5,5,.88); backdrop-filter: blur(7px); }
.booking-modal[open] { display: grid; place-items: center; }
.booking-panel { position: relative; display: grid; grid-template-columns: minmax(260px, .8fr) minmax(430px, 1.2fr); width: min(980px, calc(100% - 2rem)); max-height: calc(100dvh - 2rem); overflow: hidden; background: #111; border: 1px solid #3a3a3a; box-shadow: 0 2rem 7rem rgba(0,0,0,.65); }
.booking-image { min-height: 100%; margin: 0; overflow: hidden; background: #202020; }
.booking-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.booking-content { position: relative; overflow-y: auto; padding: clamp(2rem, 5vw, 4.5rem); }
.booking-content .eyebrow { color: var(--warm); }
.booking-panel h2 { margin: 1rem 0 2.5rem; font-size: clamp(3.7rem, 8vw, 6rem); line-height: .8; }
.booking-close { position: absolute; top: 1rem; right: 1rem; width: 2.75rem; height: 2.75rem; border: 1px solid #444; background: transparent; color: white; font: 300 2rem/1 var(--body); cursor: pointer; }
.booking-form, .booking-form label { display: grid; gap: .65rem; }
.booking-form { gap: 1.35rem; }
.booking-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.35rem; }
.booking-form label { color: #aaa69d; font-size: .66rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.booking-form input, .booking-form select { width: 100%; min-height: 3.4rem; border: 1px solid #404040; border-radius: 0; padding: .85rem 1rem; background: #181818; color: white; font: 400 1rem var(--body); letter-spacing: normal; text-transform: none; }
.booking-form select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,#aaa 50%),linear-gradient(135deg,#aaa 50%,transparent 50%); background-position: calc(100% - 18px) 50%,calc(100% - 13px) 50%; background-size: 5px 5px; background-repeat: no-repeat; }
.booking-form input:focus, .booking-form select:focus { outline: 1px solid var(--warm); border-color: var(--warm); }
.booking-note { color: #77736c; font-size: .62rem; font-weight: 400; letter-spacing: .03em; line-height: 1.5; text-transform: none; }
.booking-trap { position: absolute; left: -10000px; }
.booking-actions { display: flex; align-items: center; gap: 1.25rem; }
.booking-submit { margin-top: .5rem; background: transparent; color: white; cursor: pointer; }
.booking-submit:disabled { cursor: wait; opacity: .55; }
.booking-response-note { flex: 1; margin: .5rem 0 0; color: #aaa69d; font-size: .72rem; font-weight: 400; letter-spacing: normal; line-height: 1.45; }
.booking-response-note a { color: var(--white); white-space: nowrap; text-decoration: underline; text-underline-offset: .2em; }
.booking-status { min-height: 1.2em; margin: 0; color: #aaa69d; font-size: .75rem; }
.booking-status.is-error { color: #e28b80; }
body.modal-open { overflow: hidden; }

.reveal { opacity: 0; transform: translateY(44px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 78px; }
  .brand { width: 46px; height: 60px; }
  .nav-toggle {
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    background: transparent;
    border: 0;
    color: white;
  }
  .nav-toggle span { display: block; width: 26px; height: 1px; background: currentColor; transition: transform .35s var(--ease); }
  .nav-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.6rem;
    padding: 7rem 2rem;
    background: #101010;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
  }
  .site-nav.is-open { transform: none; }
  .site-nav a, .site-nav button { font-family: var(--display); font-size: 2.5rem; font-weight: 300; letter-spacing: .02em; }
  .site-nav .nav-cta { margin-top: 1rem; padding: .8rem 1.3rem; font-family: var(--body); font-size: .7rem; letter-spacing: .18em; }
  .site-nav .nav-instagram { width: 31px; height: 31px; margin-top: .3rem; }
  .hero { padding-top: 8rem; }
  .hero-mark { top: 17%; width: 125px; }
  .manifesto-grid, .atmosphere-head { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 3rem; }
  .drinks-intro, .drink, .drink-negroni { grid-template-columns: 1fr; min-height: 0; }
  .drinks-intro-photo, .drink-photo, .drink-negroni .drink-photo { min-height: auto; aspect-ratio: 16 / 10; order: 0; }
  .drinks-intro-copy { min-height: 520px; order: 1; }
  .drink-copy { min-height: 520px; }
  .atmosphere-head { align-items: start; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 90vw 54vw 65vw; }
  .gallery-a { grid-column: 1 / 3; grid-row: 1; }
  .gallery-b { grid-column: 1 / 3; grid-row: 2; }
  .gallery-c, .gallery-d { grid-row: 3; }
  .place { grid-template-columns: 1fr; min-height: 0; }
  .place-photo { aspect-ratio: 4 / 5; }
}

@media (max-width: 600px) {
  .hero { min-height: 760px; }
  .hero-media { object-position: 57% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(9,9,9,.88) 0%, rgba(9,9,9,.22) 75%), linear-gradient(90deg, rgba(9,9,9,.5), transparent); }
  .hero-mark { width: 120px; top: 15%; }
  .hero-hours {
    right: 1.25rem;
    top: calc(15% + 147px + clamp(8.5rem, 20vh, 10rem));
    bottom: auto;
    width: 156px;
    margin: 0;
    font-size: .78rem;
  }
  .hero-hours dt, .hero-hours dd { white-space: nowrap; }
  .hero-caption { display: none; }
  .hero h1 { max-width: 7ch; }
  .manifesto h2, .atmosphere h2, .place h2 { font-size: clamp(3.7rem, 18vw, 5.6rem); }
  .drinks-intro-photo, .drink-photo { aspect-ratio: 4 / 3; }
  .drinks-intro-copy { min-height: 450px; padding: 4rem 1.25rem; }
  .drinks-intro-copy h2 { font-size: clamp(3.7rem, 18vw, 5.2rem); }
  .drink-copy { min-height: 450px; padding: 4rem 1.25rem; }
  .drink-copy h3 { font-size: clamp(4.2rem, 24vw, 7rem); }
  .drink-negroni .drink-copy h3 { font-size: clamp(3.7rem, 18vw, 5.2rem); }
  .gallery { grid-template-columns: 1fr; grid-template-rows: 125vw 70vw 120vw 120vw; }
  .gallery-a, .gallery-b, .gallery-c, .gallery-d { grid-column: 1; grid-row: auto; }
  .footer-mark { margin-bottom: 5rem; }
  .footer-info { grid-template-columns: 1fr; }
  .footer-action { justify-content: flex-start; }
  .booking-panel { display: block; width: 100%; max-height: 100dvh; min-height: 100dvh; overflow-y: auto; border: 0; }
  .booking-image { height: 180px; min-height: 0; }
  .booking-image img { object-position: center 72%; }
  .booking-content { overflow: visible; padding: 3rem 1.25rem 2rem; }
  .booking-row { grid-template-columns: 1fr; }
  .booking-actions { gap: .85rem; }
  .booking-submit { flex: 0 0 auto; gap: .8rem; padding-inline: .9rem; }
  .booking-panel h2 { margin-bottom: 2rem; }
}

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