:root {
  --paper: #eceadf;
  --paper-deep: #dfdccd;
  --ink: #1c1518;
  --muted: #655f59;
  --red: #b04436;
  --line: rgba(28, 21, 24, 0.45);
  --white: #f8f5e9;
  --header-height: 150px;
  --gutter: clamp(18px, 3.2vw, 58px);
  --narrow: 780px;
  --ease: 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.42;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, var(--ink) 3px);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  border-radius: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:active,
.solid-button:active,
a:active {
  transform: translateY(1px);
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2,
h3,
.wordmark,
.primary-nav,
.footer-label,
.eyebrow,
.tab-strip,
.section-rule,
label {
  font-stretch: condensed;
  text-transform: uppercase;
  letter-spacing: 2px;
}

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  height: var(--header-height);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.masthead {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  height: 96px;
  padding: 0 30px;
}

.wordmark {
  justify-self: start;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(50px, 4.95vw, 84px);
  line-height: 0.9;
  letter-spacing: 1px;
}

.masthead-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 9px;
  font-style: italic;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.5px;
}

.masthead-tools {
  display: flex;
  flex-direction: column;
  justify-self: end;
  align-items: flex-end;
  gap: 14px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.masthead-tools > a {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
}

.social-tools {
  display: flex;
  gap: 10px;
}

.social-tools a,
.social-tools svg {
  width: 15px;
  height: 15px;
}

.social-tools svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.social-tools path {
  fill: currentColor;
  stroke: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 30px;
  gap: clamp(22px, 2.1vw, 40px);
  border-top: 1px solid rgba(28, 21, 24, 0.28);
  font-size: 13px;
  font-weight: 700;
}

.primary-nav > a {
  display: inline-flex;
  align-items: center;
  height: 54px;
  white-space: nowrap;
  transition: color var(--ease);
}

.primary-nav > a:hover {
  color: var(--red);
}

.book-link {
  margin-left: auto;
  color: var(--red);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.carousel {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.carousel-stage {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 700ms ease, transform 1200ms cubic-bezier(0.16, 1, 0.3, 1), visibility 700ms;
}

.carousel-slide.is-active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  place-items: center;
  font-size: 31px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background var(--ease);
}

.carousel-arrow:hover {
  background: rgba(28, 21, 24, 0.42);
}

.carousel-prev { left: 10px; }
.carousel-next { right: 10px; }

.carousel-dots {
  position: absolute;
  right: 18px;
  bottom: 13px;
  z-index: 3;
  display: flex;
  gap: 7px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 1px solid var(--white);
  background: transparent;
  cursor: pointer;
}

.carousel-dot.is-active { background: var(--white); }

.home-hero {
  height: clamp(560px, 44.45vw, 752px);
}

.home-hero .carousel-slide::after,
.detail-carousel .carousel-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(28, 21, 24, 0.18), transparent 50%, rgba(28, 21, 24, 0.05));
}

