:root {
  --ink: #151515;
  --ink-soft: #232323;
  --paper: #f5f2e9;
  --paper-deep: #e9e4d8;
  --white: #ffffff;
  --green: #c9db42;
  --green-bright: #dcf04f;
  --green-dark: #59620e;
  --line: rgba(21, 21, 21, 0.18);
  --line-dark: rgba(255, 255, 255, 0.18);
  --muted: #67675f;
  --danger: #9f2727;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(72px, 9vw, 132px);
  --font: "Karla", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
video,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.button {
  min-height: 48px;
}

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

::selection {
  background: var(--green);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-140%);
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--ink);
  padding: 12px 18px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 780px);
}

.section {
  padding-block: var(--section);
}

.section-compact {
  padding-block: clamp(48px, 6vw, 84px);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-green {
  background: var(--green);
  color: var(--ink);
}

.section-paper-deep {
  background: var(--paper-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--green);
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  background: currentColor;
  content: "";
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 7.6rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.08;
}

h4 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.lede {
  max-width: 720px;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.muted {
  color: var(--muted);
}

.section-dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.text-green {
  color: var(--green);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green);
  color: var(--ink);
}

.button-green {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
}

.button-green:hover {
  border-color: var(--white);
  background: var(--white);
}

.button-outline {
  background: transparent;
  color: var(--ink);
}

.section-dark .button-outline,
.hero .button-outline {
  border-color: var(--white);
  color: var(--white);
}

.section-dark .button-outline:hover,
.hero .button-outline:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink);
}

.announcement {
  background: var(--green);
  color: var(--ink);
  padding: 8px var(--gutter);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(21, 21, 21, 0.96);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 144px;
}

.brand img {
  width: 154px;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.nav-links a {
  position: relative;
  padding-block: 25px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--green);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  min-height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 104px));
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero picture,
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.32) 58%, rgba(0, 0, 0, 0.1) 100%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: min(760px, calc(100svh - 104px));
  padding-block: clamp(76px, 12vw, 130px);
}

.hero-copy {
  width: min(100%, 820px);
}

.hero h1 {
  max-width: 900px;
  color: var(--green);
}

.hero p {
  max-width: 610px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(92px, 12vw, 170px);
}

.page-hero h1 {
  max-width: 1040px;
  color: var(--green);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(32px, 6vw, 90px);
}

