/* Tawan Chay — components */

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(24, 59, 44, 0.08);
  box-shadow: none;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(24, 59, 44, 0.1);
  box-shadow: 0 4px 24px rgba(24, 59, 44, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  line-height: 0;
}

.logo:hover { color: inherit; }

.logo__mark {
  display: block;
  width: auto;
  height: clamp(48px, 5vw, 54px);
  max-width: min(250px, 58vw);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 180ms ease;
}

.nav-toggle:hover {
  background: rgba(24, 59, 44, 0.04);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--green);
  border-radius: 1px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.site-nav {
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.2vw, 2rem);
  list-style: none;
}

.nav-link {
  position: relative;
  display: block;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--button-green);
  text-decoration: none;
  border-radius: 0;
  background: transparent;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 18px;
}

.nav-link.is-active {
  color: var(--gold);
  background: transparent;
}

.nav-item-has-sub {
  position: relative;
}

.nav-sub {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 176px;
  padding: 0.35rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(24, 59, 44, 0.08);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(24, 59, 44, 0.08);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item-has-sub:hover .nav-sub,
.nav-item-has-sub:focus-within .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-sub a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-sub a:hover {
  background: rgba(251, 244, 232, 0.8);
  color: var(--gold);
}

.nav-cta {
  margin-left: 0.25rem;
  height: 42px;
  min-height: 42px;
  padding: 0 20px !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(80, 50, 12, 0.1);
}

/* Mobile drawer */

.mobile-menu-overlay,
.mobile-drawer {
  display: none;
}

.mobile-menu-overlay {
  position: fixed;
  top: var(--mobile-header-height);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 998;
  background: rgba(8, 16, 12, 0.58);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  touch-action: none;
}

.mobile-drawer {
  position: fixed;
  top: var(--mobile-header-height);
  right: 0;
  z-index: 999;
  width: min(82vw, 360px);
  height: calc(100vh - var(--mobile-header-height));
  height: calc(100dvh - var(--mobile-header-height));
  padding: 18px 22px 24px;
  background: #faf6f0;
  border-left: 1px solid rgba(30, 52, 41, 0.08);
  box-shadow: -6px 0 32px rgba(30, 52, 41, 0.1);
  border-radius: 8px 0 0 0;
  transform: translateX(100%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  flex-direction: column;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__nav {
  flex: 1;
}

.mobile-drawer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.mobile-drawer__list > li {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-drawer.is-open .mobile-drawer__list > li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-drawer.is-open .mobile-drawer__list > li:nth-child(1) { transition-delay: 0.04s; }
.mobile-drawer.is-open .mobile-drawer__list > li:nth-child(2) { transition-delay: 0.08s; }
.mobile-drawer.is-open .mobile-drawer__list > li:nth-child(3) { transition-delay: 0.12s; }
.mobile-drawer.is-open .mobile-drawer__list > li:nth-child(4) { transition-delay: 0.16s; }
.mobile-drawer.is-open .mobile-drawer__list > li:nth-child(5) { transition-delay: 0.2s; }

.mobile-drawer__link {
  display: block;
  padding: 0.45rem 0.5rem;
  font-size: clamp(1.05rem, 3.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--button-green);
  text-decoration: none;
  border-radius: 0;
  transition: color 180ms ease;
}

.mobile-drawer__link:hover {
  color: var(--gold);
}

.mobile-drawer__link.is-active {
  background: transparent;
  color: var(--gold);
}

.mobile-drawer__group {
  margin-bottom: 0;
}

.mobile-drawer__sub {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.35rem 0 0.15rem 1rem;
}

.mobile-drawer__sublink {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: clamp(0.98rem, 2.8vw, 1.0625rem);
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-radius: 0;
  transition: color 180ms ease;
}

.mobile-drawer__sublink:hover {
  color: var(--green-mid);
}

.mobile-drawer__sublink.is-active {
  background: transparent;
  color: var(--gold);
}

.mobile-drawer__footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.mobile-drawer__book {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  min-height: 52px;
  margin-bottom: 1.15rem;
  padding: 0 24px !important;
  font-size: 0.9375rem !important;
}

.mobile-drawer__book:hover {
  transform: translateY(-1px);
}

.mobile-drawer__details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 1rem 0.95rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(30, 52, 41, 0.07);
  border-radius: 12px;
}

.mobile-drawer__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--muted);
}

.mobile-drawer__detail--link {
  text-decoration: none;
  color: var(--green-mid);
  font-weight: 500;
}

.mobile-drawer__detail--link:hover {
  color: var(--gold);
}

.mobile-drawer__detail-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--gold);
}

