/* La Monina - capa final de proporcion, galeria y responsive */

:root {
  --container: min(1180px, calc(100% - 48px));
}

.section {
  padding: 72px 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

h1 {
  font-size: 5rem;
  line-height: 0.96;
  max-width: 12ch;
}

h2 {
  font-size: 3.15rem;
  line-height: 1;
}

h3 {
  font-size: 1.42rem;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.72;
}

.nav {
  left: 0;
  right: 0;
  width: 100%;
  height: var(--nav-height);
}

.nav-inner {
  width: min(1240px, calc(100% - 36px));
}

.nav-links a {
  padding: 9px 10px;
}

.hero-content {
  padding: 108px 0 104px;
}

.hero h1 {
  max-width: 820px;
}

body[data-page="home"] .hero h1 {
  font-size: 5rem;
}

body[data-page="nosotros"] .hero h1,
body[data-page="reservaciones"] .hero h1,
body[data-page="menu"] .hero h1,
body[data-page="promociones"] .hero h1 {
  font-size: 4.35rem;
  max-width: 820px;
}

.hero.medium,
.hero.compact {
  min-height: 560px;
}

.intro-section {
  padding-top: 82px;
  padding-bottom: 62px;
}

.story-grid,
.promo-preview-grid,
.sea-grid,
.reservation-grid,
.split {
  gap: 48px;
}

.card,
.form-card,
.campaign-feature,
.campaign-card,
.official-menu-frame {
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7, 31, 27, 0.1);
}

.card-body {
  padding: 26px;
}

.media-card {
  min-height: 260px;
}

.split .media-card {
  min-height: 390px;
}

.story-photo-large,
.sea-photo,
.promo-photo-strip,
.campaign-image {
  min-height: 500px;
}

.info-band .container.info-grid {
  width: min(1240px, calc(100% - 56px));
}

.info-grid {
  grid-template-columns: minmax(330px, 0.82fr) minmax(460px, 1.18fr);
  gap: 32px;
}

.info-box {
  display: grid;
  align-content: center;
  padding: 30px;
}

.info-band h2 {
  font-size: 2.85rem;
}

.map-box {
  min-height: 420px;
  padding: 10px;
}

.map-box iframe {
  min-height: 400px;
}

.photo-bank-section {
  background: linear-gradient(180deg, #fff7ea, #fff0dd 58%, #fffaf1);
}

.photo-bank-head {
  margin-left: 0;
  text-align: left;
}

.photo-bank-head h2 {
  max-width: 760px;
}

.photo-bank-head .lead {
  max-width: 660px;
}

.photo-bank {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.72fr) minmax(260px, 0.86fr);
  grid-auto-rows: 205px;
  gap: 18px;
}

.photo-bank .gallery-item {
  min-height: 0;
  border: 1px solid rgba(9, 47, 39, 0.12);
  box-shadow: 0 22px 48px rgba(7, 31, 27, 0.1);
}

.photo-bank .photo-feature {
  grid-row: span 2;
}

.photo-bank .vertical {
  grid-row: span 2;
}

.photo-bank .wide-row {
  grid-column: span 2;
}

.menu-tabs {
  top: var(--nav-height);
}

.menu-page {
  min-height: 430px;
}

@media (min-width: 1280px) {
  :root {
    --container: min(1200px, calc(100% - 64px));
  }

  body[data-page="home"] .hero h1 {
    font-size: 5.15rem;
  }
}

