:root {
  --ink: #171513;
  --ink-soft: #292521;
  --paper: #f2ecdf;
  --paper-bright: #fbf6eb;
  --paper-deep: #ded3c0;
  --red: #6f151b;
  --red-dark: #3d0b0e;
  --gold: #b9904f;
  --gold-bright: #d5b775;
  --line: rgba(23, 21, 19, 0.17);
  --line-light: rgba(255, 255, 255, 0.16);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Century Gothic", "Trebuchet MS", sans-serif;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

::selection {
  background: var(--red);
  color: var(--paper-bright);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--paper-bright);
  color: var(--ink);
  padding: 12px 18px;
  border: 2px solid var(--ink);
}

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

.topline {
  min-height: 30px;
  padding: 6px clamp(18px, 4vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: var(--red);
  color: var(--paper-bright);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-header {
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 236, 223, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  line-height: 0.8;
  text-decoration: none;
}

.wordmark small {
  display: block;
  margin-top: 9px;
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wordmark-v {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 26px;
  font-style: italic;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a,
.header-call {
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  height: 1px;
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--red);
  content: "";
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 50px;
  padding: 14px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-bright);
  background: var(--gold-bright);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--paper-bright);
  background: var(--paper-bright);
}

.button-small {
  min-height: 42px;
  padding: 12px 19px;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.58);
  background: transparent;
  color: var(--paper-bright);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
}

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: var(--paper-bright);
}

.button-row {
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "↗";
  font-size: 17px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translate(3px, -3px);
}

.text-link.light {
  color: var(--paper-bright);
}

.hero {
  min-height: calc(100svh - 108px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(540px, 1.06fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 24% 15%, rgba(185, 144, 79, 0.13), transparent 26%),
    var(--ink);
  color: var(--paper-bright);
}

.hero-copy {
  padding: clamp(80px, 10vw, 150px) clamp(28px, 7vw, 112px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-copy::before {
  width: 1px;
  height: 120px;
  position: absolute;
  left: clamp(18px, 4vw, 64px);
  top: 0;
  background: var(--gold);
  content: "";
}

.hero .eyebrow {
  color: var(--gold-bright);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 5.8vw, 104px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 32px 0 0;
  color: rgba(251, 246, 235, 0.72);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.45;
}

.hero-proof {
  max-width: 620px;
  margin-top: clamp(56px, 8vw, 96px);
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero-proof div {
  padding-right: 18px;
}

.hero-proof strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.hero-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(251, 246, 235, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual {
  min-height: calc(100svh - 108px);
  position: relative;
  background: var(--red-dark);
}

.hero-main-photo {
  height: 100%;
  margin: 0;
  position: absolute;
  inset: 0 12% 0 0;
  overflow: hidden;
}

.hero-main-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.55), transparent 34%),
    linear-gradient(0deg, rgba(23, 21, 19, 0.4), transparent 35%);
  content: "";
}

.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.82) contrast(1.04);
}

.hero-detail-photo {
  width: 31%;
  aspect-ratio: 0.73;
  margin: 0;
  position: absolute;
  right: 2%;
  bottom: 5%;
  z-index: 3;
  border: 10px solid var(--paper);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  transform: rotate(2deg);
}

.hero-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-stamp {
  width: 104px;
  height: 104px;
  padding: 14px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 8%;
  right: 5%;
  z-index: 4;
  border: 1px solid var(--gold-bright);
  border-radius: 50%;
  background: rgba(23, 21, 19, 0.78);
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1;
  text-align: center;
  transform: rotate(9deg);
}