.offer-card {
  position: absolute;
  top: 179px;
  right: 42px;
  z-index: 4;
  width: 246px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.offer-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  padding: 0 12px;
  border-bottom: 1px solid var(--ink);
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.offer-card-stage {
  height: 380px;
  overflow: hidden;
}

.offer-state[hidden] { display: none; }

.offer-state > img { height: 200px; }

.offer-card-copy {
  display: grid;
  gap: 6px;
  padding: 12px 14px 14px;
}

.offer-card-copy p,
.offer-card-copy a {
  color: var(--red);
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.offer-card-copy h1 {
  font-size: 16px;
  line-height: 1.1;
}

.offer-card-copy span {
  font-family: Georgia, serif;
  font-size: 9px;
  line-height: 1.4;
}

.offer-card-copy a { text-decoration: underline; }

.offer-controls {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  height: 35px;
  border-top: 1px solid var(--ink);
}

.offer-controls > button {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.offer-controls > button:first-child { border-right: 1px solid var(--ink); }
.offer-controls > button:last-child { border-left: 1px solid var(--ink); }

.offer-controls > div {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.offer-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}

.offer-dot.is-active { background: var(--ink); }

.home-section-group,
.home-anchor { scroll-margin-top: var(--header-height); }

.home-anchor { height: 0; }

.quote-strip {
  display: grid;
  min-height: 138px;
  padding: 30px var(--gutter);
  place-content: center;
  text-align: center;
}

.quote-strip p {
  max-width: 920px;
  font-family: Georgia, serif;
  font-size: 13px;
  font-style: italic;
}

.quote-strip span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.feature-carousel {
  height: clamp(520px, 44.45vw, 752px);
}

.media-title {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  color: var(--white);
  place-items: center;
  font-size: clamp(38px, 5.2vw, 84px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 7px;
  text-shadow: 0 1px 5px rgba(28, 21, 24, 0.34);
  pointer-events: none;
}

.tab-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px var(--gutter);
  gap: clamp(15px, 2vw, 34px);
  border-bottom: 1px solid rgba(28, 21, 24, 0.25);
  background: var(--paper);
  font-size: 11px;
  font-weight: 700;
}

.tab-strip button,
.tab-strip a {
  padding: 0;
  border: 0;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
}

.tab-strip button:hover,
.tab-strip button[aria-selected="true"],
.tab-strip a:hover,
.tab-strip a.is-active {
  color: var(--red);
}

.narrative-band {
  display: grid;
  min-height: 120px;
  padding: 26px var(--gutter) 30px;
  place-content: center;
  text-align: center;
}

.narrative-band p {
  max-width: 1040px;
  font-family: Georgia, serif;
  font-size: 11px;
  line-height: 1.55;
}

.narrative-band a,
.text-link {
  margin-top: 10px;
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.adventure-section {
  padding: 50px clamp(24px, 8.2vw, 140px) 62px;
}

.section-rule {
  display: flex;
  justify-content: space-between;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
}

.section-rule a { color: var(--red); }

.adventure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-top: 22px;
}

.activity-carousel-shell {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  margin: 22px -52px 0;
}

.activity-viewport {
  overflow: hidden;
}

.activity-track {
  --activity-columns: 4;
  --activity-gap: 30px;
  display: flex;
  column-gap: var(--activity-gap);
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.activity-track .adventure-item {
  flex: 0 0 100%;
}

.activity-arrow {
  display: grid;
  width: 42px;
  height: 54px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  place-items: center;
  font-size: 25px;
  cursor: pointer;
}

.activity-arrow:hover { color: var(--red); }

.activity-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 1.5px;
}

.activity-page-buttons { display: flex; gap: 7px; }
.activity-page-buttons button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
}
.activity-page-buttons button.is-active { background: var(--ink); }

.adventure-item img {
  aspect-ratio: 1 / 1;
  filter: saturate(0.72) contrast(0.96);
}

.adventure-item h2 {
  margin-top: 17px;
  font-size: 18px;
  line-height: 1.05;
}

.adventure-item h3 {
  margin-top: 5px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.15;
}

.adventure-item p {
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 11px;
}

.food-carousel,
.gather-carousel { height: clamp(520px, 44.45vw, 752px); }

.venue-copy {
  display: grid;
  justify-items: center;
  min-height: 380px;
  padding: 54px var(--gutter);
  text-align: center;
}

.eyebrow {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
}

.venue-copy h2 {
  margin-top: 8px;
  font-size: 22px;
}

.venue-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-family: Georgia, serif;
  font-size: 12px;
}

.inline-actions {
  display: flex;
  margin-top: 24px;
  gap: 24px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.menu-hours {
  display: grid;
  grid-template-columns: 1fr 210px;
  width: min(650px, 100%);
  margin-top: 30px;
  gap: 34px;
  align-items: center;
}

.menu-hours nav {
  display: grid;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}

.menu-hours nav a:hover { color: var(--red); }

.menu-hours > div {
  display: grid;
  padding: 18px;
  gap: 7px;
  border: 1px solid var(--ink);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.page-heading,
.editorial-heading {
  display: grid;
  min-height: 170px;
  padding: 36px var(--gutter);
  place-content: center;
  text-align: center;
}

.page-heading p,
.editorial-heading > p {
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
}

.page-heading h1,
.editorial-heading h1 {
  margin-top: 5px;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: 1;
}

.detail-carousel { height: clamp(520px, 44.45vw, 752px); }

.sibling-tabs {
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}

.detail-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  padding: 75px clamp(34px, 10vw, 170px) 86px;
  gap: clamp(50px, 8vw, 140px);
  border-bottom: 1px solid var(--ink);
}

.detail-copy h2 {
  max-width: 660px;
  margin-top: 10px;
  font-size: clamp(24px, 2.4vw, 40px);
  line-height: 1.14;
}

.detail-copy > div:nth-child(2) > p {
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.65;
}

.detail-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.detail-copy li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(28, 21, 24, 0.3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(200px, 0.65fr) minmax(0, 2fr);
  align-items: end;
  padding: 48px var(--gutter) 55px;
  gap: 40px;
  background: var(--paper-deep);
}

.booking-band h2 {
  margin-top: 6px;
  font-size: 22px;
}

.booking-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr auto;
  align-items: end;
  gap: 12px;
}

.field,
.inquiry-band form {
  display: grid;
  gap: 7px;
}

label {
  font-size: 9px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
}

input,
select { height: 44px; padding: 0 11px; }
textarea { padding: 11px; resize: vertical; }

.date-input-wrap {
  position: relative;
  display: block;
}

.date-input-wrap input {
  padding-right: 42px;
  font-size: 12px;
  letter-spacing: 1px;
}

.date-input-wrap input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.date-input-wrap svg {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transform: translateY(-50%);
  pointer-events: none;
}

.solid-button {
  min-height: 44px;
  padding: 10px 22px;
  border: 1px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: color var(--ease), background var(--ease);
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 17px;
  color: var(--red);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(160px, 13vw);
  gap: 1px;
  background: var(--ink);
}

.gallery-cell { grid-column: span 4; }
.gallery-cell-1,
.gallery-cell-5 { grid-column: span 7; grid-row: span 2; }
.gallery-cell-2 { grid-column: span 5; grid-row: span 2; }
.gallery-cell-3 { grid-column: span 5; }
.gallery-cell-4 { grid-column: span 3; }
.gallery-copy { border-top: 1px solid var(--ink); }

.editorial-heading {
  min-height: 300px;
  border-bottom: 1px solid var(--ink);
}

.editorial-heading > span {
  max-width: 580px;
  margin: 20px auto 0;
  font-family: Georgia, serif;
  font-size: 13px;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 60px clamp(24px, 8.2vw, 140px) 90px;
  gap: 54px 30px;
}

.explore-item img { aspect-ratio: 1 / 1; filter: saturate(0.75); }
.explore-item h2 { margin-top: 16px; font-size: 18px; line-height: 1.08; }
.explore-item h3 { margin-top: 4px; color: var(--red); font-size: 12px; }
.explore-item p { margin-top: 11px; font-family: Georgia, serif; font-size: 11px; }
.explore-item a { display: inline-block; margin-top: 10px; font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; }

.map-band {
  display: grid;
  min-height: 360px;
  padding: 60px var(--gutter);
  color: var(--paper);
  background: var(--ink);
  place-content: center;
  text-align: center;
}

.map-band span { color: #ca6757; text-transform: uppercase; letter-spacing: 2px; }
.map-band h2 { max-width: 800px; margin-top: 16px; font-size: clamp(28px, 3.5vw, 54px); line-height: 1.1; }
.map-band p { max-width: 580px; margin: 22px auto 0; font-family: Georgia, serif; color: #c9c4b7; }

.venue-intro {
  display: grid;
  min-height: 300px;
  padding: 50px var(--gutter);
  place-content: center;
  text-align: center;
}

.venue-intro h2 { max-width: 760px; margin: 8px auto 0; font-size: clamp(26px, 3vw, 48px); }
.venue-intro > p:last-child { max-width: 700px; margin: 18px auto 0; font-family: Georgia, serif; font-size: 13px; }

.menu-ledger {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.menu-ledger > div { min-height: 300px; padding: 48px var(--gutter); border-right: 1px solid var(--ink); }
.menu-ledger > div:last-child { border-right: 0; }
.menu-ledger h2 { margin-top: 8px; font-size: 30px; }
.menu-ledger div > p:last-child { margin-top: 20px; font-family: Georgia, serif; font-size: 13px; line-height: 1.6; }

.hours-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  padding: 42px var(--gutter);
  gap: 30px;
}

.hours-band > div { display: grid; gap: 4px; text-transform: uppercase; letter-spacing: 1.3px; }
.hours-band > div span { color: var(--red); font-size: 9px; }
.hours-band a { padding: 15px 20px; border: 1px solid var(--ink); text-transform: uppercase; letter-spacing: 1.3px; }

.gather-spaces article {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  min-height: 500px;
  border-top: 1px solid var(--ink);
}

.gather-spaces article:nth-child(even) { grid-template-columns: 1fr 1.5fr; }
.gather-spaces article:nth-child(even) > img { order: 2; }
.gather-spaces article > div { display: grid; padding: 70px var(--gutter); place-content: center; }
.gather-spaces h2 { margin-top: 8px; font-size: 35px; }
.gather-spaces article > div > p:last-child { max-width: 420px; margin-top: 20px; font-family: Georgia, serif; font-size: 13px; }

.inquiry-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  padding: 80px clamp(28px, 10vw, 170px);
  gap: clamp(45px, 9vw, 140px);
  background: var(--paper-deep);
}

.inquiry-band h2 { max-width: 480px; margin-top: 8px; font-size: clamp(28px, 3.5vw, 50px); line-height: 1.12; }
.inquiry-band form { grid-template-columns: 1fr; }
.inquiry-band .solid-button { justify-self: start; margin-top: 8px; }

.event-ledger { border-bottom: 1px solid var(--ink); }
.event-ledger article {
  display: grid;
  grid-template-columns: 120px minmax(260px, 1.1fr) minmax(240px, 1.5fr) 40px;
  align-items: center;
  min-height: 145px;
  padding: 20px var(--gutter);
  gap: 32px;
  border-top: 1px solid var(--ink);
}
.event-ledger time { color: var(--red); font-weight: 700; letter-spacing: 2px; }
.event-ledger h2 { font-size: 22px; }
.event-ledger h3 { margin-top: 3px; color: var(--red); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; }
.event-ledger p { font-family: Georgia, serif; font-size: 12px; }
.event-ledger a { font-size: 24px; }
.art-feature { padding-top: 70px; }

.art-experience-page {
  background: var(--paper);
}

.art-experience-hero {
  height: 562px;
  margin: 0 10px;
  overflow: hidden;
  background: #bcbbb2;
}

.art-experience-hero img {
  object-position: center;
}

.art-experience-listing {
  padding: 98px 63px 120px;
}

.art-experience-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.art-experience-heading h1 {
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.art-experience-filters {
  display: flex;
  align-items: center;
  gap: 8px;
}

.art-experience-filters button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #8d8b83;
  color: var(--ink);
  background: transparent;
  font-family: Georgia, serif;
  font-size: 14px;
  cursor: pointer;
}

.art-experience-filters button:first-child {
  min-width: 98px;
  gap: 10px;
}

.art-experience-filters button:hover,
.art-experience-filters button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--ink);
}

