@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Noto+Sans+JP:wght@300;400;500;600&family=Noto+Serif+JP:wght@400;500;600&display=swap");

:root {
  --bg: #050505;
  --panel: #101010;
  --paper: #f6f1e8;
  --paper-2: #fffaf2;
  --ink: #171311;
  --text: #f7f1e8;
  --muted: #bdb4a8;
  --paper-muted: #5e5650;
  --line: rgba(255, 255, 255, 0.18);
  --paper-line: rgba(24, 18, 13, 0.18);
  --input-bg: #0d0d0d;
  --list-bg: #070707;
  --header-bg: rgba(5, 5, 5, 0.92);
  --header-bg-solid: rgba(5, 5, 5, 0.99);
  --logo-line: rgba(255, 255, 255, 0.24);
  --button-line: rgba(255, 255, 255, 0.72);
  --button-text: #ffffff;
  --secondary-bg: rgba(255, 255, 255, 0.06);
  --red: #b24b58;
  --tap-red: #dc6d7a;
  --blue: #347d89;
  --gold: #c4a257;
  --green: #5b9b72;
  --entry-photo-brightness: 0.80;
  --entry-action-burgundy: #b24b58;
  --entry-action-color: var(--entry-action-burgundy);
  --entry-action-hover: #d6a2aa;
  --radius: 6px;
  --entry-radius: 18px;
  --entry-content-width: 1040px;
  --entry-action-width: 960px;
  --entry-content-gutter: clamp(32px, 8vw, 120px);
  --entry-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.42));
  --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.18));
  --hero-copy: #f7f1e8;
}

body {
  background: var(--bg);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
}

.site-header {
  min-height: 72px;
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.brand-text {
  display: inline-block;
  color: #fff;
  font-family: "Cormorant Garamond", "Canela", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.brand-text:hover,
.brand-text:focus-visible {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  min-width: 112px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  display: grid;
  gap: 1px;
  line-height: 1.28;
  padding: 8px 10px;
}

.site-nav a span {
  font-size: 12px;
  font-weight: 700;
}

.site-nav a small {
  color: var(--muted);
  font-size: 10px;
}

.nav-toggle {
  border: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.nav-toggle span {
  background: #fff;
}

.hybrid-main .site-header {
  position: fixed;
  left: 0;
  right: 0;
}

.hybrid-entry {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  background: #000;
  color: #fff;
}

.hybrid-entry .site-header {
  position: relative;
  z-index: 50;
  left: auto;
  right: auto;
  width: min(var(--entry-content-width), calc(100% - var(--entry-content-gutter)));
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  justify-content: center;
  justify-items: stretch;
  gap: 10px;
  margin-inline: auto;
  padding: 20px 0 16px;
  background: #000;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: none;
}

.hybrid-entry .brand-text {
  grid-column: 1;
  justify-self: start;
  font-size: clamp(27px, 2.5vw, 34px);
  letter-spacing: 0.025em;
}

.hybrid-entry .nav-toggle {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hybrid-entry .nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 0;
}

.hybrid-entry .site-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  z-index: 30;
  width: 100vw;
  min-width: 0;
  min-height: calc(100svh - 70px);
  display: none;
  align-content: start;
  justify-self: center;
  justify-items: stretch;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.82) 64%, rgba(0, 0, 0, 0.72));
  padding: clamp(34px, 7vh, 70px) clamp(20px, 7vw, 32px) 48px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
}

.hybrid-entry .site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  display: grid;
  visibility: visible;
}

.hybrid-entry .site-nav a {
  width: min(100%, 420px);
  min-height: 54px;
  min-width: 0;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  padding: 0;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  transition: color 180ms ease, transform 180ms ease;
}

.hybrid-entry .site-nav a:hover,
.hybrid-entry .site-nav a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.hybrid-entry .site-nav a + a {
  border-left: 0;
}

.hybrid-entry .site-nav a span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: center;
  transition: color 180ms ease;
}

.hybrid-entry .site-nav a small {
  flex: 0 0 auto;
  display: inline;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8.25px;
  letter-spacing: 0.08em;
  text-align: center;
  transition: color 180ms ease;
}

.hybrid-entry .site-nav a:hover span,
.hybrid-entry .site-nav a:focus-visible span {
  color: rgba(255, 255, 255, 0.92);
}

.hybrid-entry .site-nav a:hover small,
.hybrid-entry .site-nav a:focus-visible small {
  color: rgba(255, 255, 255, 0.56);
}

.font-jp-serif,
.font-jp-serif h1,
.font-jp-serif h2,
.font-jp-serif h3,
.font-jp-serif .footer-name,
.font-jp-serif .course-panel h3,
.font-jp-serif .info-grid h3 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
}