.marquee {
  padding: 17px clamp(18px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  background: var(--red);
  color: var(--paper-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee i {
  color: var(--gold-bright);
  font-size: 8px;
  font-style: normal;
}

.section-pad {
  padding: clamp(82px, 10vw, 150px) clamp(22px, 6vw, 90px);
}

.section-intro {
  max-width: 720px;
}

.section-intro h2,
.split-copy h2,
.events-copy h2,
.trust-head h2,
.visit-copy h2,
.footer-lead h2,
.content-section h2,
.page-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-intro > p:last-child {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(23, 21, 19, 0.68);
  font-size: 17px;
}

.story-section {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.story-number {
  position: absolute;
  top: 60px;
  right: 8%;
  color: rgba(111, 21, 27, 0.08);
  font-family: var(--serif);
  font-size: clamp(160px, 24vw, 360px);
  line-height: 1;
}

.story-cards {
  margin-top: clamp(58px, 8vw, 110px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-cards article {
  min-height: 370px;
  padding: 38px clamp(24px, 3vw, 48px) 44px;
  position: relative;
  border-right: 1px solid var(--line);
}

.story-cards article:first-child {
  padding-left: 0;
}

.story-cards article:last-child {
  padding-right: 0;
  border-right: 0;
}

.story-cards article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.story-cards h3 {
  margin: 54px 0 20px;
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 400;
}

.story-cards p {
  color: rgba(23, 21, 19, 0.65);
}

.story-cards a {
  position: absolute;
  bottom: 40px;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.services-section {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 35%),
    var(--ink-soft);
  color: var(--paper-bright);
}

.services-section .section-intro {
  max-width: 900px;
}

.services-section .eyebrow {
  color: var(--gold-bright);
}

.services-section .section-intro > p:last-child {
  color: rgba(251, 246, 235, 0.58);
}

.service-list {
  max-width: var(--max);
  margin: 64px auto 0;
  border-top: 1px solid var(--line-light);
}

.service-row {
  min-height: 132px;
  padding: 25px 8px;
  display: grid;
  grid-template-columns: 58px 1fr 48px;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-light);
  color: var(--paper-bright);
  text-decoration: none;
  transition:
    background 180ms ease,
    padding 180ms ease;
}

.service-row:hover,
.service-row:focus-visible {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.service-number {
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.service-row h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 400;
}

.service-row p {
  max-width: 680px;
  margin: 6px 0 0;
  color: rgba(251, 246, 235, 0.55);
  font-size: 14px;
}

.service-arrow {
  color: var(--gold-bright);
  font-size: 26px;
  text-align: right;
}

.center-action {
  margin-top: 50px;
  text-align: center;
}

.services-section .button-dark {
  border-color: var(--gold-bright);
  background: transparent;
}

.services-section .button-dark:hover {
  background: var(--gold-bright);
  color: var(--ink);
}

.split-feature {
  min-height: 830px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  background: var(--red-dark);
  color: var(--paper-bright);
}

.split-media {
  min-height: 720px;
  position: relative;
  overflow: hidden;
}

.split-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(61, 11, 14, 0.72));
  content: "";
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.03);
}

.vertical-caption {
  position: absolute;
  bottom: 32px;
  left: 28px;
  z-index: 2;
  color: var(--paper-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.split-copy {
  padding: clamp(70px, 8vw, 130px) clamp(32px, 7vw, 100px);
  align-self: center;
}

.split-copy .eyebrow {
  color: var(--gold-bright);
}

.split-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: rgba(251, 246, 235, 0.68);
  font-size: 17px;
}

.feature-facts {
  margin: 46px 0;
}

.feature-facts div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 25px;
  border-top: 1px solid var(--line-light);
}

.feature-facts div:last-child {
  border-bottom: 1px solid var(--line-light);
}

.feature-facts dt {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 22px;
}

.feature-facts dd {
  margin: 0;
  align-self: center;
  color: rgba(251, 246, 235, 0.6);
  font-size: 13px;
}

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

.gallery-section .section-intro {
  max-width: 860px;
}

.gallery-grid {
  max-width: var(--max);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.8fr;
  grid-template-rows: 320px 360px;
  gap: 12px;
}

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 12, 10, 0.64), transparent 44%);
  content: "";
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  color: var(--paper-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-a {
  grid-row: 1 / 3;
}

.gallery-b {
  grid-row: 1 / 2;
}

.gallery-c {
  grid-row: 2 / 3;
}

.gallery-d {
  grid-row: 1 / 2;
}

.gallery-e {
  grid-row: 2 / 3;
}

.gallery-a img {
  object-position: 56% center;
}

.gallery-b img,
.gallery-d img {
  object-position: center top;
}

.events-preview {
  min-height: 780px;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 7vw, 110px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 30%, rgba(185, 144, 79, 0.15), transparent 23%),
    var(--ink);
  color: var(--paper-bright);
}

.events-copy .eyebrow {
  color: var(--gold-bright);
}

.events-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(251, 246, 235, 0.65);
  font-size: 17px;
}