.page-hero-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transform: rotate(2deg);
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.section-head > :first-child {
  max-width: 820px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.split-wide {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-deep);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-frame-offer {
  aspect-ratio: 4 / 3;
}

.media-frame-offer img {
  min-height: 0;
  object-position: center 38%;
}

body[data-page="menu"] .hero img,
body[data-page="events"] .hero img {
  object-position: center center;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  background: var(--line-dark);
}

.metric {
  background: var(--ink);
  padding: clamp(28px, 4vw, 52px);
}

.metric strong {
  display: block;
  color: var(--green);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card-body {
  padding: clamp(22px, 3vw, 32px);
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.card-media.square {
  aspect-ratio: 1;
}

.card-media.portrait {
  aspect-ratio: 4 / 5;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.card:hover .card-media img {
  transform: scale(1.035);
}

.card-tag {
  display: inline-flex;
  border-radius: 999px;
  background: var(--green);
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-link {
  display: inline-flex;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-card {
  min-height: 270px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink-soft);
  padding: clamp(26px, 4vw, 40px);
}

.feature-card .number {
  display: block;
  margin-bottom: 50px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
}

.link-card {
  display: flex;
  min-height: 380px;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.link-card-inner {
  width: 100%;
  padding: clamp(28px, 5vw, 50px);
}

.link-card h3 {
  color: var(--green);
  font-size: clamp(2rem, 4vw, 4rem);
}

.link-card:hover {
  background: var(--green);
  color: var(--ink);
}

.link-card:hover h3 {
  color: var(--ink);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  border-radius: var(--radius-lg);
  background: var(--green);
  padding: clamp(34px, 6vw, 72px);
}

.cta-band h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-dark);
  background: var(--green);
  color: var(--ink);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee span {
  padding: 18px 30px;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.tabs {
  position: sticky;
  top: 76px;
  z-index: 20;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 233, 0.96);
  scrollbar-width: thin;
  backdrop-filter: blur(12px);
}

.tabs-inner {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 8px;
  padding-block: 12px;
}

.tabs a,
.filter-chip {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 9px 16px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.tabs a:hover,
.filter-chip:hover,
.filter-chip[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.menu-section {
  padding-top: 72px;
}

.menu-section + .menu-section {
  border-top: 1px solid var(--line);
  margin-top: 72px;
}

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

.menu-item {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(21, 21, 21, 0.1);
}

.menu-item-media {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--paper-deep);
}

.menu-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.menu-item:hover .menu-item-media img {
  transform: scale(1.035);
}

.menu-item-body {
  flex: 1;
  padding: clamp(20px, 2.4vw, 28px);
}

.menu-item h3 {
  font-size: 1.35rem;
}

.menu-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-note {
  display: inline-flex;
  margin-top: 32px;
  border-left: 4px solid var(--green);
  background: var(--paper-deep);
  padding: 16px 18px;
  font-size: 0.92rem;
}

.product-card .price {
  margin: 16px 0 0;
  font-size: 1.2rem;
  font-weight: 900;
}

.product-card .availability {
  color: var(--muted);
  font-size: 0.84rem;
}

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

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

.quote {
  border-left: 5px solid var(--green);
  margin: 0;
  padding-left: clamp(22px, 4vw, 40px);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
}

.guest-love {
  overflow: hidden;
}

.guest-ratings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
}

.guest-ratings > div {
  display: grid;
  place-items: center;
  min-height: 136px;
  border-right: 1px solid rgba(21, 21, 21, 0.2);
  padding: 24px;
  text-align: center;
}

.guest-ratings > div:last-child {
  border-right: 0;
}

.guest-ratings strong,
.guest-ratings span {
  display: block;
}

.guest-ratings strong {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.guest-ratings strong span {
  display: inline;
  font-size: 0.7em;
}

.guest-ratings > div > span {
  margin-top: 9px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-head,
.guest-moments-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(58px, 8vw, 100px);
  margin-bottom: 26px;
}

.review-head h3,
.guest-moments-head h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.review-controls {
  display: flex;
  gap: 8px;
}

.review-controls button {
  display: grid;
  width: 48px;
  min-height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease;
}

.review-controls button:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.review-viewport {
  overflow-x: auto;
  margin-right: calc((100vw - min(100vw - (var(--gutter) * 2), var(--container))) / -2);
  padding-right: var(--gutter);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-viewport::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.review-card {
  display: flex;
  flex: 0 0 min(420px, 74vw);
  min-height: 270px;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  padding: clamp(26px, 4vw, 38px);
}

.review-card p {
  margin-bottom: 34px;
  font-size: clamp(1.04rem, 1.7vw, 1.3rem);
  font-weight: 700;
  line-height: 1.45;
}

.review-card footer {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.guest-moments {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.guest-moment {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  margin: 0;
}

.guest-moment-wide {
  aspect-ratio: auto;
}

.guest-moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.guest-moment:hover img {
  transform: scale(1.035);
}

.featured-press {
  overflow: hidden;
  background: var(--green);
  padding-block: clamp(58px, 7vw, 94px);
}

.featured-press-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.featured-press-head .eyebrow {
  margin-bottom: 0;
  color: var(--ink);
}

.featured-press-head h2 {
  margin-bottom: 0;
}

.press-marquee {
  overflow: hidden;
}

.press-marquee-track {
  display: flex;
  width: max-content;
  animation: press-marquee 44s linear infinite;
}

.press-logo-group {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding-right: 14px;
}

.press-logo-group img {
  width: clamp(150px, 15vw, 210px);
  height: 104px;
  flex: 0 0 auto;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 12px;
  background: var(--white);
  object-fit: contain;
  padding: 18px 22px;
}

@keyframes press-marquee {
  to {
    transform: translateX(-50%);
  }
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}

.process-step {
  counter-increment: process;
  border-top: 4px solid var(--ink);
  padding-top: 20px;
}

.process-step::before {
  display: block;
  margin-bottom: 28px;
  color: var(--green-dark);
  content: "0" counter(process);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.app-badges img {
  width: auto;
  height: 50px;
  border-radius: 7px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 24px;
}

.map-panel {
  position: sticky;
  top: 104px;
  min-height: 640px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, transparent 49%, rgba(21, 21, 21, 0.08) 50%, transparent 51%) 0 0 / 96px 96px,
    linear-gradient(transparent 49%, rgba(21, 21, 21, 0.08) 50%, transparent 51%) 0 0 / 96px 96px,
    #dce3d0;
}

.map-panel::before,
.map-panel::after {
  position: absolute;
  border: 16px solid rgba(255, 255, 255, 0.72);
  border-radius: 48%;
  content: "";
}

.map-panel::before {
  inset: 12% -18% 22% 8%;
  transform: rotate(24deg);
}

.map-panel::after {
  inset: 44% 24% -22% -14%;
  transform: rotate(-16deg);
}

.map-label {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  max-width: 270px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 18px;
  box-shadow: var(--shadow);
}

.map-pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--green);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.map-pin span {
  transform: rotate(45deg);
  font-size: 0.7rem;
  font-weight: 900;
}

.map-pin:nth-of-type(2) { top: 31%; left: 56%; }
.map-pin:nth-of-type(3) { top: 54%; left: 28%; }
.map-pin:nth-of-type(4) { top: 64%; left: 67%; }
.map-pin:nth-of-type(5) { top: 78%; left: 47%; }

.location-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}

.field,
.select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 18px;
}

.location-list {
  display: grid;
  max-height: 720px;
  gap: 12px;
  overflow-y: auto;
  padding-right: 6px;
}

.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.location-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.location-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.location-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-empty {
  display: none;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.placeholder {
  border: 1px dashed var(--green-dark);
  border-radius: var(--radius-sm);
  background: rgba(201, 219, 66, 0.18);
  padding: 12px 14px;
  color: #3e4508;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding-block: clamp(64px, 9vw, 110px) 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.7fr));
  gap: clamp(34px, 5vw, 80px);
}

.footer-brand img {
  width: 180px;
}

.footer-brand p {
  max-width: 330px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line-dark);
  margin-top: 64px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 104px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    justify-content: stretch;
    overflow-y: auto;
    background: var(--ink);
    padding: 30px var(--gutter) 60px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    border-bottom: 1px solid var(--line-dark);
    padding: 18px 0;
    font-size: clamp(1.25rem, 5vw, 2.3rem);
  }

  .nav-links a::after {
    display: none;
  }

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

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

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

  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-panel {
    position: relative;
    top: 0;
    min-height: 480px;
  }

  .location-list {
    max-height: none;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  html {
    scroll-padding-top: 96px;
  }

  .announcement {
    padding-block: 7px;
    font-size: 0.66rem;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 132px;
  }

  .nav-links {
    top: 94px;
  }

  .hero,
  .hero-content {
    min-height: calc(100svh - 94px);
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.1) 84%);
  }

  .hero-content {
    align-items: end;
    padding-block: 68px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5.4rem);
  }

  .page-hero-grid,
  .split,
  .split-wide,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-block: 74px;
  }

  .page-hero-image {
    aspect-ratio: 5 / 4;
    transform: none;
  }

  .section-head {
    display: block;
  }

  .section-head .button {
    margin-top: 12px;
  }

  .card-grid,
  .card-grid-2,
  .card-grid-4,
  .menu-grid,
  .metric-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    gap: 1px;
  }

  .metric {
    padding: 28px var(--gutter);
  }

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

  .gallery img:first-child {
    grid-column: 1 / -1;
  }

  .gallery img {
    min-height: 240px;
  }

  body[data-page="menu"] .hero img {
    object-position: 68% center;
  }

  body[data-page="events"] .hero img {
    object-position: 61% center;
  }

  .guest-ratings > div {
    min-height: 112px;
    padding: 18px 10px;
  }

  .review-head,
  .guest-moments-head,
  .featured-press-head {
    align-items: start;
  }

  .guest-moments {
    grid-template-columns: 1fr 1fr;
  }

  .guest-moment-wide {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .press-logo-group img {
    width: 148px;
    height: 82px;
    padding: 14px 18px;
  }

  .tabs {
    top: 68px;
  }

  .location-tools {
    grid-template-columns: 1fr;
  }

  .map-panel {
    min-height: 390px;
  }

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

  .footer-bottom {
    display: block;
  }

  .button-row .button {
    flex: 1 1 100%;
  }
}

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

  h2 {
    font-size: 2.35rem;
  }

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

  .gallery img:first-child {
    grid-column: auto;
  }

  .review-head,
  .featured-press-head {
    display: block;
  }

  .review-controls {
    margin-top: 18px;
  }

  .guest-moments {
    grid-template-columns: 1fr;
  }

  .guest-moment-wide {
    grid-column: auto;
  }

  .card-body,
  .feature-card,
  .menu-item,
  .location-card {
    padding: 21px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .press-marquee-track {
    animation: none;
  }
}

/* Shared product detail renderer */
.product-page {
  overflow: hidden;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-breadcrumbs a {
  text-decoration: none;
}

.product-breadcrumbs a:hover {
  text-decoration: underline;
}

.product-hero {
  padding-block: clamp(38px, 5vw, 72px) clamp(72px, 8vw, 116px);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
}

.product-carousel {
  min-width: 0;
}

.product-carousel-viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-deep);
  aspect-ratio: 1 / 1;
  touch-action: pan-y;
}

.product-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  margin: 0;
  background: var(--paper-deep);
}