body.mobile-menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

html.mobile-menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu-overlay,
  .mobile-drawer,
  .mobile-drawer__list > li,
  .nav-toggle span {
    transition: none;
  }

  .mobile-drawer__list > li {
    opacity: 1;
    transform: none;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  height: 46px;
  min-height: 46px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.btn-lg {
  height: 46px;
  min-height: 46px;
  padding: 0 28px;
  font-size: 0.9375rem;
}

.btn-gold,
.btn-primary {
  background: var(--button-gold);
  color: #fff;
  border-color: rgba(87, 52, 8, 0.22);
  box-shadow: 0 6px 14px rgba(80, 50, 12, 0.12);
}

.btn-gold:hover,
.btn-primary:hover {
  background: var(--button-gold-dark);
  border-color: rgba(87, 52, 8, 0.32);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(80, 50, 12, 0.16);
}

.btn-outline,
.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--button-green);
  border-color: rgba(24, 59, 44, 0.22);
  box-shadow: none;
}

.btn-outline:hover,
.btn-secondary:hover {
  background: var(--button-green);
  border-color: var(--button-green);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}

.btn-sm {
  height: 40px;
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-with-arrow {
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.btn-with-arrow > span {
  display: block;
  line-height: 1;
  transform: translateY(1px);
}

.btn-with-arrow .btn-arrow,
.menu-hub-card__cta .btn-arrow {
  display: block;
  width: 22px;
  height: 12px;
  flex-shrink: 0;
  stroke-width: 1.35;
  transition: transform 180ms ease, opacity 180ms ease;
  opacity: 0.78;
  transform: translateY(1px);
}

.btn-with-arrow:hover .btn-arrow,
.menu-hub-card:hover .menu-hub-card__cta.btn-with-arrow .btn-arrow {
  transform: translateY(1px) translateX(3px);
  opacity: 1;
}

.btn-book-icon {
  display: block;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke-width: 1.75;
  transform: translateY(1px);
}

.btn .btn-book-icon + span {
  transform: translateY(1px);
}

.btn-sm .btn-book-icon,
.nav-cta .btn-book-icon {
  width: 15px;
  height: 15px;
}

@media (max-width: 960px) {
  .btn:not(.btn-sm):not(.nav-cta),
  .btn-lg:not(.nav-cta) {
    height: 52px;
    min-height: 52px;
  }

  .menu-hub-card__cta {
    height: 52px;
    min-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  }

  .btn:hover {
    transform: none;
  }

  .btn-with-arrow .btn-arrow,
  .menu-hub-card__cta.btn-with-arrow .btn-arrow {
    transition: opacity 180ms ease;
  }

  .btn-with-arrow:hover .btn-arrow,
  .menu-hub-card:hover .menu-hub-card__cta.btn-with-arrow .btn-arrow {
    transform: translateY(1px);
  }
}

/* Hero (home) */

.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-grid--solo {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.hero-content h1 {
  margin-bottom: 1rem;
}

.hero-content .lead {
  margin-bottom: 1.75rem;
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Photo frames (real images) */

.photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a1a;
}

.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.card .photo-frame {
  border-radius: var(--radius) var(--radius) 0 0;
}

.about-image.photo-frame {
  border-radius: var(--radius-lg);
}

.gallery-grid .photo-frame {
  border-radius: var(--radius);
}

/* Image loading — static placeholder, fade in when ready */

.media-skeleton,
.home-hero__media,
.home-about__media,
.menu-card__image,
.home-gallery__item,
.menu-hub-card__media,
.about-intro__media,
.about-location__media,
.hero-image,
.about-image,
.gallery-grid .photo-frame {
  background:
    linear-gradient(135deg, #ebe4d8 0%, #f5efe6 42%, #e8dfd2 100%);
}

.media-skeleton.is-loaded,
.home-hero__media.is-loaded,
.home-about__media.is-loaded,
.menu-card__image.is-loaded,
.home-gallery__item.is-loaded,
.menu-hub-card__media.is-loaded,
.about-intro__media.is-loaded,
.about-location__media.is-loaded,
.hero-image.is-loaded,
.about-image.is-loaded,
.gallery-grid .photo-frame.is-loaded {
  background: transparent;
}

.media-skeleton:not(.is-loaded) > img,
.home-hero__media:not(.is-loaded) > img,
.home-about__media:not(.is-loaded) > img,
.menu-card__image:not(.is-loaded) > img,
.home-gallery__item:not(.is-loaded) > img,
.menu-hub-card__media:not(.is-loaded) > img,
.about-intro__media:not(.is-loaded) > img,
.about-location__media:not(.is-loaded) > img,
.hero-image:not(.is-loaded) > img,
.about-image:not(.is-loaded) > img,
.gallery-grid .photo-frame:not(.is-loaded) > img {
  opacity: 0;
  visibility: hidden;
}

.media-skeleton.is-loaded > img,
.home-hero__media.is-loaded > img,
.home-about__media.is-loaded > img,
.menu-card__image.is-loaded > img,
.home-gallery__item.is-loaded > img,
.menu-hub-card__media.is-loaded > img,
.about-intro__media.is-loaded > img,
.about-location__media.is-loaded > img,
.hero-image.is-loaded > img,
.about-image.is-loaded > img,
.gallery-grid .photo-frame.is-loaded > img {
  opacity: 1;
  visibility: visible;
  transition-property: opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}

@media (prefers-reduced-motion: reduce) {
  .media-skeleton.is-loaded > img,
  .home-hero__media.is-loaded > img,
  .home-about__media.is-loaded > img,
  .menu-card__image.is-loaded > img,
  .home-gallery__item.is-loaded > img,
  .menu-hub-card__media.is-loaded > img,
  .about-intro__media.is-loaded > img,
  .about-location__media.is-loaded > img,
  .hero-image.is-loaded > img,
  .about-image.is-loaded > img,
  .gallery-grid .photo-frame.is-loaded > img {
    transition-property: none;
  }
}

/* Development placeholders (legacy SVGs) */

.placeholder-frame {
  background: #f0e6d4;
  border: 1px dashed #d8ccb9;
  border-radius: var(--radius);
  overflow: hidden;
}

.placeholder-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.card .placeholder-frame {
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: none;
}

.about-image.placeholder-frame {
  border-radius: var(--radius-lg);
}

.gallery-grid .placeholder-frame {
  border-radius: var(--radius);
}

/* Pillars */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pillar {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(197, 139, 34, 0.1);
  color: var(--gold);
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.pillar h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(40, 70, 56, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Ratio boxes — img must fill container, not use intrinsic height */

.ratio-box,
.hero-image,
.about-image,
.home-hero__media,
.home-about__media,
.menu-card__image,
.home-gallery__item {
  position: relative;
  overflow: hidden;
}

.ratio-box > img,
.hero-image > img,
.about-image > img,
.about-image.photo-frame > img,
.home-hero__media > img,
.home-about__media > img,
.menu-card__image > img,
.home-gallery__item > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  z-index: 1;
}

.card-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--muted);
}

.card-price {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--gold);
}

/* Quote */

.quote-block {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 2.25rem;
  text-align: center;
  background: var(--card);
  border: 1px solid rgba(197, 139, 34, 0.25);
  border-radius: var(--radius-lg);
}

.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1.5;
}

/* Gallery grid */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery-filter {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.gallery-filter:hover {
  border-color: var(--gold);
}

.gallery-filter.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-grid {
  columns: 4;
  column-gap: 1rem;
}

.gallery-grid a,
.gallery-grid button {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-grid .gallery-thumb,
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

.gallery-grid a:hover,
.gallery-grid button:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow);
}

/* Lightbox — margin:auto required; global reset strips dialog centering */

.lightbox {
  border: none;
  padding: 0;
  margin: auto;
  width: fit-content;
  max-width: min(920px, 96vw);
  max-height: 92vh;
  background: transparent;
  overflow: visible;
  opacity: 0;
  transform: scale(0.94) translateY(10px);
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    overlay 0.32s ease allow-discrete;
}

.lightbox[open] {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.lightbox.is-closing {
  opacity: 0;
  transform: scale(0.96) translateY(8px);
}

@starting-style {
  .lightbox[open] {
    opacity: 0;
    transform: scale(0.94) translateY(10px);
  }

  .lightbox[open]::backdrop {
    background: rgba(37, 54, 44, 0);
  }
}

.lightbox::backdrop {
  background: rgba(37, 54, 44, 0.88);
  transition: background 0.32s ease allow-discrete;
}

.lightbox-shell {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-stage {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  background: #fffefb;
}

.lightbox-stage:active {
  cursor: grabbing;
}

.lightbox-track {
  display: flex;
  width: 200%;
  height: 100%;
  will-change: transform;
}

.lightbox-track.is-dragging {
  cursor: grabbing;
}

.lightbox-slide {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  line-height: 0;
  background: #fffefb;
}

.lightbox-slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(920px, 96vw);
  max-height: min(78vh, 820px);
  pointer-events: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}

.lightbox-nav:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.lightbox-nav--prev {
  left: 0.85rem;
}

.lightbox-nav--next {
  right: 0.85rem;
}

.lightbox-nav svg {
  display: block;
  flex-shrink: 0;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  background: #fff;
  transform: scale(1.04);
}

.lightbox-close svg {
  display: block;
  flex-shrink: 0;
}

.lightbox-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem 1rem;
  border-top: 1px solid var(--border);
  background: #fffefb;
}

.lightbox-caption {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.lightbox-counter {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-mid);
}

@media (max-width: 640px) {
  .lightbox-nav {
    width: 36px;
    height: 36px;
  }

  .lightbox-nav--prev {
    left: 0.5rem;
  }

  .lightbox-nav--next {
    right: 0.5rem;
  }

  .lightbox-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox,
  .lightbox::backdrop,
  .lightbox-track {
    transition: none;
  }
}

/* Menu */

.menu-page {
  max-width: none;
}

.menu-page__intro {
  margin: 0 0 2.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--green);
  text-align: center;
}

