:root {
  --burgundy: #8b1f24;
  --burgundy-dark: #5d1115;
  --burgundy-soft: #f4e7e6;
  --gold: #c4a15c;
  --gold-dark: #907039;
  --ink: #211916;
  --muted: #6f625c;
  --paper: #f7f3eb;
  --white: #fff;
  --line: rgba(33, 25, 22, 0.16);
  --pool: #1d7484;
  --green: #3c6659;
  --shadow: 0 22px 60px rgba(33, 25, 22, 0.16);
  --radius: 8px;
  --max: 1180px;
  --font-body: "Helvetica Neue", Arial, sans-serif;
  --font-display: Optima, Candara, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  font-size: 4.5rem;
}

h2 {
  max-width: 760px;
  font-size: 2.6rem;
}

h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  line-height: 1.22;
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 12px 32px rgba(33, 25, 22, 0.12);
}

.topbar {
  background: var(--burgundy-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
}

.topbar__inner,
.masthead__inner,
.site-nav__inner,
.section__inner,
.site-footer__inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 36px;
}

.topbar__contact,
.topbar__links,
.quick-contact,
.site-nav__links,
.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}

.topbar a,
.site-nav a,
.brand,
.button,
.text-link,
.footer-links a,
.social-links a,
.quick-contact a,
.phone-link {
  text-decoration: none;
}

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

.masthead {
  background: var(--white);
}

.masthead__inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 12px 0;
}

.brand img {
  width: 86px;
  height: auto;
  border-radius: 2px;
}

.masthead__claim {
  display: grid;
  gap: 4px;
}

.masthead__claim span,
.eyebrow {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.masthead__claim strong {
  max-width: 540px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.1;
}

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

.phone-link {
  color: var(--burgundy);
  font-weight: 600;
  white-space: nowrap;
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
}

.site-nav {
  background: var(--burgundy);
  color: var(--white);
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1320px, calc(100% - 32px));
  min-height: 48px;
  overflow: visible;
}

