.venue-page {
  --venue-accent: var(--coral);
  --venue-soft: var(--pink);
  background: var(--cream);
}

.venue-page .site-header {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: var(--venue-accent);
}

.venue-page .header-cta {
  background: var(--venue-accent);
  color: var(--cream);
}

.venue-page .header-cta:hover {
  background: var(--sun);
}

.venue-hero {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: var(--venue-accent);
}

.venue-hero-copy {
  min-width: 0;
  container-name: venue-hero-copy;
  container-type: inline-size;
  padding: clamp(70px, 8vw, 130px) max(32px, calc((100vw - 1440px) / 2));
  padding-right: clamp(36px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(30px, 3.5vw, 52px);
}

.venue-hero-copy > * {
  min-width: 0;
  max-width: 100%;
}

.venue-kicker,
.venue-section-kicker,
.mock-label {
  margin: 0;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.venue-hero h1 {
  width: 100%;
  max-width: 820px;
  margin: 20px 0 28px;
  font-family: var(--display);
  font-size: clamp(52px, 5.6vw, 104px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.84;
  overflow-wrap: anywhere;
  text-transform: uppercase;
  text-wrap: balance;
}

@container venue-hero-copy (min-width: 0) {
  .venue-hero h1 {
    font-size: clamp(50px, 14.5cqw, 104px);
  }
}

.venue-hero-lead {
  max-width: 580px;
  margin: 0;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "liga";
}

.venue-hero-highlights {
  display: contents;
}

.venue-hero-facts {
  order: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-top: 1px solid rgba(255, 253, 248, 0.38);
}

.venue-hero-fact {
  min-width: 0;
  border-bottom: 1px solid rgba(255, 253, 248, 0.38);
  padding: 15px 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
}

.venue-hero-fact .material-symbols-rounded {
  flex: 0 0 auto;
  font-size: 27px;
}

.venue-hero-fact div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.venue-hero-fact small,
.venue-google-widget small {
  display: block;
  margin: 0;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.venue-hero-fact strong {
  display: block;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 650;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.venue-google-widget {
  order: 3;
  width: min(480px, 100%);
  min-width: 0;
  margin-top: auto;
  border-top: 1px solid rgba(255, 253, 248, 0.38);
  border-bottom: 1px solid rgba(255, 253, 248, 0.38);
  padding: 14px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  color: inherit;
}

.venue-google-widget--summary {
  grid-template-columns: minmax(0, 1fr);
}

.venue-google-summary {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.venue-google-summary > .material-symbols-rounded {
  flex: 0 0 auto;
  font-size: 23px;
}

.venue-google-summary strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  font-family: var(--display);
  font-size: 14px;
}

.venue-google-stars {
  color: #e39b16;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.venue-google-track {
  position: relative;
  min-width: 0;
  min-height: 66px;
  overflow: hidden;
}

.venue-google-review {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity 350ms ease, transform 350ms ease, visibility 350ms;
}

.venue-google-review.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.venue-google-review blockquote {
  margin: 0;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.35;
  text-wrap: pretty;
}

.venue-google-review footer {
  margin-top: 7px;
  font-family: var(--display);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.venue-hero-actions {
  order: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.venue-hero-actions .button {
  max-width: 100%;
  white-space: normal;
}

.venue-hero-media {
  position: relative;
  min-width: 0;
  min-height: 650px;
  overflow: hidden;
  background: var(--black);
}

.venue-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

.venue-hero-address {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-intro {
  padding: clamp(90px, 11vw, 170px) 0;
}

.venue-intro-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 9vw, 150px);
}

.venue-intro h2,
.venue-gallery h2,
.venue-reviews h2,
.venue-reservation h2,
.venue-info h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-transform: uppercase;
  text-wrap: balance;
}

.venue-intro-copy {
  align-self: end;
}

.venue-intro-copy > p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.35;
}

.venue-facts {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--black);
}

.venue-fact {
  padding: 18px 16px 0 0;
}

.venue-fact + .venue-fact {
  border-left: 1px solid var(--black);
  padding-left: 16px;
}

.venue-fact small {
  display: block;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venue-fact strong {
  font-size: 17px;
}

.venue-gallery {
  padding: clamp(80px, 9vw, 140px) 0;
  background: var(--black);
  color: var(--white);
}

.venue-gallery-shell,
.venue-reviews-shell,
.venue-reservation-shell,
.venue-info-shell {
  width: var(--container);
  margin: 0 auto;
}

.venue-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: 50px;
  align-items: end;
}

.venue-section-heading > * {
  min-width: 0;
}

.venue-section-note {
  max-width: 460px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.68);
  overflow-wrap: anywhere;
}

.mock-label {
  display: inline-flex;
  margin-bottom: 13px;
  border: 1px solid currentColor;
  padding: 7px 10px;
  color: var(--sun);
}

.instagram-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 18vw, 270px);
  gap: 12px;
}

.instagram-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #181818;
}

.instagram-tile:nth-child(1),
.instagram-tile:nth-child(5) {
  grid-column: span 5;
}

.instagram-tile:nth-child(2),
.instagram-tile:nth-child(6) {
  grid-column: span 4;
}

.instagram-tile:nth-child(3),
.instagram-tile:nth-child(4) {
  grid-column: span 3;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.instagram-tile:hover img {
  transform: scale(1.035);
}

.instagram-tile span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.62);
  font-family: var(--display);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-reviews {
  padding: clamp(85px, 10vw, 155px) 0;
  background: var(--venue-soft);
}

.venue-reviews .venue-section-heading {
  align-items: start;
}

.venue-reviews .venue-section-note {
  color: rgba(0, 0, 0, 0.68);
}