@media (max-width: 1240px) {
  .nav-social {
    display: none;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  body[data-page="home"] .hero h1,
  body[data-page="nosotros"] .hero h1,
  body[data-page="reservaciones"] .hero h1,
  body[data-page="menu"] .hero h1,
  body[data-page="promociones"] .hero h1 {
    font-size: 3.95rem;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-grid;
  }

  .info-band .container.info-grid {
    width: var(--container);
  }

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

  .map-box,
  .map-box iframe {
    min-height: 380px;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.58rem;
  }

  body[data-page="home"] .hero h1,
  body[data-page="nosotros"] .hero h1,
  body[data-page="reservaciones"] .hero h1,
  body[data-page="menu"] .hero h1,
  body[data-page="promociones"] .hero h1 {
    font-size: 3.7rem;
  }

  .section {
    padding: 66px 0;
  }

  .story-grid,
  .promo-preview-grid,
  .sea-grid,
  .reservation-grid,
  .split {
    gap: 40px;
  }

  .story-photo-large,
  .sea-photo,
  .promo-photo-strip,
  .campaign-image {
    min-height: 390px;
  }

  .grid.three,
  .grid.two,
  .split {
    grid-template-columns: 1fr;
  }

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

  .photo-bank .photo-feature,
  .photo-bank .wide-row {
    grid-column: span 2;
  }

  .photo-bank .vertical {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100% - 30px, 1180px);
  }

  h1 {
    font-size: 3.05rem;
    max-width: 11ch;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.26rem;
  }

  .lead {
    font-size: 1rem;
  }

  body[data-page="home"] .hero h1,
  body[data-page="nosotros"] .hero h1,
  body[data-page="reservaciones"] .hero h1,
  body[data-page="menu"] .hero h1,
  body[data-page="promociones"] .hero h1 {
    font-size: 3.05rem;
  }

  .hero,
  .hero-editorial,
  .hero.medium,
  .hero.compact,
  .menu-hero,
  .promo-hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 100px 0 90px;
  }

  .hero-actions,
  .section-actions,
  .actions {
    width: 100%;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .actions .btn {
    flex: 1 1 190px;
  }

  .info-band h2 {
    font-size: 2.3rem;
  }

  .menu-tabs-inner {
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 8px;
  }

  .tab-link {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .map-box,
  .map-box iframe {
    min-height: 330px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 24px, 1180px);
  }

  .nav-inner {
    width: calc(100% - 20px);
  }

  .nav-book {
    display: none;
  }

  h1 {
    font-size: 2.34rem;
    line-height: 1;
    max-width: 12ch;
  }

  h2 {
    font-size: 1.94rem;
  }

  body[data-page="home"] .hero h1,
  body[data-page="nosotros"] .hero h1,
  body[data-page="reservaciones"] .hero h1,
  body[data-page="menu"] .hero h1,
  body[data-page="promociones"] .hero h1 {
    font-size: 2.34rem;
  }

  .hero,
  .hero-editorial,
  .hero.medium,
  .hero.compact,
  .menu-hero,
  .promo-hero {
    min-height: 610px;
  }

  .hero-content {
    padding: 90px 0 84px;
  }

  .hero-note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    margin-top: 24px;
  }

  .signature-strip {
    margin-top: 0;
    padding: 0;
  }

  .signature-inner {
    border-radius: 0;
  }

  .photo-bank {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .photo-bank .gallery-item,
  .photo-bank .photo-feature,
  .photo-bank .wide-row,
  .photo-bank .vertical {
    grid-column: auto;
    grid-row: auto;
    height: 255px;
  }

  .photo-bank .photo-feature {
    height: 310px;
  }

  .map-box,
  .map-box iframe {
    min-height: 300px;
  }
}

/* Curated Instagram library */
.social-feature-section {
  background: #eef4ee;
}

.social-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.social-feature-copy {
  max-width: 570px;
}

.social-feature-video {
  display: grid;
  grid-template-columns: minmax(260px, 390px) minmax(140px, 1fr);
  gap: 24px;
  align-items: end;
  margin: 0;
}

.social-feature-video video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: 690px;
  border: 1px solid rgba(9, 47, 39, 0.16);
  border-radius: 8px;
  object-fit: cover;
  background: var(--night);
  box-shadow: 0 26px 58px rgba(7, 31, 27, 0.2);
}

.social-feature-video figcaption {
  padding: 18px 0 18px 20px;
  border-left: 2px solid var(--sunset);
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

.scroll-section {
  overflow: hidden;
}

.scroll-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.scroll-section-head > div:first-child {
  max-width: 780px;
}

.scroll-section-head h2 {
  margin-bottom: 14px;
}

.scroll-section-head .lead {
  margin-bottom: 0;
}

.scroll-actions {
  display: flex;
  gap: 10px;
}

.rail-button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(9, 47, 39, 0.28);
  border-radius: 50%;
  color: var(--green-deep);
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.rail-button:hover,
.rail-button:focus-visible {
  color: var(--warm-white);
  border-color: var(--green-deep);
  background: var(--green-deep);
}

.rail-button.light {
  color: var(--warm-white);
  border-color: rgba(255, 253, 247, 0.4);
}

.rail-button.light:hover,
.rail-button.light:focus-visible {
  color: var(--green-deep);
  border-color: var(--warm-white);
  background: var(--warm-white);
}

.scroll-rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--sunset) rgba(9, 47, 39, 0.12);
  scrollbar-width: thin;
}