.site-nav__links {
  gap: 2px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 7px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.76rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.site-nav .season-link {
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-nav .season-link:hover {
  background: #d7b775;
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 600;
  white-space: nowrap;
}

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

.button--gold:hover {
  background: #d2b16e;
}

.button--burgundy {
  background: var(--burgundy);
  color: var(--white);
}

.button--burgundy:hover {
  background: var(--burgundy-dark);
}

.button--light {
  background: var(--white);
  color: var(--burgundy);
}

.button--light:hover {
  background: #f4efe6;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(33, 25, 22, 0.82) 0%, rgba(33, 25, 22, 0.62) 42%, rgba(33, 25, 22, 0.18) 100%);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero--image-only {
  min-height: 560px;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 104px;
  color: var(--white);
}

.hero__content .eyebrow {
  color: #e5c987;
}

.hero__summary {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero__actions,
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero__actions {
  margin-top: 26px;
}

.hero__facts {
  margin-top: 26px;
}

.hero__facts span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.92rem;
}

.booking-strip {
  position: relative;
  z-index: 5;
  margin-top: -56px;
  padding: 0 0 42px;
}

.booking-panel {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(196, 161, 92, 0.42);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.booking-panel h2 {
  font-size: 1.74rem;
}

.booking-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
}

.quick-contact {
  color: var(--burgundy);
  font-weight: 700;
  font-size: 0.94rem;
}

.section {
  padding: 62px 0;
}

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

.section--intro {
  padding-top: 42px;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 26px;
}

.section-heading p,
.feature-layout p,
.conference-lead p,
.service-card p,
.wellness-layout p,
.room-list p,
.offer-tile p,
.contact-grid p {
  color: var(--muted);
}

.section-heading p {
  margin-top: 12px;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
}

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

.offer-tile {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.offer-tile a {
  align-self: end;
  color: var(--burgundy);
  font-weight: 600;
  text-decoration: none;
}

.offer-tile a:hover {
  color: var(--burgundy-dark);
}

.image-text-grid,
.feature-layout,
.conference-grid,
.wellness-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.image-text-grid > img,
.feature-layout > img,
.conference-grid > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.room-list {
  display: grid;
  gap: 12px;
}

.room-list article {
  padding: 17px 20px 9px;
  border-left: 5px solid var(--gold);
  background: var(--white);
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
  align-items: start;
}

.photo-stack img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-stack img:nth-child(2) {
  margin-top: 0;
}

.mini-list,
.distance-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-list span,
.distance-grid span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

.conference-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.conference-grid {
  align-items: stretch;
}

.equipment-panel {
  display: grid;
  align-content: center;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.86);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 30px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.service-card .button {
  margin-top: 18px;
}

.section--wellness {
  background: #172a2f;
  color: var(--white);
}

.section--wellness .eyebrow {
  color: #e5c987;
}

.section--wellness p {
  color: rgba(255, 255, 255, 0.78);
}

.wellness-layout {
  align-items: start;
}

.wellness-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  grid-column: 1 / -1;
}

.wellness-cards article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.wellness-cards img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.wellness-cards h3,
.wellness-cards p {
  padding-inline: 18px;
}

.wellness-cards h3 {
  margin-top: 18px;
}

.wellness-cards p {
  margin: 0 0 20px;
}

.benefit-note {
  grid-column: 1 / -1;
  color: #e5c987;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin: 0 18px 18px;
  color: #e5c987;
  font-weight: 700;
}

.feature-layout--reverse {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
}

.gallery-label {
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.gallery-grid--photos img {
  width: 100%;
  height: clamp(220px, 18vw, 270px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

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

.section--contact .eyebrow {
  color: #e5c987;
}

.section--contact .section-heading p,
.section--contact .contact-grid p,
.section--contact .address-block p {
  color: rgba(255, 255, 255, 0.78);
}

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

.contact-grid article,
.address-block {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.contact-grid article {
  padding: 22px;
}

.contact-grid p {
  margin-top: 8px;
}

.contact-grid a,
.section--contact a {
  color: #f0d89a;
}

.address-block {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
  padding: 22px;
}

.section--legal {
  background: #eee7d9;
}

.legal-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.legal-link {
  color: var(--burgundy);
  font-weight: 700;
  text-decoration: none;
}

.legal-link:hover {
  color: var(--burgundy-dark);
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(210px, 0.6fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 36px 0;
}

.site-footer img {
  width: 72px;
  height: auto;
  margin-bottom: 12px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.74);
}

.footer-info {
  margin-top: 10px;
  max-width: 310px;
}

.footer-links {
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-links a,
.social-links a {
  color: rgba(255, 255, 255, 0.82);
}

.social-links {
  justify-content: flex-end;
}

.small {
  grid-column: 1 / -1;
  font-size: 0.86rem;
}

.subpage-hero {
  min-height: clamp(280px, 38svh, 430px);
}

.subpage {
  background: var(--white);
}

.subpage h1 {
  font-size: clamp(2.05rem, 3.6vw, 3.05rem);
}

.subpage-card,
.price-card,
.schedule-card,
.info-card {
  font-size: 0.96rem;
}

.content-grid h2 {
  font-size: clamp(1.38rem, 2.1vw, 1.86rem);
}

.subpage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.subpage-card,
.price-card,
.schedule-card,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.subpage-card {
  padding: 26px;
}

.subpage-card p + p,
.subpage-card ul + p,
.subpage-card p + ul {
  margin-top: 18px;
}

.subpage-card ul,
.info-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.subpage-card li,
.info-card li {
  margin-top: 8px;
}

.subpage-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-card,
.schedule-card,
.info-card {
  padding: 22px;
}

.price-row,
.schedule-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.price-row div,
.schedule-list span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.price-row div:last-child,
.schedule-list span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-row strong,
.schedule-list strong {
  color: var(--burgundy);
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.local-gallery img {
  width: 100%;
  height: clamp(200px, 18vw, 260px);
  object-fit: cover;
  border-radius: var(--radius);
}

.full-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
  gap: 12px;
}

.full-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: zoom-in;
}

.full-gallery-grid img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  transition: transform 180ms ease;
}

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

.info-card--wide {
  grid-column: 1 / -1;
}

.holiday-copy {
  display: grid;
  gap: 14px;
}

.holiday-title {
  color: var(--green);
  font-weight: 700;
}

.holiday-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.holiday-media {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.holiday-media img {
  width: 100%;
  border-radius: var(--radius);
}

.holiday-gallery {
  grid-template-columns: repeat(auto-fill, minmax(146px, 1fr));
  margin-top: 18px;
}

.holiday-gallery img {
  height: 132px;
}

.holiday-gallery .is-wide {
  grid-column: span 2;
}

.attraction-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-top: 18px;
}

.attraction-links a,
.attraction-links span {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.attraction-links a:hover {
  color: var(--burgundy);
}

.bank-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--burgundy-soft);
}

.bank-card strong {
  color: var(--burgundy);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: var(--radius);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 64px 24px 24px;
  background: rgba(33, 25, 22, 0.88);
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 82svh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 1080px) {
  .masthead__inner {
    grid-template-columns: auto 1fr auto;
  }

  .masthead__actions {
    display: none;
  }

  .site-nav__inner {
    align-items: stretch;
    flex-direction: column;
    padding: 7px 0;
  }

  .site-nav .season-link {
    align-self: flex-start;
  }
}

@media (min-width: 1081px) {
  .site-nav__links {
    flex-wrap: nowrap;
  }

  .site-nav__inner {
    flex-wrap: nowrap;
  }
}

@media (max-width: 720px) {
  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__inner {
    display: grid;
    grid-template-columns: 1fr;
    padding: 8px 0;
    overflow: visible;
  }

  .site-nav a {
    white-space: normal;
  }

  .site-nav .season-link {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .topbar__inner,
  .booking-panel,
  .image-text-grid,
  .feature-layout,
  .conference-lead,
  .conference-grid,
  .wellness-layout,
  .subpage-layout,
  .legal-simple,
  .service-card,
  .site-footer__inner,
  .address-block {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    align-items: flex-start;
    padding: 8px 0;
  }

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

  .masthead__inner {
    gap: 16px;
    min-height: 86px;
  }

  .brand img {
    width: 68px;
  }

  .masthead__claim strong {
    font-size: 1.08rem;
  }

  .hero {
    min-height: 610px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .booking-panel h2 {
    font-size: 1.5rem;
  }

  .hero__content {
    padding: 72px 0 98px;
  }

  .offer-row,
  .contact-grid,
  .wellness-cards,
  .content-grid,
  .local-gallery,
  .attraction-links,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel__actions {
    justify-content: flex-start;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack img {
    min-height: 260px;
  }

  .photo-stack img:nth-child(2) {
    margin-top: 0;
  }

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

  .social-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar__links {
    display: none;
  }

  .masthead__claim {
    display: none;
  }

  .masthead__inner {
    grid-template-columns: auto 1fr;
  }

  .menu-button {
    justify-self: end;
  }

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

  .holiday-gallery .is-wide {
    grid-column: auto;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: 640px;
  }

  h1 {
    font-size: 2.44rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero__summary {
    font-size: 1rem;
  }

  .booking-panel .button,
  .hero__actions .button,
  .service-card .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .booking-panel {
    padding: 18px;
  }
}