.font-jp-serif h1,
.font-jp-serif h2,
.font-jp-serif h3,
.font-jp-serif .course-panel h3,
.font-jp-serif .info-grid h3 {
  font-weight: 500;
  letter-spacing: 0.015em;
}

.font-jp-serif .hybrid-hero h1 {
  line-height: 1.36;
}

.font-jp-serif .lead,
.font-jp-serif .copy-block p,
.font-jp-serif .dark-copy p,
.font-jp-serif .section-heading p,
.font-jp-serif .reservation-panel p {
  line-height: 2;
}

.font-canela-kaku,
.font-canela-kaku h1,
.font-canela-kaku h2,
.font-canela-kaku h3,
.font-canela-kaku .footer-name,
.font-canela-kaku .course-panel h3,
.font-canela-kaku .info-grid h3 {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", sans-serif;
}

.font-canela-kaku .brand-text {
  font-family: "Canela", "Cormorant Garamond", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
}

.entrance-page {
  min-height: 0;
  display: grid;
  place-items: start center;
  padding: 0;
}

.entrance-shell {
  position: relative;
  width: 100%;
  display: grid;
  gap: 0;
  border-radius: 0;
  box-shadow: none;
}

.entrance-photo-panel {
  position: relative;
  height: clamp(520px, 64svh, 680px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}

.entrance-carousel,
.hero-carousel,
.entrance-carousel img,
.hero-carousel img,
.entrance-shade {
  position: absolute;
  inset: 0;
}

.entrance-carousel img,
.hero-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: entranceFade 24s infinite;
}

.entrance-carousel img {
  filter: grayscale(1) saturate(0) contrast(1.08) brightness(var(--entry-photo-brightness));
  transform-origin: 50% 56%;
}

.entrance-carousel img:nth-child(1) {
  object-position: center top;
}

.hero-carousel img:nth-child(1) {
  object-position: center 78%;
}

.entrance-carousel img:nth-child(1),
.hero-carousel img:nth-child(1) {
  animation-delay: 0s;
}

.entrance-carousel img:nth-child(2),
.hero-carousel img:nth-child(2) {
  animation-delay: 6s;
}

.entrance-carousel img:nth-child(2) {
  object-position: center bottom;
}

.hero-carousel img:nth-child(2) {
  object-position: center 30%;
}

.entrance-carousel img:nth-child(3),
.hero-carousel img:nth-child(3) {
  animation-delay: 12s;
}

.entrance-carousel img:nth-child(3) {
  object-position: 55% bottom;
}

.hero-carousel img:nth-child(3) {
  object-position: 55% 30%;
}

.entrance-carousel img:nth-child(4),
.hero-carousel img:nth-child(4) {
  animation-delay: 18s;
  animation-name: entranceFadeCropTop;
}

.entrance-carousel img:nth-child(4) {
  object-position: center bottom;
}

.hero-carousel img:nth-child(4) {
  object-position: center 30%;
}

.entrance-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28) 66%, rgba(0, 0, 0, 0.48)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02) 50%, rgba(0, 0, 0, 0.18));
  z-index: 1;
}

.entrance-kicker,
.kicker {
  color: var(--gold);
  letter-spacing: 0;
}

.entrance-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: min(680px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-top-color: rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
}