.review-summary {
  display: flex;
  gap: 22px;
  align-items: center;
  min-width: 0;
}

.review-summary > * {
  min-width: 0;
}

.review-score {
  font-family: var(--display);
  font-size: clamp(68px, 8vw, 118px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.review-stars {
  color: var(--coral-dark);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.review-stars + p {
  margin: 7px 0 0;
  font-size: 13px;
}

.review-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.review-card {
  min-height: 310px;
  border: 1px solid var(--black);
  padding: clamp(22px, 2.6vw, 38px);
  display: flex;
  flex-direction: column;
}

.review-card .review-stars {
  font-size: 18px;
}

.review-card blockquote {
  margin: 34px 0 40px;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.review-card footer {
  margin-top: auto;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-reservation {
  padding: clamp(85px, 10vw, 150px) 0;
  background: var(--cream);
}

.venue-reservation-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: start;
}

.reservation-copy {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.reservation-copy > p {
  max-width: 470px;
  margin: 28px 0;
  font-size: 18px;
}

.reservation-module {
  min-height: 690px;
  border: 1px solid var(--black);
  padding: 20px;
  background: var(--white);
}

.reservation-module iframe {
  display: block;
  width: 100%;
  min-height: 690px;
  border: 0;
}

.reservation-module--opentable {
  min-height: 560px;
  display: grid;
  place-items: center;
}

.reservation-module--phone {
  min-height: 520px;
  padding: clamp(36px, 6vw, 85px);
  background: var(--venue-accent);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reservation-module--phone strong {
  max-width: 650px;
  font-family: var(--display);
  font-size: clamp(38px, 5.8vw, 82px);
  letter-spacing: -0.055em;
  line-height: 0.92;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.reservation-module--phone p {
  max-width: 630px;
  font-size: 18px;
}

.reservation-fallback {
  margin: 18px 0 0;
  font-size: 13px;
}

.reservation-fallback a {
  font-weight: 700;
  text-underline-offset: 4px;
}

.venue-info {
  padding: clamp(85px, 10vw, 150px) 0;
  background: var(--venue-accent);
}

.venue-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 9vw, 150px);
}

.venue-info-list {
  margin: 0;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
}

.venue-info-list dt,
.venue-info-list dd {
  border-top: 1px solid var(--black);
  padding: 22px 0;
}

.venue-info-list dt:last-of-type,
.venue-info-list dd:last-of-type {
  border-bottom: 1px solid var(--black);
}

.venue-info-list dt {
  padding-right: 30px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.venue-info-list dd {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  overflow-wrap: anywhere;
}

.venue-info-list a {
  text-underline-offset: 5px;
}

.venue-page .footer-links {
  align-content: end;
}

@media (max-width: 980px) {
  .venue-hero,
  .venue-intro-grid,
  .venue-info-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .venue-hero-copy {
    min-height: 600px;
    padding-right: max(32px, calc((100vw - 1440px) / 2));
  }

  .venue-hero-media {
    min-height: 70svh;
  }

  .venue-section-heading,
  .venue-reservation-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reservation-copy {
    position: static;
  }

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

  .review-card {
    min-height: 250px;
  }
}

@media (max-width: 780px) {
  .venue-page .header-cta {
    display: inline-flex;
    min-height: 40px;
    padding: 9px 12px 7px;
    font-size: 9px;
  }

  .venue-hero-copy {
    min-height: 0;
    padding: 64px 22px;
  }

  .venue-hero h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  .venue-hero-media {
    min-height: 60svh;
  }

  .venue-hero-address {
    flex-direction: column;
    gap: 8px;
  }

  .venue-hero-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .venue-hero-fact {
    min-height: 0;
  }

  .venue-google-widget {
    grid-template-columns: minmax(125px, 0.4fr) minmax(0, 1fr);
  }

  .venue-intro-grid,
  .venue-info-grid {
    gap: 42px;
  }

  .venue-intro h2,
  .venue-gallery h2,
  .venue-reviews h2,
  .venue-reservation h2,
  .venue-info h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .venue-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .venue-fact,
  .venue-fact + .venue-fact {
    border-left: 0;
    border-bottom: 1px solid var(--black);
    padding: 16px 0;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 210px;
  }

  .instagram-tile:nth-child(n) {
    grid-column: span 1;
  }

  .instagram-tile:first-child {
    grid-column: span 2;
  }

  .venue-section-heading {
    gap: 28px;
  }

  .review-summary {
    align-items: flex-start;
    gap: 16px;
  }

  .reservation-module {
    min-height: 660px;
    padding: 8px;
  }

  .reservation-module iframe {
    min-height: 650px;
  }

  .venue-info-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .venue-info-list dt {
    border-bottom: 0;
    padding: 18px 0 4px;
  }

  .venue-info-list dd {
    border-top: 0;
    padding: 0 0 18px;
  }
}

@media (max-width: 480px) {
  .venue-page .header-actions {
    gap: 5px;
  }

  .venue-page .brand {
    width: 48px;
    height: 48px;
  }

  .venue-page .menu-button {
    width: 38px;
  }

  .venue-hero-fact div,
  .venue-google-widget {
    grid-template-columns: minmax(0, 1fr);
  }

  .venue-hero-fact div {
    gap: 4px;
  }

  .venue-google-widget {
    gap: 12px;
  }

  .instagram-grid {
    grid-auto-rows: 175px;
  }

  .review-score {
    font-size: 58px;
  }

  .review-stars {
    font-size: 18px;
    letter-spacing: 0.04em;
  }

  .reservation-module--phone {
    min-height: 470px;
    padding: 28px 22px;
  }
}
