:root {
  --pink: #f43aa8;
  --pink-dark: #df218f;
  --blue: #10b8cd;
  --blue-dark: #0799ad;
  --yellow: #ffbf32;
  --ink: #151922;
  --muted: #53606f;
  --line: #e8edf2;
  --soft: #f8fbfd;
  --shadow: 0 20px 50px rgba(23, 38, 50, 0.10);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  margin-top: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }

.site-header {
  height: 96px;
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0;
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  z-index: 50;
}
.site-header::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 96px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  z-index: -1;
}
.brand { flex: 0 0 auto; padding-left: 0; }
.brand img { width: 185px; height: auto; }
.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover { color: var(--pink); }
.header-actions { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.lang { display: flex; gap: 9px; align-items: center; flex-shrink: 0; font-weight: 900; font-size: 14px; white-space: nowrap; }
.lang a,
.lang span { display: inline-flex; align-items: center; white-space: nowrap; }
.lang a:first-child { color: var(--blue); }
.lang span { color: #8b95a1; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  min-height: 50px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: #fff;
}
.btn-primary:hover { background: var(--pink-dark); }
.btn-secondary { background: rgba(255,255,255,.85); border-color: #b9c3cf; color: #03070b; }
.btn-outline { background: #fff; border: 2px solid #b9c3cf; color: #111; }
.pink-outline { border-color: rgba(244,58,168,.72); color: var(--pink); }
.blue-outline { border-color: rgba(16,184,205,.72); color: var(--blue-dark); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 10px; margin-left: auto; }
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 20px; }

.hero {
  --hero-art-width: clamp(520px, 56vw, 720px);
  --hero-art-right: 0px;
  --hero-art-top: 41%;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto 0;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  background: #fff;
}
.hero-bg {
  position: absolute;
  z-index: -3;
  width: var(--hero-art-width);
  height: auto;
  right: var(--hero-art-right);
  top: var(--hero-art-top);
  transform: translateY(-50%);
}
/* Extra wash that makes the left copy blend into the hero image like the mockup. */
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 65% 49%, rgba(255,255,255,.70) 0%, rgba(255,255,255,.38) 18%, rgba(255,255,255,0) 42%),
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.98) 25%, rgba(255,255,255,.74) 42%, rgba(255,255,255,.18) 66%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.hero-logo-overlay {
  position: absolute;
  z-index: -1;
  width: var(--hero-art-width);
  right: var(--hero-art-right);
  top: var(--hero-art-top);
  transform: translateY(-50%);
  filter: drop-shadow(0 0 24px rgba(255,255,255,.78));
}
.hero-content {
  position: relative;
  z-index: 3;
  width: min(450px, calc(100% - 48px));
  margin-left: 0;
  padding-top: 28px;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: 14px;
  font-family: "Nunito", Inter, system-ui, sans-serif;
}
h1 {
  margin: 0;
  line-height: .97;
  font-family: "Nunito", Inter, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -.045em;
  font-size: clamp(42px, 4.5vw, 60px);
}
h1 span { display: block; }
h1 .meeting-point-graphic {
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin-top: 10px;
}
html[lang="ja"] .ja-hero-heading {
  font-size: clamp(34px, 3.1vw, 46px);
  line-height: 1.18;
  letter-spacing: -.04em;
}
html[lang="ja"] .ja-hero-heading .ja-hero-line {
  white-space: nowrap;
}
html[lang="ja"] .ja-hero-heading .meeting-point-graphic {
  max-width: 430px;
}
html[lang="ja"] h1 {
  line-height: 1.16;
}
html[lang="ja"] .section-heading h2,
html[lang="ja"] .about-bookings h2,
html[lang="ja"] .about-private-cta h2 {
  line-height: 1.2;
}
h1 .script {
  width: max-content;
  color: var(--pink);
  font-family: Pacifico, cursive;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .95;
  font-size: clamp(48px, 5.0vw, 68px);
  border-bottom: 7px solid var(--blue);
  padding-right: 12px;
  margin-top: 8px;
}