.entrance-action {
  min-width: 0;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(11px, 2vw, 14px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
  white-space: nowrap;
}

.entrance-action + .entrance-action {
  border-left: 1px solid rgba(255, 255, 255, 0.26);
}

.entrance-action:hover,
.entrance-action:focus-visible {
  background: rgba(255, 255, 255, 0.92);
  color: #000;
}

.entry-link-strip .entrance-actions {
  top: 62%;
  width: min(560px, calc(100% - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.entry-link-strip .entrance-action {
  min-height: auto;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(10px, 1.2vw, 12px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.76);
}

.entry-link-strip .entrance-action + .entrance-action {
  border-left: 0;
}

.entry-link-strip .entrance-action:hover,
.entry-link-strip .entrance-action:focus-visible,
.entry-enter-focus .entrance-action:hover,
.entry-enter-focus .entrance-action:focus-visible {
  background: transparent;
  color: #fff;
}

.entry-enter-focus .entrance-actions {
  height: min(280px, 52%);
  width: min(520px, calc(100% - 48px));
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.entry-enter-focus .entrance-action {
  position: absolute;
  min-height: auto;
  padding: 7px 0;
  border: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(10px, 1.2vw, 12px);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.78);
}

.entry-enter-focus .entrance-action:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 10px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: 0.18em;
}

.entry-enter-focus .entrance-action + .entrance-action {
  border-left: 0;
}

.entry-enter-focus .entrance-action:nth-child(3) {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.entry-enter-focus .entrance-action:nth-child(2),
.entry-enter-focus .entrance-action:nth-child(3) {
  bottom: 0;
  width: 50%;
}

.entry-enter-focus .entrance-action:nth-child(2) {
  left: 0;
}

.entry-enter-focus .entrance-action:nth-child(3) {
  right: 0;
}

.entry-under-actions .entrance-actions {
  position: static;
  top: auto;
  left: auto;
  z-index: auto;
  width: min(var(--entry-action-width), calc(100% - var(--entry-content-gutter)));
  margin-inline: auto;
  transform: none;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: #000;
  backdrop-filter: none;
}

.entry-under-actions .entrance-action {
  min-height: 62px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(12px, 1.35vw, 17px);
  letter-spacing: 0.1em;
}

.entry-under-actions .entrance-action:hover,
.entry-under-actions .entrance-action:focus-visible {
  background: transparent;
  color: #fff;
}

@media (min-width: 641px) {
  .entry-under-actions .entrance-actions {
    position: relative;
    overflow: visible;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
  }

  .entry-under-actions .entrance-actions::before,
  .entry-under-actions .entrance-actions::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 100vw;
    height: 1px;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.26);
    pointer-events: none;
  }

  .entry-under-actions .entrance-actions::before {
    top: 0;
  }

  .entry-under-actions .entrance-actions::after {
    bottom: 0;
  }
}

.entrance-footer {
  width: min(var(--entry-content-width), calc(100% - var(--entry-content-gutter)));
  display: grid;
  justify-items: end;
  gap: 9px;
  margin-inline: auto;
  padding: 26px 0 28px;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(9px, 1.12vw, 15px);
  letter-spacing: 0.05em;
  line-height: 1.85;
  text-align: right;
}

.entrance-footer p {
  margin: 0;
}

.entrance-footer address {
  display: grid;
  gap: 1px;
  margin: 0;
  font-style: normal;
  justify-items: end;
}

.footer-name {
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  font-size: clamp(12px, 1.5vw, 20px);
  letter-spacing: 0.08em;
  padding: 8px 0 5px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(8px, 0.78vw, 11px);
  letter-spacing: 0.08em;
  padding-top: 8px;
}

.back-to-top {
  color: rgba(255, 255, 255, 0.74);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-decoration: none;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: #fff;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 8px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
}

.footer-socials svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(255, 255, 255, 0.54);
  color: #fff;
}

.hybrid-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 128px clamp(18px, 5vw, 72px) 76px;
  overflow: hidden;
}

.hybrid-hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-carousel {
  z-index: 0;
  transform-origin: center center;
}

.hybrid-main .hero-carousel {
  opacity: 1;
}

.hybrid-main.is-hero-synced .hero-carousel {
  opacity: 1;
}

.hybrid-main.is-from-entrance .hero-carousel {
  transform: scale(var(--entry-hero-scale, 1.08));
}

.hybrid-hero::after {
  content: "";
  background: var(--hero-overlay);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  border-top: 1px solid var(--red);
  padding-top: 28px;
  color: #fff;
}

.hybrid-hero h1 {
  margin: 0 0 18px;
  font-size: 56px;
  line-height: 1.25;
}

.lead {
  color: var(--text);
  font-size: 18px;
}

.white-band,
.black-band {
  padding: 94px clamp(16px, 5vw, 72px);
}

.white-band {
  background: var(--paper);
  color: var(--ink);
}

.black-band {
  background: var(--bg);
  color: var(--text);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.white-band > *,
.black-band > * {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.copy-block h2,
.dark-copy h2,
.drink-copy h2,
.reservation-panel h2 {
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.38;
}

.copy-block p,
.section-heading p,
.reservation-panel p,
.course-panel p,
.info-grid p,
.fine-print {
  color: var(--paper-muted);
}

.dark-copy p,
.drink-copy p,
.hybrid-footer,
.hybrid-footer p {
  color: var(--muted);
}

.split-layout,
.menu-layout,
.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr);
  gap: 42px;
  align-items: center;
}

.split-layout-dark,
.access-layout {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}

.reverse-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.82fr);
}

.image-frame img,
.wide-photo img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.image-frame img {
  aspect-ratio: 4 / 3;
}

.tall-frame img {
  aspect-ratio: 3 / 4;
}

.menu-photo img {
  height: 100%;
  min-height: 560px;
  object-position: center;
}

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

.course-panel,
.info-grid article,
.reservation-panel {
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 26px;
}