.scroll-rail > * {
  scroll-snap-align: start;
}

.instagram-menu-card {
  flex: 0 0 min(360px, 78vw);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(9, 47, 39, 0.12);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: 0 18px 42px rgba(7, 31, 27, 0.1);
}

.instagram-menu-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f4eadb;
}

.instagram-menu-card figcaption {
  min-height: 58px;
  padding: 17px 20px;
  color: var(--green-deep);
  font-weight: 850;
}

.instagram-follow-link {
  display: inline-block;
  margin-top: 18px;
}

.social-stories-section {
  color: var(--warm-white);
  background: var(--green-deep);
}

.light-heading h2,
.light-heading .lead {
  color: var(--warm-white);
}

.social-stories-section .eyebrow {
  color: var(--sand);
}

.social-stories-section .scroll-rail {
  scrollbar-color: var(--sunset) rgba(255, 253, 247, 0.16);
}

.instagram-video-card {
  display: grid;
  flex: 0 0 calc((100% - 18px) / 2);
  grid-template-columns: minmax(210px, 0.82fr) minmax(190px, 1fr);
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 8px;
  background: #fffaf1;
  box-shadow: 0 24px 54px rgba(3, 20, 17, 0.26);
}

.instagram-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  background: var(--night);
}

.instagram-video-copy {
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 30px 26px;
  color: var(--green-deep);
}

.instagram-video-copy span {
  color: var(--red-accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-video-copy h3 {
  margin: 0;
  font-size: 1.65rem;
}

.social-stories-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 253, 247, 0.2);
}

.social-stories-cta p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 253, 247, 0.78);
}

.instagram-editorial-card {
  flex: 0 0 min(310px, 76vw);
  height: 410px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--green-soft);
  box-shadow: 0 18px 42px rgba(7, 31, 27, 0.12);
  cursor: zoom-in;
}

.instagram-editorial-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.instagram-editorial-card:hover img,
.instagram-editorial-card:focus-visible img {
  transform: scale(1.025);
}

.reservation-views-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.reservation-views-copy {
  max-width: 520px;
}

.reservation-view-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  grid-template-rows: repeat(2, 220px);
  gap: 14px;
}

.reservation-view-mosaic img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(7, 31, 27, 0.12);
}

.reservation-view-mosaic .reservation-view-main {
  grid-row: 1 / 3;
}

.promo-proof .mini-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .social-feature-grid,
  .reservation-views-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .social-feature-video {
    grid-template-columns: 1fr;
  }

  .social-feature-video video {
    width: min(100%, 350px);
    justify-self: center;
  }

  .social-feature-video figcaption {
    max-width: 350px;
    justify-self: center;
  }

  .instagram-video-card {
    flex-basis: min(560px, 82vw);
  }

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

@media (max-width: 768px) {
  .social-feature-grid,
  .reservation-views-grid {
    grid-template-columns: 1fr;
  }

  .social-feature-video {
    justify-items: start;
  }

  .social-feature-video video,
  .social-feature-video figcaption {
    width: min(100%, 390px);
    max-width: 100%;
    justify-self: start;
  }

  .scroll-section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .instagram-video-card {
    flex-basis: min(86vw, 390px);
    grid-template-columns: 1fr;
  }

  .instagram-video-card video {
    height: auto;
    min-height: 0;
    aspect-ratio: 9 / 16;
  }

  .instagram-video-copy {
    min-height: 128px;
    padding: 22px;
  }

  .social-stories-cta {
    grid-template-columns: 1fr;
  }

  .social-stories-cta .btn {
    justify-self: start;
  }

  .reservation-view-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 180px;
  }

  .reservation-view-mosaic .reservation-view-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .instagram-menu-card,
  .instagram-editorial-card {
    flex-basis: 82vw;
  }

  .instagram-editorial-card {
    height: 390px;
  }

  .reservation-view-mosaic {
    grid-template-rows: 245px 150px;
    gap: 10px;
  }

  .promo-proof .mini-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .promo-proof .mini-gallery img {
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-rail {
    scroll-behavior: auto;
  }
}