.event-mini-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.event-mini-grid article {
  padding: 26px 20px 26px 0;
}

.event-mini-grid article + article {
  padding-left: 28px;
  border-left: 1px solid var(--line-light);
}

.event-mini-grid span {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.event-mini-grid h3 {
  margin: 9px 0 3px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
}

.event-mini-grid p {
  margin: 0;
  color: rgba(251, 246, 235, 0.52);
  font-size: 12px;
}

.events-photo-stack {
  min-height: 570px;
  position: relative;
}

.events-photo-stack img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42);
}

.events-photo-back {
  width: 77%;
  height: 68%;
  top: 4%;
  right: 0;
  transform: rotate(3deg);
}

.events-photo-front {
  width: 68%;
  height: 62%;
  bottom: 3%;
  left: 0;
  border: 9px solid var(--paper);
  transform: rotate(-3deg);
}

.trust-section {
  background: var(--gold-bright);
}

.trust-head {
  max-width: var(--max);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(45px, 8vw, 120px);
  align-items: end;
}

.trust-head p {
  margin: 0;
  color: rgba(23, 21, 19, 0.68);
  font-size: 17px;
}

.trust-stats {
  max-width: var(--max);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(23, 21, 19, 0.24);
  border-bottom: 1px solid rgba(23, 21, 19, 0.24);
}

.trust-stats div {
  padding: 34px 20px;
  border-right: 1px solid rgba(23, 21, 19, 0.24);
}

.trust-stats div:first-child {
  padding-left: 0;
}

.trust-stats div:last-child {
  border-right: 0;
}

.trust-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1;
}

.trust-stats span {
  display: block;
  margin-top: 10px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.faq-grid {
  max-width: var(--max);
  margin: 62px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
  border-top: 1px solid var(--line);
}

.faq-grid details {
  border-bottom: 1px solid var(--line);
}

.faq-grid summary {
  min-height: 86px;
  padding: 24px 42px 24px 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.2;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  position: absolute;
  right: 4px;
  color: var(--red);
  content: "+";
  font-family: var(--sans);
  font-size: 22px;
}

.faq-grid details[open] summary::after {
  content: "–";
}

.faq-grid details p {
  margin: -4px 0 28px;
  color: rgba(23, 21, 19, 0.66);
}

.visit-preview {
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  background: var(--paper-bright);
}

.visit-photo {
  max-height: 780px;
  overflow: hidden;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  filter: saturate(0.75);
}

.visit-copy {
  padding: clamp(70px, 10vw, 145px) clamp(32px, 9vw, 140px);
  align-self: center;
}

.visit-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 25px 0 0;
  color: rgba(23, 21, 19, 0.65);
  font-size: 17px;
}

.visit-hours {
  margin: 42px 0;
}

.visit-hours p {
  margin: 0;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 150px 1fr;
  border-top: 1px solid var(--line);
  color: rgba(23, 21, 19, 0.68);
  font-size: 13px;
}

.visit-hours p:last-child {
  border-bottom: 1px solid var(--line);
}

.visit-hours span {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Interior pages */
.page-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  background: var(--ink);
  color: var(--paper-bright);
}

.page-hero-copy {
  padding: clamp(85px, 10vw, 150px) clamp(25px, 7vw, 105px);
  align-self: center;
}

.page-hero .eyebrow {
  color: var(--gold-bright);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(60px, 6.6vw, 104px);
  line-height: 0.9;
}

.page-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(251, 246, 235, 0.68);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
}

.page-hero-media {
  min-height: 620px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 21, 19, 0.58), transparent 40%);
  content: "";
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.83);
}

.page-section,
.content-section {
  padding: clamp(78px, 9vw, 130px) clamp(22px, 6vw, 90px);
}

.page-section-inner,
.content-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 135px);
}

.intro-grid > p {
  margin: 8px 0 0;
  color: rgba(23, 21, 19, 0.68);
  font-size: 18px;
}