.menu-category__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 1rem;
  padding-bottom: 0.85rem;
  margin-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.menu-category__subtitle {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--muted);
}

.menu-protein-options {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 2rem;
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(251, 246, 240, 0.65);
}

.menu-protein-options li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
}

.menu-protein-options li span:last-child {
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.menu-allergy-notice {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.menu-allergy-notice__title {
  font-size: 1rem;
  margin-bottom: 0.65rem;
  color: var(--green);
}

.menu-allergy-notice p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

.menu-category {
  margin-bottom: clamp(3.25rem, 5.5vw, 4.25rem);
}

.menu-category h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.8vw, 2.05rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  border: none;
  color: var(--green);
}

.menu-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(1.75rem, 3.5vw, 2.75rem);
  align-items: start;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px dashed var(--border);
  height: 100%;
}

.menu-item-info {
  flex: 1;
  min-width: 0;
}

.menu-item__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.15rem;
}

.menu-item__title h3,
.menu-item-info h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0;
}

.menu-item-info p {
  font-size: 0.88rem;
  color: var(--muted);
}

.menu-item-price {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.menu-tags {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
}

.menu-tag {
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.2rem 0.38rem;
  border-radius: 4px;
  background: var(--bg-soft);
  color: var(--muted);
}

@media (max-width: 820px) {
  .menu-list,
  .menu-protein-options {
    grid-template-columns: 1fr;
  }
}

.menu-hub-section {
  position: relative;
  overflow: hidden;
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-bottom: clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(180deg, var(--bg) 0%, #fffefb 42%, rgba(240, 232, 220, 0.35) 100%);
}

.menu-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: var(--container);
  margin: 0 auto;
}

.menu-hub-card {
  display: flex;
  flex-direction: column;
  background: #fffefb;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.menu-hub-card:not(:hover) {
  transition-duration: 0.65s;
}

.menu-hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 52, 41, 0.15);
  box-shadow: 0 14px 34px rgba(30, 52, 41, 0.11);
  color: inherit;
}