.hero-copy {
  margin: 26px 0 28px;
  max-width: 410px;
  font-size: 18px;
  line-height: 1.4;
  font-family: "Nunito", Inter, system-ui, sans-serif;
  font-weight: 800;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }



.intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
  padding: 12px 0 34px;
}
.intro-card p { color: var(--muted); line-height: 1.65; max-width: 520px; }
.section-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.section-heading h2 { margin: 0; font-size: clamp(24px, 2.3vw, 32px); line-height: 1; }
.section-heading .icon, .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  background: #fff;
  border: 3px solid currentColor;
  flex: 0 0 auto;
}
.section-heading .icon svg, .info-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.section-heading .icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.section-heading .icon-food img {
  width: 58px;
  height: 58px;
  max-width: none;
}
.section-heading.pink { color: var(--pink); }
.section-heading.blue { color: var(--blue); }

.info-icon {
  color: var(--pink);
}
.info-icon.blue-bg {
  color: var(--blue);
}
.info-icon.yellow-bg {
  color: var(--yellow);
}
.pink-bg, .blue-bg, .yellow-bg {
  background: #fff;
}
.intro-card > img, .event-preview, .gallery-grid img {
  border-radius: 14px;
  overflow: hidden;
}
.intro-card > img { margin-top: 26px; width: 100%; height: 220px; object-fit: cover; }
.food-section-image { object-position: top center; }
.event-preview {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  background: #fff;
  border: 1px solid var(--line);
}
.event-preview img { width: 100%; height: 220px; object-fit: cover; }
.event-preview div { padding: 28px; }
.event-preview small { display: block; color: var(--pink); text-transform: uppercase; font-weight: 900; margin-bottom: 10px; }
.event-preview h3 { margin: 0 0 8px; font-size: 22px; }
.event-preview p { margin: 0 0 16px; color: var(--blue-dark); font-weight: 800; }
.event-preview a { color: var(--pink); font-weight: 900; }

.gallery { padding: 30px 0 54px; }
.gallery-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; margin-bottom: 22px; }
.gallery-head p { color: var(--muted); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.gallery-grid img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; }

.info-strip {
  margin-top: 18px;
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  margin-top: 0;
}
.info-strip article { padding: 32px; border-right: 1px solid var(--line); }
.info-strip article:last-child { border-right: 0; }
.info-strip h3 { color: var(--pink); margin: 14px 0 10px; font-size: 22px; }
.info-strip p { color: var(--muted); line-height: 1.55; margin: 0 0 12px; }
.info-strip a { color: var(--blue-dark); font-weight: 900; }


.map-section {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: .85fr 1.35fr;
  gap: 32px;
  align-items: center;
  margin: 28px auto 64px;
}
.map-copy p {
  color: var(--muted);
  line-height: 1.65;
  max-width: 420px;
}
.map-frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.map-frame iframe {
  display: block;
  width: 100%;
}