.course-panel h3,
.info-grid h3 {
  color: var(--red);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
}

.course-panel dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.course-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--paper-line);
  padding-top: 8px;
}

.course-panel dt,
.course-panel dd {
  margin: 0;
}

.course-panel dd {
  white-space: nowrap;
}

.fine-print {
  margin: 18px auto 0;
  max-width: 1120px;
  font-size: 13px;
}

.drink-band {
  display: grid;
  gap: 34px;
}

.drink-band .wide-photo {
  overflow: hidden;
  border-radius: var(--radius);
}

.drink-copy {
  max-width: 760px;
  text-align: center;
}

.wide-photo img {
  aspect-ratio: 16 / 7;
}

.drink-band .wide-photo img {
  object-position: center bottom;
  transform: translateY(-6%) scale(1.08);
  transform-origin: center bottom;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gallery-preview .section-heading p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  gap: 12px;
}

.gallery-strip figure {
  margin: 0;
}

.gallery-strip img {
  width: 100%;
  height: 320px;
  border-radius: var(--radius);
  object-fit: cover;
}

.gallery-strip figure:nth-child(even) img {
  height: 250px;
  margin-top: 34px;
}

.gallery-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.dark-copy address {
  color: var(--muted);
  font-style: normal;
}

.reservation-band {
  text-align: center;
}

.reservation-panel {
  max-width: 780px;
}

.light-secondary {
  border-color: var(--paper-line);
  color: var(--ink);
}

.hybrid-footer {
  width: auto;
  margin: 0;
  padding: 36px clamp(16px, 5vw, 72px) 48px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.hybrid-footer .footer-name {
  color: #fff;
}

.hybrid-footer a {
  color: #fff;
  text-decoration: none;
}

.primary-button,
.secondary-button {
  border-radius: var(--radius);
}

.primary-button {
  background: var(--red);
}

.secondary-button {
  background: rgba(255, 255, 255, 0.06);
}

.hybrid-main {
  background: #000;
  color: rgba(255, 255, 255, 0.84);
}

.hybrid-main .site-header {
  top: 0;
  min-height: 70px;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hybrid-main .brand-text {
  color: #fff;
  font-size: clamp(27px, 2.5vw, 34px);
  letter-spacing: 0.025em;
}

.hybrid-main .site-nav {
  position: absolute;
  top: 100%;
  left: 50%;
  right: auto;
  width: 100vw;
  min-width: 0;
  min-height: calc(100svh - 70px);
  display: none;
  align-content: start;
  justify-items: stretch;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.82) 64%, rgba(0, 0, 0, 0.72));
  padding: clamp(34px, 7vh, 70px) clamp(20px, 7vw, 32px) 48px;
  transform: translateX(-50%);
}

.hybrid-main .site-nav.is-open {
  display: grid;
}

.hybrid-main .site-nav a {
  width: min(100%, 420px);
  min-height: 54px;
  min-width: 0;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  padding: 0;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  transition: color 180ms ease, transform 180ms ease;
}

.hybrid-main .site-nav a:hover,
.hybrid-main .site-nav a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.hybrid-main .site-nav a + a {
  border-left: 0;
}

.hybrid-main .site-nav a span {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-align: center;
  transition: color 180ms ease;
}

.hybrid-main .site-nav a small {
  flex: 0 0 auto;
  display: inline;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8.25px;
  letter-spacing: 0.08em;
  text-align: center;
  transition: color 180ms ease;
}

.hybrid-main .site-nav a:hover span,
.hybrid-main .site-nav a:focus-visible span {
  color: rgba(255, 255, 255, 0.92);
}

.hybrid-main .site-nav a:hover small,
.hybrid-main .site-nav a:focus-visible small {
  color: rgba(255, 255, 255, 0.56);
}

.hybrid-main .nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.hybrid-main .nav-toggle span {
  width: 24px;
  height: 2px;
  margin: 0;
  background: #fff;
}