.menu-hub-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a2b22;
}

.menu-hub-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-hub-card__media.is-loaded > img {
  transition:
    opacity 0.4s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-hub-card__media--food img {
  object-position: center 42%;
}

.menu-hub-card__media--drinks img {
  object-position: center 28%;
}

.menu-hub-card:hover .menu-hub-card__media img {
  transform: scale(1.04);
}

.menu-hub-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.25rem, 2vw, 1.65rem) clamp(1.5rem, 2.5vw, 1.85rem);
}

.menu-hub-card__label {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.menu-hub-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--green);
}

.menu-hub-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 1.25rem;
  flex: 1;
}

.menu-hub-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 46px;
  min-height: 46px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  border: 1px solid rgba(24, 59, 44, 0.22);
  border-radius: 12px;
  color: var(--button-green);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  gap: 8px;
  transition:
    background 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}


.menu-hub-card:hover .menu-hub-card__cta {
  background: var(--button-green);
  border-color: var(--button-green);
  color: #fff;
  transform: translateY(-1px);
}

.menu-hub-note {
  margin-top: clamp(1.5rem, 2.5vw, 2rem);
  padding-top: clamp(1.25rem, 2vw, 1.5rem);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.6;
}

.menu-hub-booking {
  position: relative;
  padding: 80px 0 90px;
  background:
    radial-gradient(ellipse 62% 48% at 50% 16%, rgba(180, 122, 26, 0.07) 0%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(251, 244, 232, 0.92) 55%, rgba(250, 246, 240, 0.98) 100%);
  border-top: none;
}