.site-footer { border-top: 1px solid var(--line); padding: 36px 0 18px; background: #fff; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 38px; }
.footer-brand img { width: 180px; margin-bottom: 10px; }
.footer-brand p, .site-footer p, .site-footer li { color: var(--muted); line-height: 1.6; }
.site-footer h4 { margin: 0 0 12px; font-size: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; columns: 2; }
.site-footer a { font-weight: 700; }
.socials { display: flex; flex-direction: column; gap: 10px; }
.socials a { color: var(--pink); }

.social-icons {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  transition: transform .2s ease;
}
.social-icon:hover {
  transform: translateY(-2px);
}
.social-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}
.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 62%, #285aeb 90%);
}
.social-icon.facebook {
  background: #1877f2;
}
.social-icon.google-maps {
  background: #34a853;
}
.newsletter { display: flex; gap: 8px; }
.newsletter input { min-width: 0; flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 0 14px; height: 44px; font: inherit; }
.newsletter button { border: 0; border-radius: 10px; padding: 0 16px; background: var(--pink); color: #fff; font-weight: 900; }
.copyright { text-align: center; font-size: 13px; margin-top: 28px !important; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 170px 1fr auto; width: min(var(--container), calc(100% - 48px)); padding: 0; gap: 18px; }
  .brand { padding-left: 0; }
  .brand img { width: 165px; }
  .site-nav { gap: 14px; font-size: 13px; }
  .hero { --hero-art-width: 62vw; --hero-art-right: 0px; }
}
@media (max-width: 960px) {
  .map-section { scroll-margin-top: 104px; }
  .site-header { height: 82px; width: 100%; display: flex; padding: 0 16px; }
  .brand { padding-left: 16px; }
  .brand img { width: 132px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 82px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 24px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 34px rgba(18,28,39,.08);
  }
  .site-nav a { width: 100%; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: flex; }
  /* Show the language switcher on mobile, just left of the hamburger */
  .header-actions { margin-left: auto; order: 2; }
  .menu-toggle { order: 3; margin-left: 14px; }
  .lang { display: flex; }

  .hero {
    --hero-art-width: min(110vw, 760px);
    --hero-art-right: 50%;
    --hero-art-top: 50%;
    min-height: 390px;
    align-items: center;
    padding-top: 0;
    margin-top: 0;
  }
  .hero-bg,
  .hero-logo-overlay { right: var(--hero-art-right); transform: translate(50%, -50%); }
  .hero-wash {
    background:
      radial-gradient(circle at 52% 50%, rgba(255,255,255,.42) 0%, rgba(255,255,255,.22) 28%, rgba(255,255,255,0) 58%),
      linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.54) 30%, rgba(255,255,255,.10) 70%, rgba(255,255,255,0) 100%);
  }
  .hero-content { display: none; }
  .intro, .gallery-head, .footer-inner, .map-section { grid-template-columns: 1fr; gap: 34px; }
  .gallery-head { align-items: start; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .info-strip { grid-template-columns: 1fr 1fr; }
  .info-strip article:nth-child(2) { border-right: 0; }
  .info-strip article:nth-child(1), .info-strip article:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 640px) {
  .brand { padding-left: 6px; }
  .brand img { width: 116px; }
  .container { width: min(100% - 32px, var(--container)); }
  .hero { min-height: 330px; }
  .hero-content { display: none; }
  h1 { font-size: 48px; letter-spacing: -.045em; }
  h1 .script { font-size: 58px; border-bottom-width: 5px; }
  .hero-copy { font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: stretch; max-width: 280px; }
  .hero { --hero-art-width: 125vw; --hero-art-top: 50%; }
  

.intro { padding-top: 28px; gap: 42px; }
  .event-preview { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .info-strip article { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .info-strip article:last-child { border-bottom: 0; }
  .newsletter { flex-direction: column; }
  .newsletter button { height: 44px; }
}


@media (max-width: 640px) {
  .gallery-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .gallery-grid img {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
  }

  .gallery-grid::-webkit-scrollbar {
    height: 6px;
  }

  .gallery-grid::-webkit-scrollbar-thumb {
    background: rgba(244, 58, 168, 0.35);
    border-radius: 999px;
  }
}

.info-strip .info-icon {
  width: 52px;
  height: 52px;
}
.info-strip .info-icon svg {
  width: 30px;
  height: 30px;
}

#about-section,
#contact-section {
  scroll-margin-top: 120px;
}

@media (max-width: 960px) {
  #about-section,
  #contact-section {
    scroll-margin-top: 104px;
  }
}

.hours-status {
  margin: 4px 0 8px;
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.45;
}

.hours-status .dot {
  font-size: 0.85em;
  margin-right: 6px;
  vertical-align: 1px;
}

.hours-status.open .dot {
  color: #22c55e;
}

.hours-status.closed .dot {
  color: var(--pink);
}

.hours-status .detail {
  color: var(--muted);
  font-weight: 700;
  margin-left: 4px;
}

.hours-general {
  margin-top: 0;
}