.card-grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-card {
  min-height: 280px;
  padding: 32px;
  position: relative;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.info-card.dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper-bright);
}

.info-card .card-number {
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.info-card.dark .card-number {
  color: var(--gold-bright);
}

.info-card h3 {
  margin: 44px 0 14px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
}

.info-card p {
  color: rgba(23, 21, 19, 0.65);
  font-size: 14px;
}

.info-card.dark p {
  color: rgba(251, 246, 235, 0.58);
}

.info-card a {
  position: absolute;
  bottom: 28px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.info-card.dark a {
  color: var(--gold-bright);
}

.photo-band {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink);
}

.photo-band figure {
  min-height: 460px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78);
}

.photo-band figure:nth-child(2) {
  transform: translateY(48px);
  z-index: 2;
  border: 12px solid var(--paper);
}

.dark-section {
  background: var(--ink-soft);
  color: var(--paper-bright);
}

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

.dark-section .intro-grid > p,
.dark-section .section-intro > p:last-child {
  color: rgba(251, 246, 235, 0.6);
}

.hours-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.hours-grid h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
}

.hours-list {
  margin: 0;
}

.hours-list div {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border-top: 1px solid currentColor;
  border-color: var(--line-light);
}

.hours-list div:last-child {
  border-bottom: 1px solid var(--line-light);
}

.hours-list dt,
.hours-list dd {
  margin: 0;
  font-size: 13px;
}

.hours-list dt {
  color: var(--gold-bright);
}

.hours-list dd {
  color: rgba(251, 246, 235, 0.7);
  text-align: right;
}

.guide-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  color: var(--paper-bright);
  text-decoration: none;
}

.guide-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 12, 10, 0.88), rgba(15, 12, 10, 0.06));
  content: "";
}

.guide-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.8);
  transition: transform 600ms ease;
}

.guide-card:hover img {
  transform: scale(1.04);
}

.guide-card > *:not(img) {
  position: relative;
  z-index: 2;
}

.guide-card span {
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.guide-card h3 {
  margin: 10px 0 0;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  line-height: 1.02;
}

.policy-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.policy-card {
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--paper-bright);
}

.policy-card h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
  color: rgba(23, 21, 19, 0.67);
}

.policy-card li + li {
  margin-top: 10px;
}

.site-footer {
  padding: clamp(75px, 10vw, 140px) clamp(24px, 6vw, 90px) 38px;
  background: var(--red-dark);
  color: var(--paper-bright);
}

.footer-lead {
  max-width: var(--max);
  margin: 0 auto;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 50px;
  border-bottom: 1px solid var(--line-light);
}

.footer-lead .eyebrow {
  align-self: start;
  color: var(--gold-bright);
}

.footer-lead h2 {
  max-width: 850px;
}

.footer-lead .button-row {
  grid-column: 2;
}

.footer-grid {
  max-width: var(--max);
  margin: 70px auto 0;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 0.7fr;
  gap: 45px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  text-decoration: none;
}

.footer-grid p,
.footer-grid a:not(.footer-brand) {
  max-width: 360px;
  margin: 0;
  color: rgba(251, 246, 235, 0.58);
  font-size: 12px;
  text-decoration: none;
}

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