.product-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 52px;
  min-height: 52px;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform 180ms ease, background-color 180ms ease;
}

.product-carousel-arrow:hover {
  transform: translateY(-50%) scale(1.06);
  background: var(--white);
}

.product-carousel-prev {
  left: 18px;
}

.product-carousel-next {
  right: 18px;
}

.product-carousel-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.product-carousel-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.product-carousel-thumb {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--paper-deep);
  padding: 0;
  cursor: pointer;
}

.product-carousel-thumb::after {
  position: absolute;
  inset: 0;
  background: rgba(21, 21, 21, 0.2);
  content: "";
  transition: opacity 180ms ease;
}

.product-carousel-thumb.is-active {
  border-color: var(--ink);
}

.product-carousel-thumb.is-active::after,
.product-carousel-thumb:hover::after {
  opacity: 0;
}

.product-carousel-thumb img {
  width: 100%;
  height: 92px;
  object-fit: cover;
}

.product-carousel-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.product-carousel-dot {
  width: 8px;
  min-height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.25);
  padding: 0;
  transition: width 180ms ease, background-color 180ms ease;
}

.product-carousel-dot.is-active {
  width: 28px;
  background: var(--ink);
}

.product-summary {
  position: sticky;
  top: 126px;
  padding-top: 12px;
}