.hours-status .dot {
  font-size: 1.05em;
  vertical-align: 0;
}








.bar-status {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
}

.bar-status .dot {
  font-size: 1.05em;
  margin-right: 5px;
  vertical-align: 0;
}

.bar-status.open .dot,
.bar-status.open .value {
  color: #22c55e;
}

.bar-status.closed .dot,
.bar-status.closed .value {
  color: var(--pink);
}






.hours-general {
  font-size: 14px;
  line-height: 1.55;
  white-space: nowrap;
}

.hours-status {
  font-size: 13px;
  white-space: nowrap;
}

.info-strip article:nth-child(2) {
  min-width: 0;
}

@media (max-width: 1180px) {
  .hours-general {
    font-size: 13px;
  }
  .hours-status {
    font-size: 12.5px;
  }
}



@media (max-width: 640px) {
  .hours-general {
    white-space: normal;
  }
}



.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: nowrap;
  max-width: none;
  margin-top: 0;
}

.hero-buttons .hero-instagram-btn {
  flex-shrink: 0;
}

.hero-buttons .hero-location-btn {
  min-width: 170px;
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: none;
}

.hero-buttons .hero-location-btn:hover {
  background: var(--blue-dark);
  box-shadow: none;
}

.bar-status {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
}

.bar-status .dot {
  font-size: 1.05em;
  margin-right: 5px;
  vertical-align: 0;
}

.bar-status.open .dot,
.bar-status.open .value {
  color: #22c55e;
}

.bar-status.closed .dot,
.bar-status.closed .value {
  color: var(--pink);
}

@media (max-width: 960px) {
  .hero-buttons {
    display: none;
  }
}

.mobile-map-cta {
  display: none;
}

@media (max-width: 960px) {
  .mobile-map-cta {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 14px 16px 6px;
    background: #fff;
  }

  .mobile-map-cta .mobile-instagram-btn {
    flex-shrink: 0;
    transform: translateX(-15px);
  }

  .mobile-map-cta .btn {
    display: inline-flex;
    min-width: 170px;
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: none;
  }

  .mobile-map-cta .btn:hover {
    background: var(--blue-dark);
    box-shadow: none;
  }
}

@media (max-width: 960px) {
  .mobile-map-cta {
    gap: 12px;
    flex-wrap: wrap;
  }

  .mobile-bar-status {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .mobile-map-cta {
    flex-direction: column;
    gap: 8px;
  }
}

.bar-status.closed .dot {
  color: var(--blue);
}

.bar-status.closed .value {
  color: var(--blue-dark);
}

.hours-status.closed .dot {
  color: var(--blue);
}

.hours-status.closed .label {
  color: var(--ink);
}

.site-nav a[aria-current="page"] {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--pink);
  color: #fff;
}

.site-nav a[aria-current="page"]:hover {
  background: var(--pink-dark);
  color: #fff;
}

@media (max-width: 960px) {
  .site-nav a {
    justify-content: flex-start;
  }

  .site-nav a[aria-current="page"] {
    width: auto;
    margin: 8px 0;
    border-bottom: 0;
  }
}

.booking-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 42px;
}

.booking-hero h1 {
  max-width: 620px;
}

.booking-lede {
  margin: 26px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.booking-hero-image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-hero-image img {
  width: 100%;
  height: clamp(340px, 38vw, 500px);
  object-fit: cover;
}

.booking-types {
  padding: 22px 0 42px;
}

.booking-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.booking-type-grid article {
  min-height: 178px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.booking-type-grid h3 {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 20px;
  line-height: 1.15;
}

.booking-type-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.booking-exclusive {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  margin: 6px auto 50px;
  padding: 28px 32px;
  border: 1px solid rgba(16,184,205,.26);
  border-left: 8px solid var(--blue);
  border-radius: 18px;
  background: #f7fdff;
}

.booking-exclusive p {
  margin: 0;
  max-width: 800px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 700;
}

.booking-exclusive h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
}

.booking-gallery {
  padding: 0 0 54px;
}

.booking-gallery-head {
  margin-bottom: 22px;
}

.booking-photo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.booking-lightbox-trigger {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.booking-photo-row img,
.booking-lightbox-trigger img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.booking-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.booking-lightbox[hidden] {
  display: none;
}

.booking-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(10, 14, 20, .82);
  cursor: zoom-out;
}

.booking-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 980px);
  max-height: 86vh;
}