@media (min-width: 981px) {
  .hybrid-entry .entrance-carousel img:nth-child(1) {
    object-position: center 22%;
  }

  .hybrid-entry .entrance-carousel img:nth-child(2) {
    object-position: center 70%;
  }

  .hybrid-entry .entrance-carousel img:nth-child(3) {
    object-position: 55% 70%;
  }

  .hybrid-entry .site-header {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    gap: 18px;
  }

  .hybrid-main .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .hybrid-entry .brand-text {
    grid-column: 1;
    justify-self: start;
  }

  .hybrid-entry .site-nav {
    position: static;
    width: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    grid-column: 2;
    justify-self: end;
    justify-items: initial;
    gap: 6px;
    background: transparent;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
    visibility: visible;
  }

  .hybrid-entry .site-nav.is-open {
    display: flex;
    transform: none;
  }

  .hybrid-entry .site-nav a {
    width: auto;
    min-height: 44px;
    min-width: 96px;
    display: grid;
    gap: 1px;
    padding: 8px 10px;
    text-shadow: none;
  }

  .hybrid-entry .site-nav a + a {
    border-left: 0;
  }

  .hybrid-entry .site-nav a span,
  .hybrid-entry .site-nav a small {
    text-align: center;
  }

  .hybrid-entry .nav-toggle {
    display: none;
  }

  .hybrid-main .site-nav {
    position: static;
    width: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-items: initial;
    gap: 6px;
    background: transparent;
    padding: 0;
    transform: none;
  }

  .hybrid-main .site-nav.is-open {
    display: flex;
  }

  .hybrid-main .site-nav a {
    width: auto;
    min-height: 44px;
    min-width: 96px;
    display: grid;
    gap: 1px;
    padding: 8px 10px;
    text-shadow: none;
  }

  .hybrid-main .site-nav a span,
  .hybrid-main .site-nav a small {
    text-align: center;
  }

  .hybrid-main .nav-toggle {
    display: none;
  }
}

.hybrid-main .hero-carousel img {
  filter: none;
}

.hybrid-main .hero-copy {
  width: min(620px, 100%);
  border-top-color: var(--entry-action-burgundy);
  padding-top: 24px;
}

.hybrid-main .hybrid-hero h1 {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hybrid-main .lead {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.5vw, 18px);
}

.hybrid-main .kicker {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.hybrid-main .white-band,
.hybrid-main .black-band {
  background: #000;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 0;
}

.hybrid-main .white-band:nth-of-type(even),
.hybrid-main .black-band:nth-of-type(even) {
  background: #050505;
}

.hybrid-main .section-heading h2,
.hybrid-main .copy-block h2,
.hybrid-main .dark-copy h2,
.hybrid-main .drink-copy h2,
.hybrid-main .reservation-panel h2 {
  color: #fff;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  font-weight: 500;
}

.hybrid-main .copy-block p,
.hybrid-main .section-heading p,
.hybrid-main .reservation-panel p,
.hybrid-main .course-panel p,
.hybrid-main .info-grid p,
.hybrid-main .fine-print,
.hybrid-main .dark-copy p,
.hybrid-main .drink-copy p,
.hybrid-main .dark-copy address {
  color: rgba(255, 255, 255, 0.66);
}

.hybrid-main .image-frame img,
.hybrid-main .wide-photo img,
.hybrid-main .gallery-strip img {
  border-radius: var(--radius);
  filter: none;
}

.hybrid-main .course-panel,
.hybrid-main .info-grid article,
.hybrid-main .reservation-panel {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: transparent;
}

.hybrid-main .course-panel h3,
.hybrid-main .info-grid h3 {
  color: rgba(255, 255, 255, 0.94);
}

.hybrid-main .course-panel dl div {
  border-top-color: rgba(255, 255, 255, 0.16);
}

.hybrid-main .primary-button,
.hybrid-main .secondary-button {
  position: relative;
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 8px 13px;
  font-family: "Cormorant Garamond", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  box-shadow: none;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
  transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.hybrid-main .primary-button::after,
.hybrid-main .secondary-button::after {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 5px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: scaleX(0.72);
  transform-origin: center;
  transition: background 180ms ease, transform 180ms ease;
}

.hybrid-main .primary-button:hover,
.hybrid-main .primary-button:focus-visible,
.hybrid-main .primary-button:active,
.hybrid-main .secondary-button:hover,
.hybrid-main .secondary-button:focus-visible,
.hybrid-main .secondary-button:active {
  border-color: transparent;
  background: transparent;
  color: var(--tap-red);
  text-shadow: 0 0 18px rgba(220, 109, 122, 0.22);
  transform: translateY(-1px);
}

.hybrid-main .primary-button:hover::after,
.hybrid-main .primary-button:focus-visible::after,
.hybrid-main .primary-button:active::after,
.hybrid-main .secondary-button:hover::after,
.hybrid-main .secondary-button:focus-visible::after,
.hybrid-main .secondary-button:active::after {
  background: linear-gradient(90deg, transparent, rgba(220, 109, 122, 0.78), transparent);
  transform: scaleX(1);
}

.hybrid-main .reservation-panel .primary-button,
.hybrid-main .access-actions .secondary-button[href^="tel"] {
  color: rgba(255, 255, 255, 0.92);
}

.hybrid-main .light-secondary {
  border-color: transparent;
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 769px) {
  .hybrid-main .hero-actions {
    justify-content: flex-end;
    gap: 18px;
  }

  .hybrid-main .hero-actions .primary-button,
  .hybrid-main .hero-actions .secondary-button {
    min-width: 148px;
    font-size: clamp(19px, 1.65vw, 24px);
  }
}

.hybrid-main .back-to-top {
  position: fixed;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 80;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(176, 176, 176, 0.86);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
  backdrop-filter: blur(14px);
}

.hybrid-main .back-to-top::before {
  position: absolute;
  inset: -5px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.003), rgba(26, 12, 14, 0.02) 48%, rgba(8, 8, 8, 0.06)),
    linear-gradient(145deg, rgba(112, 50, 58, 0.015), rgba(10, 10, 10, 0.035));
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.06);
  filter: blur(5px);
}

