:root {
  --ink: #171713;
  --soft-ink: #444238;
  --paper: #f6f0e7;
  --warm: #ebe0d0;
  --olive: #5f6652;
  --olive-dark: #33382e;
  --strawberry: #9b3437;
  --cream: #fffaf1;
  --line: rgba(23, 23, 19, 0.14);
  --shadow: 0 22px 70px rgba(22, 18, 12, 0.18);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  padding-bottom: 76px;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 14px;
  z-index: 20;
  padding: 10px 12px;
  background: var(--cream);
  transform: translateY(-140%);
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px max(18px, env(safe-area-inset-left)) 12px;
  color: var(--cream);
  transition: background 180ms ease, border-color 180ms ease;
}

.topbar.is-scrolled {
  background: rgba(23, 23, 19, 0.9);
  border-bottom: 1px solid rgba(255, 250, 241, 0.12);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-symbol {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.55);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1;
}

.brand-name {
  max-width: 190px;
  overflow: hidden;
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav {
  display: none;
}

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

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center 38%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 8, 0.2), rgba(10, 10, 8, 0.36) 45%, rgba(10, 10, 8, 0.72)),
    radial-gradient(circle at 20% 15%, rgba(255, 250, 241, 0.16), transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 82svh;
  flex-direction: column;
  justify-content: flex-end;
  padding: 108px 22px 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--strawberry);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd9c4;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(54px, 17vw, 92px);
  font-weight: 600;
  line-height: 0.83;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(35px, 11vw, 62px);
  font-weight: 600;
  line-height: 0.95;
}

h3 {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: clamp(18px, 5vw, 25px);
  font-weight: 650;
  line-height: 1.22;
}

.jp {
  color: color-mix(in srgb, currentColor 78%, transparent);
  font-size: 14px;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 800;
}

.button.primary {
  background: var(--cream);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 250, 241, 0.45);
  color: var(--cream);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.facts div {
  min-width: 0;
  padding: 18px 12px;
  background: var(--cream);
}

.facts span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(20px, 5vw, 30px);
  line-height: 0.95;
}

.facts p {
  margin: 6px 0 0;
  color: var(--soft-ink);
  font-size: 11px;
}

.section-pad {
  padding: 74px 20px;
}

.intro,
.space {
  display: grid;
  gap: 30px;
}

.section-copy p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  max-width: 620px;
  color: var(--soft-ink);
}

.social-note {
  border-left: 2px solid var(--strawberry);
  padding-left: 14px;
  font-size: 13px;
}

.social-note a,
footer a {
  color: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.intro-image,
.space-gallery picture,
.access-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-image img,
.space-gallery img,
.access-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-image {
  aspect-ratio: 4 / 5;
}

.menu-section {
  background: #efe5d7;
}

.section-heading {
  margin-bottom: 26px;
}

.dish-grid {
  display: grid;
  gap: 14px;
}

.dish {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(23, 23, 19, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.72);
}

.dish picture {
  aspect-ratio: 1;
}

.dish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish div {
  min-width: 0;
  padding: 14px;
}

.dish p {
  margin-bottom: 8px;
  color: var(--soft-ink);
  font-size: 12px;
}

.dish span,
.seasonal span {
  color: var(--strawberry);
  font-size: 13px;
  font-weight: 900;
}

.seasonal {
  padding: 74px 0 74px 20px;
  background: var(--olive-dark);
  color: var(--cream);
}

.seasonal .section-heading {
  padding-right: 20px;
}

.seasonal .eyebrow {
  color: #f4b7a4;
}

.seasonal-track {
  display: grid;
  grid-auto-columns: minmax(230px, 72vw);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding: 0 20px 6px 0;
  scroll-snap-type: x mandatory;
}

.seasonal-track article {
  scroll-snap-align: start;
}

.seasonal-track img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.seasonal-track h3 {
  margin-top: 14px;
}

.seasonal-track p {
  margin-bottom: 8px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 13px;
}

.drinks {
  display: grid;
  gap: 30px;
  background: var(--cream);
}

.drink-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.drink-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background: rgba(246, 240, 231, 0.62);
}

.drink-list p {
  margin-bottom: 8px;
  color: var(--soft-ink);
  font-size: 13px;
}

.drink-list span {
  color: var(--strawberry);
  font-size: 13px;
  font-weight: 900;
}

.drink-visuals {
  display: grid;
  gap: 14px;
}

.signature-poster,
.drink-menu-detail {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.signature-poster img,
.drink-menu-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-poster {
  aspect-ratio: 4 / 5;
}

.drink-menu-detail {
  background: #f4eee5;
}

.drink-menu-detail summary {
  min-height: 52px;
  cursor: pointer;
  padding: 16px;
  color: var(--ink);
  font-weight: 900;
}

.drink-menu-detail img {
  border-top: 1px solid var(--line);
}

.space-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.space-gallery .wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.space-gallery picture:not(.wide) {
  aspect-ratio: 4 / 5;
}

.access {
  display: grid;
  background: var(--ink);
  color: var(--cream);
}

.access-image {
  min-height: 260px;
  border-radius: 0;
  box-shadow: none;
}

.access-content {
  padding: 48px 20px 78px;
}

.access .eyebrow {
  color: #f1b69b;
}

.access dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.access dt {
  color: rgba(255, 250, 241, 0.58);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access dd {
  margin: 4px 0 0;
  color: var(--cream);
}

.access .button.primary {
  background: #d8dfc8;
}

.access .button.secondary {
  border-color: rgba(255, 250, 241, 0.28);
}

footer {
  padding: 34px 20px 104px;
  background: #0d0d0b;
  color: rgba(255, 250, 241, 0.7);
}

footer p {
  margin-bottom: 6px;
  font-size: 13px;
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 12;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px;
  background: rgba(23, 23, 19, 0.9);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  display: flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.mobile-cta a:first-child {
  background: var(--cream);
  color: var(--ink);
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .topbar {
    padding: 20px 34px;
  }

  .brand-name {
    max-width: none;
  }

  .desktop-nav {
    display: flex;
    gap: 22px;
    color: rgba(255, 250, 241, 0.82);
    font-size: 13px;
    font-weight: 800;
  }

  .hero,
  .hero-content {
    min-height: 84svh;
  }

  .hero-content {
    padding: 120px 6vw 70px;
  }

  h1 {
    max-width: 9ch;
  }

  .facts div {
    padding: 24px 6vw;
  }

  .section-pad {
    padding: 108px 6vw;
  }

  .intro,
  .drinks,
  .space,
  .access {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .intro-image {
    max-height: 720px;
  }

  .dish-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .dish div {
    min-height: 148px;
  }

  .drink-list {
    grid-template-columns: 1fr 1fr;
  }

  .seasonal {
    padding: 108px 0 108px 6vw;
  }

  .seasonal-track {
    grid-auto-columns: minmax(260px, 24vw);
    padding-right: 6vw;
  }

  .access-image {
    min-height: 620px;
  }

  .access-content {
    padding: 108px 6vw;
  }

  footer {
    padding: 42px 6vw;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1120px) {
  .dish-grid {
    gap: 18px;
  }

  .section-copy {
    max-width: 620px;
  }

  .space-gallery {
    gap: 16px;
  }
}