.booking-lightbox-dialog img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
}

.booking-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 58, 168, .96);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}

.booking-contact {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  gap: 32px;
  align-items: center;
  margin-bottom: 66px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}

.booking-contact p {
  max-width: 650px;
  color: var(--muted);
  line-height: 1.65;
  margin: 14px 0 0;
}

.booking-contact-card {
  display: grid;
  gap: 12px;
}

.booking-contact-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid rgba(244,58,168,.5);
  color: var(--pink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

@media (max-width: 960px) {
  .booking-hero,
  .booking-exclusive,
  .booking-contact {
    grid-template-columns: 1fr;
  }

  .booking-hero {
    padding-top: 36px;
  }

  .booking-hero-image img {
    height: 380px;
  }

  .booking-type-grid,
  .booking-photo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-exclusive {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .booking-hero {
    gap: 28px;
    padding: 30px 0 34px;
  }

  .booking-lede {
    font-size: 16px;
  }

  .booking-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .booking-hero-image img {
    height: 300px;
  }

  .booking-type-grid {
    grid-template-columns: 1fr;
  }

  .booking-photo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
  }

  .booking-exclusive {
    padding: 24px;
  }

  .booking-contact {
    scroll-margin-top: 104px;
  }

  .booking-lightbox {
    padding: 16px;
  }

  .booking-lightbox-dialog {
    width: min(90vw, 560px);
    max-height: 82vh;
  }

  .booking-lightbox-dialog img {
    max-height: 82vh;
  }

  .booking-lightbox-close {
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    font-size: 28px;
  }
}

.drinks-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 24px;
}

.drinks-hero h1 {
  max-width: 690px;
  font-size: clamp(38px, 3.9vw, 54px);
}

.drinks-lede {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.drinks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.drinks-hero-image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.drinks-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.drink-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 4px 0 48px;
}

.drink-feature-strip a {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease;
}

.drink-feature-strip a:hover {
  transform: translateY(-2px);
  border-color: rgba(244,58,168,.42);
}

.drink-feature-strip span {
  display: block;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.drink-feature-strip strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.menu-showcase {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .72fr);
  gap: 44px;
  align-items: start;
  padding: 0 0 62px;
}

.menu-showcase.reverse {
  grid-template-columns: minmax(360px, .72fr) minmax(0, .78fr);
}

.menu-showcase.reverse .menu-showcase-copy {
  order: 2;
}

.recommended-cocktails {
  scroll-margin-top: 120px;
  padding: 0 0 62px;
}

.recommended-cocktails-head {
  margin-bottom: 28px;
}

.recommended-cocktails-head > p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 700;
}

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

.recommended-cocktail-card {
  display: grid;
  grid-template-columns: clamp(98px, 10vw, 126px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 26px rgba(23,38,50,.06);
}

.recommended-cocktail-card img {
  width: 100%;
  height: auto;
  border: 5px solid #fff;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(23, 38, 50, .18);
}

.recommended-cocktail-card .booking-lightbox-trigger {
  width: 100%;
}

.recommended-cocktail-card > div {
  min-width: 0;
}

.recommended-cocktail-card header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.recommended-cocktail-card h3 {
  margin: 0;
  color: var(--pink);
  font-size: 21px;
}

.recommended-cocktail-card strong {
  color: var(--blue-dark);
  font-size: 20px;
}

.recommended-cocktail-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
}

.menu-showcase-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-weight: 700;
  max-width: 650px;
}