.hybrid-main .back-to-top span {
  position: relative;
  z-index: 1;
}

.hybrid-main.has-page-depth .back-to-top {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hybrid-main .back-to-top:hover,
.hybrid-main .back-to-top:focus-visible,
.hybrid-main .back-to-top:active {
  color: rgba(198, 198, 198, 0.92);
}

.hybrid-main .back-to-top:hover::before,
.hybrid-main .back-to-top:focus-visible::before,
.hybrid-main .back-to-top:active::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.005), rgba(44, 18, 22, 0.03) 48%, rgba(10, 10, 10, 0.075)),
    linear-gradient(145deg, rgba(160, 66, 78, 0.02), rgba(12, 12, 12, 0.045));
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
}

.hybrid-main .hybrid-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.66);
}

.hybrid-main .hybrid-footer a:hover,
.hybrid-main .hybrid-footer a:focus-visible {
  color: #fff;
}

.hybrid-main .scroll-reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    filter 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.72, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

.hybrid-main .scroll-reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: translateY(0);
}

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

.hybrid-beverage-page {
  background: #000;
  color: rgba(255, 255, 255, 0.82);
  padding-bottom: 0;
}

.hybrid-beverage-page .beverage-hero {
  width: min(1080px, calc(100% - 32px));
  padding-top: clamp(118px, 12vw, 152px);
  padding-bottom: clamp(36px, 5vw, 58px);
  align-items: center;
}

.hybrid-beverage-page .beverage-hero-copy {
  border-top-color: var(--entry-action-burgundy);
  padding-top: 24px;
}

.hybrid-beverage-page .beverage-hero h1 {
  color: #fff;
  font-family: "Cormorant Garamond", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.18;
}

.hybrid-beverage-page .beverage-hero p {
  max-width: 620px;
}

.hybrid-beverage-page .beverage-hero .lead {
  color: rgba(255, 255, 255, 0.66);
  line-height: 2;
}

.hybrid-beverage-page .beverage-hero-image img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  filter: none;
  opacity: 0.94;
}

.hybrid-beverage-page .beverage-tool {
  width: min(1080px, calc(100% - 32px));
  border-top-color: rgba(255, 255, 255, 0.14);
  padding-top: clamp(22px, 4vw, 34px);
}

.hybrid-beverage-page .beverage-toolbar,
.hybrid-beverage-page .beverage-card {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.hybrid-beverage-page .beverage-toolbar {
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
}

.hybrid-beverage-page .beverage-toolbar-top p,
.hybrid-beverage-page .beverage-active,
.hybrid-beverage-page label,
.hybrid-beverage-page .beverage-producer,
.hybrid-beverage-page .beverage-detail,
.hybrid-beverage-page .beverage-pairing {
  color: rgba(255, 255, 255, 0.58);
}

.hybrid-beverage-page .beverage-count,
.hybrid-beverage-page .beverage-price {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.hybrid-beverage-page input,
.hybrid-beverage-page select {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #050505;
  color: rgba(255, 255, 255, 0.88);
}

.hybrid-beverage-page input:focus,
.hybrid-beverage-page select:focus {
  border-color: rgba(255, 255, 255, 0.38);
  outline: none;
}

.hybrid-beverage-page .beverage-reset,
.hybrid-beverage-page .beverage-chip {
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.hybrid-beverage-page .beverage-reset:hover,
.hybrid-beverage-page .beverage-reset:focus-visible,
.hybrid-beverage-page .beverage-chip:hover,
.hybrid-beverage-page .beverage-chip:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.hybrid-beverage-page .beverage-chip.is-active {
  border-color: var(--entry-action-burgundy);
  background: rgba(178, 75, 88, 0.14);
  color: #fff;
}

.hybrid-beverage-page .beverage-source-link {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hybrid-beverage-page .beverage-card {
  padding: clamp(16px, 2.4vw, 22px);
  transition: border-color 180ms ease, background 180ms ease;
}

.hybrid-beverage-page .beverage-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.052);
}

.hybrid-beverage-page .beverage-name {
  color: #fff;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 500;
}

.hybrid-beverage-page .beverage-meta {
  gap: 7px;
}

.hybrid-beverage-page .beverage-pill {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.58);
  background: transparent;
}

.hybrid-beverage-page .beverage-pill.kind {
  border-color: rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.9);
}