.menu-hub-booking::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 42%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30, 52, 41, 0.1), transparent);
}

.menu-hub-booking > .container {
  position: relative;
  z-index: 1;
}

.menu-hub-booking__inner {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}

.menu-hub-booking__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}

.menu-hub-booking__inner p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 36ch;
  margin-inline: auto;
  margin-bottom: 28px;
}

.menu-hub-booking__inner .btn {
  min-width: min(100%, 220px);
}

.inner-page:has(.menu-hub-booking) + .site-footer {
  padding-top: clamp(3.25rem, 7vw, 5rem);
}

.inner-page + .site-footer {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

.page-hero + .menu-hub-section {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2rem);
}

@media (prefers-reduced-motion: reduce) {
  .menu-hub-card,
  .menu-hub-card__media img {
    transition: none;
  }
}

/* Contact */

.contact-page {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.625rem) 0;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 48% 44%;
  gap: 80px;
  justify-content: space-between;
  align-items: start;
}

.contact-sidebar .section-eyebrow {
  margin-bottom: 0.65rem;
}

.contact-sidebar__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 1.75rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 1.85rem;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-details__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--gold);
  stroke-width: 1.75;
}

.contact-details__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--text);
  text-decoration: none;
  line-height: 1.58;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.contact-details a:hover {
  color: var(--gold);
}