.drink-bullets {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.drink-bullets li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.drink-bullets strong {
  color: var(--pink);
  font-size: 19px;
}

.drink-bullets span {
  grid-column: 1;
  color: var(--muted);
  line-height: 1.45;
}

.drink-bullets b {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--blue-dark);
  font-size: 22px;
}

.menu-art {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.menu-art img {
  width: 100%;
  height: auto;
}

.portrait-menu img {
  max-height: 760px;
  object-fit: contain;
  object-position: top center;
}

.menu-board {
  scroll-margin-top: 120px;
  padding-bottom: 64px;
}

.menu-board-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.menu-board-head p {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 700;
}

.wide-menu-card {
  scroll-margin-top: 120px;
  margin-bottom: 34px;
}

.wide-menu-copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.wide-menu-copy h3 {
  margin: 0;
  color: var(--pink);
  font-size: clamp(24px, 2.2vw, 34px);
}

.wide-menu-copy p {
  margin: 0 0 4px;
  max-width: 600px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.wide-menu {
  box-shadow: none;
}

.drinks-contact {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 66px;
  padding: 30px 32px;
  border-radius: 18px;
  border: 1px solid rgba(16,184,205,.26);
  border-left: 8px solid var(--blue);
  background: #f7fdff;
}

.drinks-contact h2 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
}

.drinks-contact p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.drinks-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 960px) {
  .drinks-hero,
  .menu-showcase,
  .menu-showcase.reverse,
  .drinks-contact {
    grid-template-columns: 1fr;
  }

  .menu-showcase.reverse .menu-showcase-copy {
    order: 0;
  }

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

  .menu-board-head,
  .wide-menu-copy {
    display: block;
  }

  .menu-board-head p,
  .wide-menu-copy p {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .drinks-hero {
    padding: 30px 0 24px;
    gap: 28px;
  }

  .drinks-lede {
    font-size: 16px;
  }

  .drinks-actions,
  .drinks-contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .drink-feature-strip {
    display: none;
  }

  .recommended-cocktail-grid {
    grid-template-columns: 1fr;
  }

  .recommended-cocktail-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .recommended-cocktail-card h3 {
    font-size: 19px;
  }

  .recommended-cocktail-card strong {
    font-size: 18px;
  }

  .menu-showcase,
  .recommended-cocktails,
  .menu-board {
    scroll-margin-top: 104px;
  }

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

  .drink-bullets b {
    grid-row: auto;
    grid-column: auto;
  }

  .drinks-contact {
    padding: 24px;
  }
}

.food-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 34px;
}

.food-hero h1 {
  max-width: 690px;
  font-size: clamp(38px, 3.9vw, 54px);
}

.food-lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.food-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.food-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.food-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 0;
  border-radius: 0;
}

.food-catalog {
  scroll-margin-top: 120px;
  padding: 24px 0 66px;
}

.food-catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.food-catalog-head p {
  max-width: 450px;
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.6;
}

.food-category-block {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.food-category-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
}

.food-category-head h3 {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Nunito", Inter, system-ui, sans-serif;
  font-size: clamp(27px, 2.8vw, 36px);
  line-height: 1;
}
html[lang="ja"] .food-category-head h3 {
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
}

.food-category-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

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

.food-card-grid.one {
  grid-template-columns: minmax(0, 590px);
}

.food-card-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.food-dish-card {
  display: grid;
  grid-template-columns: clamp(104px, 11vw, 136px) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(23,38,50,.06);
}

.food-dish-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(23, 38, 50, .18);
}

.food-dish-card .booking-lightbox-trigger {
  width: 100%;
}

.food-dish-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: start;
  min-width: 0;
}

.food-dish-copy h4 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.food-dish-copy strong {
  color: var(--pink);
  font-size: 21px;
}