.hybrid-beverage-page .beverage-pill.available,
.hybrid-beverage-page .beverage-pill.low,
.hybrid-beverage-page .beverage-pill.waiting {
  border-color: rgba(255, 255, 255, 0.18);
}

.hybrid-beverage-page .beverage-comment {
  color: rgba(255, 255, 255, 0.82);
}

.hybrid-beverage-page .beverage-empty {
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.58);
}

.gallery-page {
  background: var(--bg);
  min-height: 100svh;
}

.gallery-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 38px;
  color: #fff;
}

.gallery-hero h1 {
  margin-bottom: 16px;
  font-size: 56px;
}

.gallery-hero .lead {
  max-width: 760px;
  color: var(--muted);
}

.gallery-masonry {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 82px;
  columns: 3 260px;
  column-gap: 14px;
}

.gallery-masonry button {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.gallery-masonry img {
  width: 100%;
  border-radius: var(--radius);
}

.gallery-masonry span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  padding: 3px 10px;
  font-size: 12px;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.gallery-lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.84);
}

.lightbox-panel {
  position: relative;
  width: min(960px, calc(100% - 32px));
  margin: 24px auto;
  color: #fff;
}

.lightbox-panel img {
  width: 100%;
  max-height: calc(100svh - 108px);
  border-radius: var(--radius);
  object-fit: contain;
  background: #050505;
}

.lightbox-panel figcaption {
  margin-top: 8px;
  color: var(--muted);
}

.staff-page {
  background: var(--bg);
  color: var(--text);
}

.staff-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
}

.staff-side {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border-right: 1px solid var(--line);
  background: #050505;
  padding: 34px;
}

.staff-side h1 {
  font-size: 42px;
}

.staff-side p {
  color: var(--muted);
}