/* Reviews and final visual cleanup */
.hero::before {
  display: none !important;
}

.sea-panel {
  border-top: 0;
  border-bottom: 0;
}

.nav-logo img,
.footer-logo {
  background: transparent;
  object-fit: contain;
}

.nav-logo img {
  width: 156px;
  max-height: 66px;
}

.footer-logo {
  width: 190px;
  max-height: 90px;
}

.reviews-section {
  overflow: hidden;
  padding: 96px 0 86px;
  color: var(--night);
  background: #e6f5f3;
  border-top: 1px solid rgba(15, 111, 118, 0.12);
  border-bottom: 1px solid rgba(15, 111, 118, 0.12);
}

.reviews-heading {
  width: min(820px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.reviews-heading .eyebrow {
  color: #0f6f76;
  letter-spacing: 0;
}

.reviews-heading h2 {
  max-width: 780px;
  margin: 12px auto 16px;
  font-size: 3.2rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.reviews-heading .lead {
  max-width: 720px;
  margin-inline: auto;
  color: rgba(7, 31, 27, 0.7);
}

.reviews-carousel {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 20px;
}

.reviews-viewport {
  min-width: 0;
  overflow: hidden;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(var(--review-columns, 3), minmax(0, 1fr));
  gap: 22px;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.reviews-track.is-changing {
  opacity: 0;
  transform: translateX(14px);
}

.review-card {
  min-width: 0;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(15, 111, 118, 0.14);
  border-radius: 8px;
  background: #fffefd;
  box-shadow: 0 20px 45px rgba(7, 31, 27, 0.1);
}

.review-card.has-photo {
  display: grid;
  grid-template-rows: 155px 1fr;
}

.review-photo {
  width: 100%;
  height: 155px;
  object-fit: cover;
}

.review-card-body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author > span:last-child {
  display: grid;
  min-width: 0;
}

.review-author strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--night);
  font-size: 0.98rem;
  line-height: 1.2;
  white-space: normal;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.review-author small {
  margin-top: 3px;
  color: rgba(7, 31, 27, 0.52);
  font-size: 0.78rem;
}

.review-avatar {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0f6f76;
  font-size: 0.82rem;
  font-weight: 800;
}

.review-stars {
  margin: 18px 0 12px;
  color: #d98e35;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.review-card p {
  margin: 0;
  color: rgba(7, 31, 27, 0.74);
  font-size: 0.96rem;
  line-height: 1.68;
}

.review-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid #0f6f76;
  border-radius: 50%;
  color: #0f6f76;
  background: transparent;
  font-size: 1.15rem;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.review-arrow:hover,
.review-arrow:focus-visible {
  color: #fff;
  background: #0f6f76;
  transform: translateY(-2px);
}

.reviews-meta {
  display: grid;
  grid-template-columns: auto minmax(120px, 300px) auto;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: rgba(7, 31, 27, 0.62);
  font-size: 0.84rem;
}

.reviews-progress {
  display: block;
  width: 100%;
  height: 3px;
  overflow: hidden;
  background: rgba(15, 111, 118, 0.16);
}

.reviews-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #d98e35;
  transition: width 220ms ease;
}

.reviews-meta a {
  color: #0f6f76;
  font-weight: 750;
}

/* Complete drinks menu */
.drinks-section {
  background: linear-gradient(180deg, #fffaf1 0%, #f4f5ec 100%);
}

.drinks-intro-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 54px;
  margin-bottom: 74px;
}

.drinks-photo-mosaic {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 210px);
  gap: 12px;
}

.drinks-photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 31, 27, 0.12);
}

.drinks-photo-mosaic .drinks-photo-main {
  grid-row: 1 / 3;
}

.drinks-menu-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 28px;
  padding-top: 34px;
  border-top: 1px solid rgba(9, 47, 39, 0.16);
}