.food-dish-copy p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

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

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

  .food-catalog-head {
    display: block;
  }

  .food-catalog-head p {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .food-hero {
    padding: 30px 0 26px;
    gap: 28px;
  }

  .food-lede {
    font-size: 16px;
  }

  .food-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .food-catalog {
    padding-top: 6px;
    scroll-margin-top: 104px;
  }

  .food-category-head {
    display: block;
  }

  .food-category-head p {
    margin-top: 8px;
  }

  .food-card-grid,
  .food-card-grid.one,
  .food-card-grid.two {
    grid-template-columns: 1fr;
  }

  .food-dish-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .food-dish-copy h4 {
    font-size: 17px;
  }

  .food-dish-copy strong {
    font-size: 19px;
  }
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 34px;
}

.about-hero h1 {
  max-width: 690px;
}
html[lang="ja"] .ja-about-heading {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.about-hero-copy p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.about-hero-image {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.about-welcome {
  padding: 54px 0 26px;
}

.about-welcome p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 800;
}

.about-experience {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 58px;
}

.about-experience article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.about-experience h3 {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 21px;
}

.about-experience p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-bookings {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(340px, .78fr);
  gap: 44px;
  align-items: start;
  padding: 44px 0 54px;
  border-top: 1px solid var(--line);
}

.about-bookings h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.02;
  font-family: "Nunito", Inter, system-ui, sans-serif;
  font-weight: 900;
}

.about-bookings-copy > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.about-host-list {
  padding: 28px;
  border: 1px solid rgba(16,184,205,.26);
  border-radius: 18px;
  background: #f7fdff;
}

.about-host-list h3 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 24px;
}

.about-host-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.about-host-list li {
  color: var(--muted);
  line-height: 1.55;
}

.about-host-list strong {
  color: var(--pink);
}

.about-private-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  margin-bottom: 66px;
  padding: 28px 32px;
  border: 1px solid rgba(16,184,205,.26);
  border-left: 8px solid var(--blue);
  border-radius: 18px;
  background: #f7fdff;
}

.about-private-cta p {
  margin: 0;
  max-width: 800px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 700;
}

.about-private-cta h2 {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
}

@media (max-width: 960px) {
  .about-experience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-bookings,
  .about-private-cta {
    grid-template-columns: 1fr;
  }

  .about-private-cta {
    align-items: start;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 30px 0 26px;
    gap: 28px;
  }

  .about-hero-copy p:last-child,
  .about-bookings-copy > p:last-child {
    font-size: 16px;
  }

  .about-welcome {
    padding-top: 36px;
  }

  .about-welcome p {
    font-size: 18px;
  }

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

  .about-host-list,
  .about-private-cta {
    padding: 24px;
  }
}

.gallery-page-hero {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 44px;
}

.gallery-page-hero h1 {
  max-width: 680px;
}

.gallery-page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.gallery-page-hero p:not(.eyebrow) + p {
  margin-top: 10px;
}

.gallery-hero-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
  background: #fff;
}

.gallery-hero-photo img {
  width: 100%;
  height: clamp(340px, 38vw, 500px);
  object-fit: contain;
  border-radius: 18px;
  border: 0;
}

.gallery-page-grid {
  columns: 4;
  column-gap: 16px;
  padding-bottom: 66px;
}

.gallery-page-grid .booking-lightbox-trigger {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 14px;
  break-inside: avoid;
}

.gallery-page-grid .booking-lightbox-trigger img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform .24s ease;
}

.gallery-page-grid .booking-lightbox-trigger:hover img {
  transform: scale(1.035);
}

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

  .gallery-hero-photo {
    display: none;
  }

  .gallery-page-grid {
    columns: 2;
  }
}

@media (max-width: 640px) {
  .gallery-page-hero {
    gap: 28px;
    padding: 30px 0 34px;
  }

  .gallery-page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .gallery-page-grid {
    column-gap: 12px;
  }

  .gallery-page-grid .booking-lightbox-trigger {
    margin-bottom: 12px;
  }
}

.events-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: 44px;
  align-items: center;
  padding: 54px 0 42px;
}

.events-hero h1 {
  max-width: 700px;
}

.events-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
}

.events-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.events-program {
  padding: 0 0 66px;
}