.staff-workspace {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.staff-login,
.staff-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.staff-login {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
}

.staff-login span {
  color: var(--muted);
}

.staff-card {
  padding: 24px;
}

.staff-card-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.staff-card-heading h2 {
  margin-bottom: 0;
  font-size: 30px;
}

.staff-form {
  display: grid;
  gap: 12px;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-row input {
  width: auto;
}

.event-preview {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #070707;
  padding: 18px;
}

.event-preview span,
.staff-status {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: #fff;
  padding: 2px 10px;
  font-size: 12px;
}

.event-preview h3 {
  margin-top: 12px;
  color: var(--gold);
}

.upload-zone {
  min-height: 180px;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: #070707;
  padding: 24px;
  text-align: center;
}

.upload-zone input {
  width: min(320px, 100%);
}

.upload-zone strong {
  display: block;
  color: #fff;
  font-size: 20px;
}

.upload-zone span {
  color: var(--muted);
}

.upload-steps {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 24px;
  color: var(--muted);
}

.upload-steps li.is-current {
  color: var(--gold);
}

.upload-steps li.is-complete {
  color: var(--green);
}

@keyframes entranceFade {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  8%,
  28% {
    opacity: 1;
  }

  36%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes entranceFadeCropTop {
  0% {
    opacity: 0;
    transform: translateY(-6%) scale(1.1);
  }

  8%,
  28% {
    opacity: 1;
  }

  36%,
  100% {
    opacity: 0;
    transform: translateY(-6%) scale(1.18);
  }
}

@keyframes entranceMobileFade {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }

  8%,
  28% {
    opacity: 1;
  }

  36%,
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes entranceMobileExteriorFade {
  0% {
    opacity: 0;
    transform: translateY(4%) scale(1.16);
  }

  8%,
  28% {
    opacity: 1;
    transform: translateY(4%) scale(1.18);
  }

  36%,
  100% {
    opacity: 0;
    transform: translateY(4%) scale(1.24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .entrance-carousel img,
  .hero-carousel img {
    animation: none;
  }

  .entrance-carousel img:first-child,
  .hero-carousel img:first-child {
    opacity: 1;
  }

  .entrance-carousel img:first-child {
    transform: scale(1.12);
  }

  .entrance-shade {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 640px) {
  .entrance-carousel img:first-child {
    transform: translateY(4%) scale(1.18);
  }
}

@media (max-width: 1180px) {
  .site-nav a {
    min-width: 96px;
    padding: 7px 8px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    background: var(--header-bg-solid);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .nav-toggle span {
    width: 20px;
    margin: 0;
  }

  .site-nav a {
    min-width: 0;
    text-align: left;
  }

  .hybrid-main .site-nav a small::before {
    content: "";
    display: none;
  }

  .split-layout,
  .split-layout-dark,
  .reverse-layout,
  .menu-layout,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .split-layout-dark .image-frame,
  .access-layout .image-frame {
    order: -1;
  }

  .menu-photo img {
    min-height: 360px;
  }

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

  .gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-strip img,
  .gallery-strip figure:nth-child(even) img {
    height: 220px;
    margin-top: 0;
  }

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

  .staff-side {
    position: static;
    height: auto;
  }

  .hybrid-footer {
    display: grid;
    justify-content: stretch;
  }

  .footer-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 640px) {
  .brand-text {
    font-size: 17px;
  }

  .hybrid-entry .site-header {
    width: calc(100% - 36px);
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 10px;
    padding: 17px 0 15px;
  }

  .hybrid-entry .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hybrid-entry .nav-toggle span {
    width: 20px;
  }

  .hybrid-entry .site-nav a small::before {
    content: "";
    display: none;
  }

  .entrance-page {
    padding: 0;
  }

  .entrance-shell {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }

  .entrance-photo-panel {
    height: min(125vw, 520px);
    border: 0;
    border-radius: 0;
  }

  .entrance-carousel img {
    animation-name: entranceMobileFade;
  }

  .hybrid-entry .entrance-carousel img:nth-child(1) {
    animation-name: entranceMobileExteriorFade;
    object-position: center top;
  }

  .entrance-actions {
    width: calc(100% - 32px);
    border-radius: 8px;
  }

  .entrance-action {
    min-height: 56px;
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .entry-link-strip .entrance-actions,
  .entry-enter-focus .entrance-actions {
    width: calc(100% - 40px);
  }

  .entry-link-strip .site-header {
    width: 100%;
    min-height: 80px;
    padding: 12px 20px;
  }

  .entry-link-strip .nav-toggle {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 0;
    gap: 5px;
  }

  .entry-link-strip .nav-toggle span {
    width: 20px;
    height: 2px;
    background: #fff;
  }

  .entry-link-strip .entrance-actions {
    top: 62%;
    width: min(320px, calc(100% - 88px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .entry-link-strip .entrance-action {
    color: rgba(255, 255, 255, 0.86);
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .entry-link-strip .entrance-action + .entrance-action {
    border-left: 0;
  }

  .entry-enter-focus .entrance-actions {
    height: min(250px, 52%);
  }

  .entry-enter-focus .entrance-action:first-child {
    font-size: 24px;
  }

  .entry-under-actions .entrance-actions {
    width: calc(100% - 32px);
    border-radius: 0;
  }

  .entry-under-actions .entrance-action {
    min-height: 54px;
    font-size: 12px;
  }

  .entrance-footer {
    width: calc(100% - 32px);
    padding: 14px 0 18px;
    font-size: 9px;
    line-height: 1.72;
  }

  .lead {
    font-size: 16px;
  }

  .hybrid-hero {
    min-height: 100svh;
    padding: 112px 16px 58px;
  }

  .hybrid-hero h1 {
    font-size: 34px;
  }

  .white-band,
  .black-band {
    padding: 68px 16px;
  }

  .section-heading h2,
  .copy-block h2,
  .dark-copy h2,
  .drink-copy h2,
  .reservation-panel h2 {
    font-size: 28px;
  }

  .course-panel,
  .info-grid article,
  .reservation-panel {
    padding: 20px;
  }

  .course-panel dl div {
    display: grid;
    gap: 2px;
  }

  .course-panel dd {
    white-space: normal;
  }

  .wide-photo img {
    aspect-ratio: 4 / 3;
  }

  .menu-photo img {
    min-height: 260px;
  }

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

  .gallery-strip img,
  .gallery-strip figure:nth-child(even) img {
    height: 240px;
  }

  .staff-workspace,
  .staff-side {
    padding: 18px;
  }

  .staff-card-heading,
  .staff-login {
    display: grid;
  }
}

@media (max-height: 700px) and (max-width: 640px) {
  .entrance-photo-panel {
    height: min(125vw, 480px);
  }

  .entrance-action {
    min-height: 50px;
  }

  .entrance-footer {
    gap: 4px;
    padding-bottom: 14px;
  }
}