.footer-grid h3 {
  margin: 0 0 9px;
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-bottom {
  max-width: var(--max);
  margin: 60px auto 0;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(251, 246, 235, 0.4);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-book-bar {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a:nth-child(4),
  .desktop-nav a:nth-child(5) {
    display: none;
  }

  .hero {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero-copy {
    padding-right: 36px;
  }

  .hero-detail-photo {
    width: 40%;
  }

  .story-cards article {
    min-height: 400px;
  }

  .events-preview {
    gap: 60px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 66px;
  }

  .topline {
    justify-content: center;
  }

  .topline span:last-child {
    display: none;
  }

  .site-header {
    min-height: 70px;
  }

  .desktop-nav,
  .header-call {
    display: none;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 11px 14px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 600px;
    padding: 86px 25px 70px;
  }

  .hero-copy::before {
    left: 16px;
    height: 80px;
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 92px);
  }

  .hero-proof {
    margin-top: 60px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .hero-main-photo {
    inset: 0;
  }

  .hero-detail-photo {
    width: 38%;
    right: 4%;
  }

  .marquee span:nth-of-type(n + 4),
  .marquee i:nth-of-type(n + 4) {
    display: none;
  }

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

  .story-cards article,
  .story-cards article:first-child,
  .story-cards article:last-child {
    min-height: 300px;
    padding: 32px 0 60px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-cards article:last-child {
    border-bottom: 0;
  }

  .story-cards h3 {
    margin-top: 26px;
  }

  .story-cards a {
    bottom: 28px;
  }

  .split-feature,
  .visit-preview,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .split-media,
  .page-hero-media {
    min-height: 560px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 330px 330px;
  }

  .gallery-a {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .gallery-b {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-c {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-d {
    grid-column: 1;
    grid-row: 3;
  }

  .gallery-e {
    grid-column: 2;
    grid-row: 3;
  }

  .events-preview {
    grid-template-columns: 1fr;
  }

  .events-photo-stack {
    min-height: 500px;
  }

  .trust-head,
  .footer-lead,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: 1fr 1fr;
  }

  .trust-stats div:nth-child(2) {
    border-right: 0;
  }

  .trust-stats div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(23, 21, 19, 0.24);
  }

  .trust-stats div:first-child {
    padding-left: 20px;
  }

  .faq-grid,
  .hours-grid,
  .policy-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .visit-photo {
    max-height: 600px;
  }

  .card-grid,
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-lead .button-row {
    grid-column: 1;
  }

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

  .mobile-book-bar {
    height: 66px;
    padding: 8px;
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8px;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: var(--ink);
    border-top: 1px solid var(--line-light);
  }

  .mobile-book-bar a {
    display: grid;
    place-items: center;
    color: var(--paper-bright);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-book-primary {
    background: var(--gold-bright);
    color: var(--ink) !important;
  }
}

@media (max-width: 560px) {
  .topline {
    font-size: 8px;
  }

  .wordmark {
    font-size: 22px;
  }

  .wordmark-v {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .wordmark small {
    font-size: 6.5px;
  }

  .hero-copy {
    min-height: 570px;
  }

  .hero .button-row .button {
    width: 100%;
  }

  .hero-proof {
    gap: 12px;
  }

  .hero-proof strong {
    font-size: 22px;
  }

  .hero-proof span {
    font-size: 7px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-stamp {
    width: 82px;
    height: 82px;
    font-size: 15px;
  }

  .marquee {
    justify-content: flex-start;
  }

  .marquee span:nth-of-type(n + 3),
  .marquee i:nth-of-type(n + 3) {
    display: none;
  }

  .section-intro h2,
  .split-copy h2,
  .events-copy h2,
  .trust-head h2,
  .visit-copy h2,
  .footer-lead h2,
  .content-section h2,
  .page-section h2 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .service-row {
    grid-template-columns: 36px 1fr 26px;
    gap: 12px;
  }

  .service-row p {
    font-size: 12px;
  }

  .split-media {
    min-height: 460px;
  }

  .feature-facts div {
    grid-template-columns: 90px 1fr;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 410px);
  }

  .gallery-grid figure {
    grid-column: 1;
    grid-row: auto;
  }

  .event-mini-grid {
    grid-template-columns: 1fr;
  }

  .event-mini-grid article + article {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .events-photo-stack {
    min-height: 390px;
  }

  .trust-stats div {
    padding: 24px 12px;
  }

  .trust-stats div:first-child {
    padding-left: 12px;
  }

  .visit-hours p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-copy {
    padding: 80px 24px;
  }

  .page-hero h1 {
    font-size: clamp(55px, 16vw, 82px);
  }

  .page-hero-media {
    min-height: 470px;
  }

  .card-grid,
  .guide-grid {
    grid-template-columns: 1fr;
  }

  .photo-band {
    min-height: 420px;
    grid-template-columns: 1fr 1fr;
  }

  .photo-band figure {
    min-height: 360px;
  }

  .photo-band figure:nth-child(2) {
    transform: translateY(22px);
    border-width: 6px;
  }

  .photo-band figure:nth-child(3) {
    display: none;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

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