.events-program-head {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(340px, .88fr);
  gap: 8px 42px;
  align-items: end;
  margin-bottom: 30px;
}

.events-program-head .eyebrow {
  grid-column: 1 / -1;
}

.events-program-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.08;
}

.events-program-head p:last-child {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.events-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.events-program-grid article {
  aspect-ratio: 1 / 1;
  min-height: 388px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 19, 38, .05);
}

.event-program-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.event-program-icon.pink {
  color: var(--pink);
}

.event-program-icon.blue {
  color: var(--blue);
}

.event-program-icon svg {
  width: 31px;
  height: 31px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.events-program-grid h3 {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 21px;
  line-height: 1.2;
}

.events-program-grid article:nth-child(odd) h3 {
  color: var(--pink);
}

.events-program-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.58;
}

.events-featured-head {
  display: block;
  padding-bottom: 22px;
}

.events-featured-head h2 {
  margin: 8px 0 0;
  font-size: clamp(27px, 2.8vw, 38px);
  line-height: 1.12;
}

.events-follow p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 700;
}

.events-follow-links {
  margin-top: 14px;
}

.events-follow-section {
  display: grid;
  grid-template-columns: minmax(270px, .62fr) minmax(360px, .88fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 54px;
  padding: 30px 32px;
  border: 1px solid rgba(16,184,205,.26);
  border-left: 8px solid var(--blue);
  border-radius: 18px;
  background: #f7fdff;
}

.events-follow-section h2 {
  margin: 0;
  font-size: clamp(27px, 2.8vw, 38px);
  line-height: 1.12;
}

.events-heading {
  margin: 0 0 22px;
  text-align: center;
  color: var(--pink);
  font-family: "Nunito", Inter, system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  padding-bottom: 38px;
}

@media (min-width: 1041px) {
  .event-card-copy {
    min-height: 0;
    padding: 16px 14px 16px;
  }

  .event-flyer {
    margin-top: 12px;
  }

  .event-card h2 {
    font-size: 19px;
  }

  .event-date {
    font-size: 11px;
    margin: 0 0 8px;
  }

  .event-time {
    font-size: 14px;
    margin: 8px 0 12px;
  }

  .event-card-copy p:last-child {
    font-size: 13px;
    line-height: 1.5;
  }

  .event-flyer img {
    height: 340px;
  }
}

.event-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 19, 38, .05);
}

.event-flyer {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.event-flyer img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  transition: transform .22s ease;
}

.event-flyer:hover img {
  transform: scale(1.02);
}

.event-card-copy {
  min-height: 0;
  padding: 24px 23px 22px;
}

.event-date {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.event-card h2 {
  margin: 0;
  color: var(--pink);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.05;
  font-family: "Nunito", Inter, system-ui, sans-serif;
  font-weight: 900;
}

.event-time {
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.event-card-copy p:last-child {
  margin: 0;
  max-width: 700px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 700;
}

@media (max-width: 1040px) {
  .drinks-hero,
  .food-hero,
  .about-hero,
  .events-hero {
    grid-template-columns: 1fr;
  }

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

  .events-program-grid article {
    min-height: 355px;
  }

  .events-follow-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

@media (max-width: 640px) {
  .events-hero {
    gap: 28px;
    padding: 30px 0 34px;
  }

  .events-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .events-hero img {
    display: block;
  }

  .events-program {
    padding-bottom: 48px;
  }

  .events-program-head,
  .events-program-grid {
    display: block;
  }

  .events-program-head h2 {
    margin-bottom: 12px;
  }

  .events-program-grid article + article {
    margin-top: 12px;
  }

  .events-program-grid article {
    aspect-ratio: auto;
    min-height: 0;
    padding: 24px;
  }

  .events-featured-head {
    padding-bottom: 18px;
  }

  .events-follow-section {
    margin-bottom: 38px;
    padding: 24px;
  }

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

  .event-flyer img {
    height: min(70vh, 500px);
  }

  .event-card-copy {
    padding: 24px;
    min-height: 0;
  }
}