.drinks-menu-heading h3 {
  margin: 8px 0 0;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.drinks-menu-heading p {
  max-width: 560px;
  margin: 0;
  justify-self: end;
  color: rgba(7, 31, 27, 0.68);
  line-height: 1.65;
}

.drinks-menu-pages {
  gap: 24px;
}

.drinks-menu-pages .menu-page {
  min-height: 0;
  aspect-ratio: 612 / 792;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(9, 47, 39, 0.14);
  border-radius: 8px;
  background: #f8f0df;
  box-shadow: 0 24px 54px rgba(7, 31, 27, 0.12);
}

.drinks-menu-pages .menu-page img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

@media (max-width: 900px) {
  .drinks-intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 58px;
  }

  .drinks-photo-mosaic {
    grid-template-rows: repeat(2, 180px);
  }

  .drinks-menu-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .drinks-menu-heading p {
    justify-self: start;
  }
}

@media (max-width: 560px) {
  .drinks-photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 145px;
  }

  .drinks-photo-mosaic .drinks-photo-main {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .drinks-menu-heading h3 {
    font-size: 1.85rem;
  }

  .drinks-menu-pages {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Final presentation fixes */
.hero-note {
  right: max(32px, calc((100vw - 1200px) / 2));
  bottom: 96px;
  z-index: 4;
  width: min(320px, calc(100% - 48px));
  min-width: 280px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-left: 3px solid var(--sunset);
  border-radius: 8px;
  background: rgba(7, 31, 27, 0.76);
  box-shadow: 0 16px 38px rgba(7, 31, 27, 0.22);
  backdrop-filter: blur(10px);
  letter-spacing: 0;
}

.hero-note span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-note strong {
  margin-top: 5px;
  font-size: 1.12rem;
  letter-spacing: 0;
}

.location-highlight {
  display: grid;
  gap: 5px;
  margin: 24px 0 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-left: 3px solid var(--sunset);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.08);
}

.location-highlight span {
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-highlight strong {
  color: var(--warm-white);
  font-size: 1.12rem;
  line-height: 1.3;
}

.info-band .btn.outline {
  color: var(--warm-white);
  border-color: rgba(255, 250, 241, 0.38);
  background: rgba(255, 250, 241, 0.07);
}

.info-band .btn.outline:hover,
.info-band .btn.outline:focus-visible {
  color: var(--night);
  background: var(--warm-white);
}

.location-band .info-box {
  min-height: 520px;
}

@media (min-width: 1025px) {
  .photo-bank {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(3, 230px);
    grid-auto-flow: dense;
    gap: 18px;
  }

  .photo-bank .gallery-item:nth-child(1) {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
  }

  .photo-bank .gallery-item:nth-child(2) {
    grid-column: 6 / 9;
    grid-row: 1;
  }

  .photo-bank .gallery-item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1;
  }

  .photo-bank .gallery-item:nth-child(4) {
    grid-column: 6 / 9;
    grid-row: 2;
  }

  .photo-bank .gallery-item:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 2;
  }

  .photo-bank .gallery-item:nth-child(6) {
    grid-column: 1 / 6;
    grid-row: 3;
  }

  .photo-bank .gallery-item:nth-child(7) {
    grid-column: 6 / 9;
    grid-row: 3;
  }

  .photo-bank .gallery-item:nth-child(8) {
    grid-column: 9 / 13;
    grid-row: 3;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .photo-bank {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 235px;
    grid-auto-flow: dense;
  }

  .photo-bank .gallery-item {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-bank .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .photo-bank .gallery-item:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .hero-note {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin-top: 26px;
  }

  .location-band .info-box {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .reviews-section {
    padding: 78px 0 72px;
  }

  .reviews-heading h2 {
    font-size: 2.4rem;
  }

  .reviews-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 12px;
  }

  .review-arrow {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 560px) {
  .nav-logo img {
    width: 128px;
    max-height: 58px;
  }

  .reviews-section {
    padding: 64px 0 58px;
  }

  .reviews-heading {
    margin-bottom: 32px;
  }

  .reviews-heading h2 {
    font-size: 2rem;
  }

  .reviews-carousel {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .reviews-viewport {
    grid-column: 1 / -1;
    grid-row: 1;
  }

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

  .review-arrow {
    justify-self: center;
  }

  .review-prev {
    grid-column: 1;
  }

  .review-next {
    grid-column: 2;
  }

  .reviews-meta {
    grid-template-columns: auto 1fr;
    gap: 12px;
    margin-top: 22px;
  }

  .reviews-meta a {
    grid-column: 1 / -1;
    text-align: center;
  }
}