.contact-hours {
  margin-bottom: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.contact-hours__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.contact-hours__head .contact-details__label {
  margin-bottom: 0;
}

.contact-hours__list li {
  color: var(--muted);
}

.contact-hours__list span:first-child {
  color: var(--text);
  font-weight: 500;
}

.contact-social {
  margin-bottom: 0.25rem;
}

.contact-social .contact-details__label {
  margin-bottom: 0.65rem;
}

.contact-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.contact-social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.contact-social__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-social__link:hover {
  color: var(--gold);
}

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

.contact-map {
  margin-top: 2rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(30, 52, 41, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-form-wrap .alert {
  margin-bottom: 1.25rem;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: 0 16px 48px rgba(30, 52, 41, 0.07);
}

.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.contact-form-card__lead {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.62;
  max-width: 44ch;
  margin-bottom: 1.75rem;
}

.contact-form-card .form-group {
  margin-bottom: 1.25rem;
}

.contact-form-card .form-group label {
  font-size: 0.84rem;
  margin-bottom: 0.4rem;
}

.contact-form-card .form-group input,
.contact-form-card .form-group select {
  height: 48px;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 12px;
  background: rgba(250, 246, 240, 0.85);
}

.contact-form-card .form-group textarea {
  min-height: 150px;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(250, 246, 240, 0.85);
}

.contact-form-card .form-row {
  gap: 1.25rem;
}

.contact-form-card__submit {
  margin-top: 0.25rem;
  min-width: min(100%, 180px);
}

.contact-form-card__submit.is-loading {
  pointer-events: none;
  opacity: 0.88;
}

.contact-form-card__submit.is-loading .contact-form-card__submit-label::before {
  content: '';
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  margin-right: 0.55em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: contact-form-spin 0.65s linear infinite;
  vertical-align: -0.12em;
}

@keyframes contact-form-spin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form-card__status {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green);
}

.contact-form-card__turnstile {
  margin-bottom: 1.25rem;
}

/* Form (shared) */

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--green);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 139, 34, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.alert-success {
  background: rgba(49, 72, 59, 0.08);
  border: 1px solid rgba(49, 72, 59, 0.2);
  color: var(--green);
}

.alert-error {
  background: rgba(192, 80, 63, 0.08);
  border: 1px solid rgba(192, 80, 63, 0.2);
  color: #a04032;
}

/* Booking */

.booking-section {
  max-width: 540px;
  margin: 0 auto;
}

.booking-section iframe {
  width: 100%;
  border: 0;
  min-height: 480px;
  display: block;
}

/* About page */

.about-section-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--green);
}

.about-intro {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}

.about-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.about-intro__content {
  max-width: 34rem;
}

.about-intro__content .section-eyebrow {
  margin-bottom: 0.85rem;
}

.about-intro__lead {
  font-size: clamp(1.05rem, 1.8vw, 1.12rem);
  line-height: 1.68;
  color: var(--text);
  margin-bottom: 0.85rem;
  max-width: 54ch;
}

.about-intro__text,
.about-intro__hours {
  color: var(--muted);
  line-height: 1.68;
  max-width: 54ch;
}

.about-intro__text {
  margin-bottom: 0.85rem;
}

.about-intro__hours {
  margin-bottom: 1.75rem;
  font-size: 0.98rem;
}

.about-intro__actions {
  margin-top: 0;
}

.about-intro__media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(30, 52, 41, 0.12);
  border: 1px solid var(--border);
}

.about-intro__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(to top, rgba(20, 35, 28, 0.5) 0%, transparent 100%);
}

.about-expect {
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    rgba(251, 244, 232, 0.55) 0%,
    rgba(250, 246, 240, 0.95) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-expect__head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto clamp(2.25rem, 4vw, 3rem);
}

.about-expect__head .section-eyebrow {
  margin-bottom: 0.65rem;
}

.about-expect__head .about-section-title {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.about-expect__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.15rem, 2.5vw, 1.65rem);
}

.about-expect__item {
  padding: clamp(1.45rem, 2.5vw, 1.85rem);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.about-expect__icon {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  color: var(--gold);
  stroke-width: 1.65;
  margin-bottom: 0.85rem;
}

.about-expect__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.45rem;
}

.about-expect__item p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.about-location {
  padding: 70px 0;
}

.about-location__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

.about-location__content {
  max-width: 34rem;
}

.about-location__content .section-eyebrow {
  margin-bottom: 0.65rem;
}