.art-experience-filters svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.art-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 43px;
  gap: 54px 36px;
}

.art-experience-card[hidden] { display: none; }

.art-experience-card img {
  aspect-ratio: 1.2 / 1;
}

.art-experience-card > div {
  padding-top: 15px;
}

.art-experience-card h2 {
  font-size: 18px;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: 0;
}

.art-experience-card p {
  margin-top: 7px;
  font-family: Georgia, serif;
  font-size: 13px;
}

.info-heading { min-height: 340px; }
.info-layout { display: grid; grid-template-columns: 260px 1fr; padding: 0 var(--gutter) 100px; gap: clamp(50px, 8vw, 130px); }
.info-layout > aside { display: flex; flex-direction: column; align-items: flex-start; padding-top: 44px; gap: 12px; font-size: 10px; text-transform: uppercase; letter-spacing: 1.4px; }
.info-layout > aside span { margin-bottom: 17px; color: var(--red); }
.info-layout > aside a { border-bottom: 1px solid var(--ink); }
.info-content { border-top: 1px solid var(--ink); }
.info-content article {
  display: grid;
  grid-template-columns: 55px 1fr;
  padding: 42px 0 48px;
  border-bottom: 1px solid var(--ink);
}
.info-content article > span,
.faq-list summary > span { color: var(--red); font-weight: 700; }
.info-content h2 { font-size: 25px; }
.info-content h3 { margin-top: 6px; color: var(--red); font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; }
.info-content article p { max-width: 720px; margin-top: 18px; font-family: Georgia, serif; font-size: 13px; line-height: 1.7; }
.info-content article a { display: inline-block; margin-top: 19px; color: var(--red); font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { display: grid; grid-template-columns: 55px 1fr 25px; align-items: center; min-height: 95px; padding: 20px 0; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary h2 { font-size: 20px; }
.faq-list summary i { font-style: normal; font-size: 22px; transition: transform var(--ease); }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { max-width: 760px; padding: 0 55px 38px; font-family: Georgia, serif; font-size: 13px; line-height: 1.7; }

.shop-hero {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 620px;
  border-bottom: 1px solid var(--ink);
}

.shop-hero > div {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 70px clamp(36px, 7vw, 120px);
}

.shop-hero h1 {
  max-width: 520px;
  margin-top: 10px;
  font-size: clamp(48px, 6.3vw, 96px);
  line-height: 0.92;
}

.shop-hero > div > p:not(.eyebrow) {
  max-width: 430px;
  margin-top: 25px;
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.65;
}

.shop-hero > div > a {
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.shop-catalog {
  padding: 75px clamp(24px, 7.2vw, 122px) 90px;
}

.shop-catalog-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding-bottom: 25px;
  gap: 35px;
  border-bottom: 1px solid var(--ink);
}

.shop-catalog-head h2 {
  max-width: 640px;
  margin-top: 8px;
  font-size: clamp(27px, 3vw, 46px);
  line-height: 1.08;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 18px;
}

.shop-filters button {
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  cursor: pointer;
}

.shop-filters button:hover,
.shop-filters button.is-active { color: var(--red); border-color: currentColor; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 34px;
  gap: 50px 24px;
}

.product-item[hidden] { display: none; }
.product-item img { aspect-ratio: 1 / 1.12; }
.product-meta { display: flex; justify-content: space-between; margin-top: 14px; color: var(--red); font-size: 9px; text-transform: uppercase; letter-spacing: 1.3px; }
.product-item h3 { margin-top: 7px; font-size: 18px; }
.product-item > p { min-height: 48px; margin-top: 9px; font-family: Georgia, serif; font-size: 11px; line-height: 1.5; }
.product-item > button { display: flex; justify-content: space-between; width: 100%; margin-top: 14px; padding: 9px 0; border: 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: transparent; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; cursor: pointer; }
.product-item > button:hover,
.product-item > button.is-selected { color: var(--red); }
.shop-status { min-height: 18px; margin-top: 30px; color: var(--red); font-size: 9px; text-align: right; text-transform: uppercase; letter-spacing: 1.2px; }

.shop-note {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 560px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.shop-note > div { display: grid; padding: 65px var(--gutter); place-content: center; }
.shop-note h2 { max-width: 480px; margin-top: 9px; font-size: clamp(30px, 3.5vw, 54px); line-height: 1.08; }
.shop-note > div > p:last-child { max-width: 460px; margin-top: 23px; font-family: Georgia, serif; font-size: 13px; line-height: 1.7; }

.gift-card-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 80px clamp(28px, 10vw, 170px);
  gap: clamp(45px, 9vw, 140px);
  background: var(--paper-deep);
}
.gift-card-band h2 { max-width: 460px; margin-top: 8px; font-size: clamp(32px, 4vw, 58px); line-height: 1.08; }
.gift-card-band > div > p:last-child { max-width: 420px; margin-top: 20px; font-family: Georgia, serif; font-size: 13px; line-height: 1.7; }
.gift-card-band form { display: grid; gap: 8px; }
.gift-card-band .solid-button { justify-self: start; margin-top: 8px; }

.site-footer {
  padding: 55px var(--gutter) 24px;
  color: var(--paper);
  background: var(--ink);
}

.footer-wordmark {
  padding-bottom: 33px;
  border-bottom: 1px solid rgba(236, 234, 223, 0.35);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(60px, 11.5vw, 190px);
  line-height: 0.78;
  letter-spacing: 1px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  padding: 40px 0 52px;
  gap: 50px;
}

.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-label { margin-bottom: 8px; color: #d46a59; font-size: 10px; font-weight: 700; }
.footer-grid p:not(.footer-label) { max-width: 260px; color: #c9c4b7; font-family: Georgia, serif; font-size: 11px; }
.footer-grid a { color: #dfdace; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.footer-grid a:hover { color: #d46a59; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(236, 234, 223, 0.35); color: #9f998e; font-size: 9px; text-transform: uppercase; letter-spacing: 1.2px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 980px) {
  .masthead { grid-template-columns: 1.3fr 1fr 0.8fr; }
  .primary-nav { gap: 17px; font-size: 11px; }
  .explore-grid { grid-template-columns: repeat(3, 1fr); }
  .adventure-grid { gap: 18px; }
  .event-ledger article { grid-template-columns: 80px 1fr 1fr 30px; gap: 20px; }
}

@media (max-width: 760px) {
  :root { --header-height: 78px; --gutter: 18px; }
  body { font-size: 13px; }
  .site-header { height: auto; min-height: var(--header-height); }
  .masthead { display: grid; grid-template-columns: 1fr auto; height: 78px; padding: 0 18px; }
  .wordmark { font-size: 42px; }
  .masthead-meta,
  .masthead-tools,
  .primary-nav { display: none; }
  .menu-toggle { display: flex; align-items: center; gap: 11px; padding: 10px 0; border: 0; color: var(--ink); background: transparent; text-transform: uppercase; letter-spacing: 1.5px; cursor: pointer; }
  .menu-toggle-label { font-size: 10px; font-weight: 700; }
  .menu-toggle-lines { display: grid; width: 22px; gap: 5px; }
  .menu-toggle-lines i { display: block; height: 1px; background: currentColor; transition: transform var(--ease); }
  .menu-open .menu-toggle-lines i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-open .menu-toggle-lines i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .mobile-nav { display: grid; max-height: 0; overflow: hidden; padding: 0 18px; opacity: 0; border-top: 0 solid var(--ink); grid-template-columns: 1fr 1fr; gap: 0 18px; transition: max-height 500ms cubic-bezier(0.16, 1, 0.3, 1), opacity var(--ease), padding var(--ease), border-width var(--ease); }
  .menu-open .mobile-nav { max-height: 880px; padding-top: 21px; padding-bottom: 28px; border-top-width: 1px; opacity: 1; }
  .mobile-nav > a { padding: 8px 0; border-bottom: 1px solid rgba(28, 21, 24, 0.24); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
  .mobile-nav .book-link { margin: 13px 0 0; color: var(--paper); background: var(--red); padding: 12px; text-align: center; }

  .carousel-arrow { width: 44px; height: 44px; font-size: 24px; }
  .carousel-slide { transform: none; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
  .home-hero { height: min(690px, 76dvh); min-height: 540px; }
  .home-hero .carousel-slide img { object-position: center; }
  .offer-card { top: auto; right: 12px; bottom: 15px; width: 205px; }
  .offer-card-head { height: 31px; padding: 0 9px; font-size: 7px; }
  .offer-card-stage { height: 193px; }
  .offer-state > img { height: 104px; }
  .offer-card-copy { gap: 5px; padding: 9px 10px 11px; }
  .offer-card-copy p,
  .offer-card-copy a { font-size: 7px; letter-spacing: 1px; }
  .offer-card-copy h1 { font-size: 14px; }
  .offer-card-copy span { display: none; }
  .offer-controls { grid-template-columns: 32px 1fr 32px; height: 31px; }
  .quote-strip { min-height: 150px; padding: 27px 25px; }
  .feature-carousel,
  .food-carousel,
  .gather-carousel,
  .detail-carousel { height: 62vw; min-height: 330px; max-height: 460px; }
  .media-title { font-size: 37px; letter-spacing: 4px; }
  .tab-strip { justify-content: flex-start; min-height: 49px; overflow-x: auto; padding-right: 18px; padding-left: 18px; gap: 22px; scrollbar-width: none; }
  .narrative-band { min-height: 155px; padding: 28px 24px; }
  .adventure-section { padding: 38px 18px 50px; }
  .adventure-grid { grid-template-columns: 1fr; gap: 36px; }
  .activity-carousel-shell { grid-template-columns: 32px minmax(0, 1fr) 32px; margin: 20px -14px 0; }
  .activity-track { --activity-gap: 14px; }
  .activity-arrow { width: 32px; height: 48px; font-size: 21px; }
  .adventure-item { display: grid; grid-template-columns: 42% 1fr; column-gap: 17px; align-items: start; }
  .adventure-item img { grid-row: span 4; }
  .adventure-item h2 { margin-top: 0; font-size: 17px; }
  .adventure-item p { margin-top: 7px; }
  .venue-copy { min-height: 430px; padding: 42px 22px; }
  .venue-copy h2 { font-size: 21px; }
  .inline-actions { flex-direction: column; gap: 8px; }
  .menu-hours { grid-template-columns: 1fr; width: 100%; gap: 24px; }
  .menu-hours > div { width: 210px; justify-self: center; }
  .page-heading { min-height: 140px; padding: 28px 18px; }
  .page-heading h1,
  .editorial-heading h1 { font-size: 38px; overflow-wrap: anywhere; }
  .detail-copy { grid-template-columns: 1fr; padding: 45px 18px 55px; gap: 32px; }
  .detail-copy h2 { font-size: 27px; }
  .detail-copy > div:nth-child(2) > p { font-size: 13px; }
  .detail-copy ul { margin-top: 24px; }
  .booking-band { grid-template-columns: 1fr; padding: 40px 18px 45px; gap: 28px; }
  .booking-row { grid-template-columns: 1fr 1fr; }
  .booking-row .field:nth-child(3),
  .booking-row .solid-button { grid-column: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 44vw; }
  .gallery-cell,
  .gallery-cell-1,
  .gallery-cell-2,
  .gallery-cell-3,
  .gallery-cell-4,
  .gallery-cell-5 { grid-column: span 1; grid-row: span 1; }
  .gallery-cell:nth-child(3n + 1) { grid-column: 1 / -1; }
  .editorial-heading { min-height: 260px; padding: 40px 22px; }
  .explore-grid { grid-template-columns: 1fr; padding: 45px 18px 60px; gap: 42px; }
  .explore-item { display: grid; grid-template-columns: 43% 1fr; gap: 17px; }
  .explore-item img { grid-row: 1; }
  .explore-item h2 { margin-top: 0; }
  .map-band { min-height: 330px; padding: 50px 24px; }
  .venue-intro { min-height: 300px; padding: 45px 22px; }
  .menu-ledger { grid-template-columns: 1fr; }
  .menu-ledger > div { min-height: 240px; padding: 39px 22px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .menu-ledger > div:last-child { border-bottom: 0; }
  .hours-band { grid-template-columns: 1fr 1fr; padding: 36px 18px; gap: 24px 16px; }
  .hours-band a { grid-column: 1 / -1; text-align: center; }
  .gather-spaces article,
  .gather-spaces article:nth-child(even) { grid-template-columns: 1fr; min-height: auto; }
  .gather-spaces article > img,
  .gather-spaces article:nth-child(even) > img { order: 0; height: 68vw; }
  .gather-spaces article > div { min-height: 300px; padding: 45px 22px; }
  .inquiry-band { grid-template-columns: 1fr; padding: 55px 18px; gap: 36px; }
  .event-ledger article { grid-template-columns: 60px 1fr 24px; min-height: 170px; padding: 25px 18px; gap: 13px; }
  .event-ledger article p { grid-column: 2 / -1; }
  .art-experience-hero { height: 592px; margin: 0 10px; }
  .art-experience-listing { padding: 98px 12px 100px; }
  .art-experience-heading { display: block; }
  .art-experience-heading h1 { font-size: 25px; }
  .art-experience-filters { flex-wrap: wrap; margin-top: 16px; }
  .art-experience-filters button { padding: 0 14px; }
  .art-filter-music { display: none !important; }
  .art-experience-grid { grid-template-columns: 1fr; margin-top: 44px; gap: 46px; }
  .art-experience-card img { aspect-ratio: 1.16 / 1; }
  .info-heading { min-height: 280px; }
  .info-layout { grid-template-columns: 1fr; padding: 0 18px 65px; gap: 32px; }
  .info-layout > aside { display: none; }
  .info-content article { grid-template-columns: 38px 1fr; padding: 33px 0 38px; }
  .info-content h2 { font-size: 21px; }
  .faq-list summary { grid-template-columns: 38px 1fr 20px; min-height: 82px; }
  .faq-list summary h2 { font-size: 17px; }
  .faq-list details > p { padding: 0 0 32px 38px; }
  .shop-hero { grid-template-columns: 1fr; min-height: auto; }
  .shop-hero > div { min-height: 350px; padding: 54px 22px; }
  .shop-hero h1 { font-size: 54px; }
  .shop-hero > img { height: 82vw; max-height: 480px; }
  .shop-catalog { padding: 52px 18px 65px; }
  .shop-catalog-head { grid-template-columns: 1fr; align-items: start; gap: 25px; }
  .shop-filters { justify-content: flex-start; gap: 12px 18px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 42px 16px; }
  .product-item h3 { font-size: 16px; }
  .product-item > p { min-height: 65px; }
  .shop-note { grid-template-columns: 1fr; min-height: auto; }
  .shop-note > img { height: 78vw; max-height: 470px; }
  .shop-note > div { min-height: 360px; padding: 48px 22px; }
  .gift-card-band { grid-template-columns: 1fr; padding: 55px 18px; gap: 38px; }
  .site-footer { padding: 45px 18px 22px; }
  .footer-wordmark { font-size: 21vw; padding-bottom: 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 32px 0 38px; gap: 35px 22px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 410px) {
  .wordmark { font-size: 38px; }
  .art-experience-hero { height: 532px; }
  .art-experience-hero img { visibility: hidden; }
  .mobile-nav { grid-template-columns: 1.15fr 0.85fr; }
  .booking-row { grid-template-columns: 1fr; }
  .booking-row .field:nth-child(3),
  .booking-row .solid-button { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 70vw; }
  .gallery-cell:nth-child(3n + 1) { grid-column: auto; }
  .adventure-item,
  .explore-item { grid-template-columns: 40% 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-item > p { min-height: auto; }
}