.product-summary h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 6vw, 6.65rem);
}

.product-subtitle {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.product-price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  padding-block: 22px;
  border-block: 1px solid var(--line);
}

.product-price {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.product-availability {
  margin: 0;
  border-radius: 999px;
  background: var(--green);
  padding: 7px 12px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.product-actions .button {
  width: 100%;
}

.product-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: start;
}

.product-story-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
}

.product-story-copy p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
}

.product-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--line-dark);
}

.product-fact {
  min-height: 148px;
  background: var(--ink);
  padding: clamp(22px, 3vw, 34px);
}

.product-fact dt {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-fact dd {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.2;
}

.product-feature-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.product-feature-list li {
  position: relative;
  padding: 16px 0 16px 30px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.82);
}

.product-feature-list li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.product-related .section-head {
  align-items: end;
}

.product-related .card-media {
  background: var(--paper-deep);
}

.product-related .card-media img {
  object-fit: contain;
  padding: 20px;
}

.product-error {
  min-height: 55vh;
  display: grid;
  place-items: center;
  text-align: center;
}

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

  .product-summary {
    position: static;
    padding-top: 0;
  }

  .product-story-grid {
    grid-template-columns: 1fr;
  }

  .product-facts {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .product-hero {
    padding-top: 28px;
  }

  .product-carousel-arrow {
    width: 44px;
    min-height: 44px;
  }

  .product-carousel-prev {
    left: 12px;
  }

  .product-carousel-next,
  .product-carousel-count {
    right: 12px;
  }

  .product-carousel-count {
    bottom: 12px;
  }

  .product-carousel-thumbs {
    display: none;
  }

  .product-carousel-dots {
    display: flex;
  }

  .product-actions,
  .product-facts {
    grid-template-columns: 1fr;
  }

  .product-fact {
    min-height: auto;
  }
}