.about-location__content .about-section-title {
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  margin-bottom: 0.75rem;
}

.about-location__text {
  color: var(--muted);
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 1.5rem;
}

.about-location__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(30, 52, 41, 0.08);
}

.about-location__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CTA band */

.cta-band {
  text-align: left;
  padding: clamp(2rem, 4vw, 2.75rem) 0;
  background: var(--green);
  color: #fff;
}

.cta-band .container {
  max-width: 640px;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
}

/* Footer */

.site-footer {
  background: linear-gradient(180deg, #121f19 0%, #0f1a15 100%);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: 0;
  margin-top: auto;
}

.footer-main {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  align-self: center;
  padding-right: clamp(0.75rem, 2.5vw, 2rem);
}

.footer-brand__logo {
  display: inline-block;
  line-height: 0;
}

.footer-brand__logo:hover {
  opacity: 0.92;
}

.footer-logo__mark {
  display: block;
  width: clamp(170px, 20vw, 220px);
  height: auto;
  max-width: 100%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.footer-address a,
.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.82);
}

.hours-list {
  list-style: none;
  font-size: 0.88rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.25rem 0;
}

.hours-list--compact {
  font-size: 0.85rem;
}

.hours-list--compact li {
  padding: 0.35rem 0;
}

.site-footer .hours-list li {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.site-footer .hours-list span:first-child {
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--gold);
  stroke-width: 2;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.6;
}

.footer-social a svg,
.social-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  text-decoration: none;
}

.social-link:hover {
  color: var(--gold);
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-book {
  margin-top: 0.5rem;
}

.footer-book .btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.footer-book .btn-outline:hover {
  background: var(--button-green);
  border-color: var(--button-green);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: none;
}

.footer-bottom {
  padding-top: clamp(1.5rem, 3vw, 2rem);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.75rem;
  margin-bottom: 0;
  padding: 1.25rem 0 clamp(2.5rem, 5vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.3rem;
  width: 100%;
  margin: 0;
  padding: 0.8rem 1.5rem 0.8rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.footer-credit .footer-heart {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 0.05rem;
  color: #c95f4b;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 2;
  vertical-align: -1px;
  transform-origin: center;
  animation: heartbeat 1.8s ease-in-out infinite;
}

.footer-credit .footer-heart path {
  fill: currentColor;
}

@keyframes heartbeat {
  0%, 40%, 80%, 100% {
    transform: scale(1);
  }
  20%, 60% {
    transform: scale(1.18);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .nav-toggle { display: flex; }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(24, 59, 44, 0.08);
    box-shadow: none;
  }

  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 4px 24px rgba(24, 59, 44, 0.06);
  }

  .site-nav {
    display: none;
  }

  .mobile-menu-overlay {
    display: block;
  }

  .mobile-drawer {
    display: flex;
  }

  .hero-grid,
  .about-intro__grid,
  .about-location__inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .contact-page {
    padding: clamp(3.5rem, 8vw, 4.5rem) 0;
  }

  .contact-mobile-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin: 1.5rem 0 0.25rem;
  }

  .contact-map {
    margin-top: 1.5rem;
  }

  .contact-map iframe {
    height: 300px;
  }

  .about-intro {
    padding: clamp(3.5rem, 8vw, 4.5rem) 0;
  }

  .about-expect {
    padding: clamp(3.5rem, 8vw, 4.5rem) 0;
  }

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

  .about-location {
    padding: clamp(3.25rem, 7vw, 4.375rem) 0;
  }

  .about-location__media {
    max-width: none;
    width: 100%;
  }

  .hero-image { order: -1; }

  .pillars { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 2.5rem);
  }
  .menu-hub-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .menu-hub-card__cta {
    align-self: stretch;
  }

  .menu-hub-booking {
    padding: 56px 0 64px;
  }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .mobile-drawer {
    padding: 20px 20px 22px;
  }

  .pillars { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    padding-right: 0;
    padding-bottom: 0.25rem;
  }

  .footer-main {
    padding-bottom: 2rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
  }
  .gallery-grid { columns: 1; }
}
