:root {
  --ink: #1d1914;
  --charcoal: #15120e;
  --forest: #173e34;
  --leaf: #2f6b4f;
  --clay: #9b5d38;
  --gold: #D53961;
  --ivory: #fffaf1;
  --paper: #f5efe4;
  --mist: #e8ece1;
  --rose: #873848;
  --white: #ffffff;
  --muted: #6e665e;
  --line: rgba(29, 25, 20, 0.14);
  --shadow: 0 22px 70px rgba(31, 23, 14, 0.14);
  --radius: 8px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  animation: pageFade 420ms ease both;
}

body.modal-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10000;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 3rem;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header:focus-within {
  background: rgba(21, 18, 14, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  padding-block: .65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand__logo {
  width: 130px;
  height: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .65rem .85rem;
  border: 0;
  background: transparent;
  color: inherit;
  border-radius: 999px;
  font-size: .92rem;
}

.nav-link:hover,
.nav-link.is-current,
.nav-link--button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.13);
}

.nav-item--mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + .75rem);
  left: 50%;
  width: min(720px, 90vw);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .35rem;
  padding: .75rem;
  background: rgba(255, 250, 241, .96);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-item--mega:hover .mega-menu,
.nav-item--mega:focus-within .mega-menu,
.nav-item--mega.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.mega-menu a {
  display: grid;
  gap: .25rem;
  padding: 1rem;
  border-radius: var(--radius);
}

.mega-menu a:hover {
  background: var(--mist);
}

.mega-menu span {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .82rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--gold);
  color: var(--white);
}

.btn--glass {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border-color: rgba(255, 255, 255, .32);
}

.btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
}

.btn--outline-dark {
  color: var(--forest);
  border-color: rgba(23, 62, 52, .28);
  background: rgba(255, 255, 255, .45);
}

.btn--small {
  min-height: 42px;
  padding-inline: 1rem;
}

.menu-toggle,
.icon-button {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: currentColor;
}

.menu-toggle {
  display: none;
  place-items: center;
  gap: 4px;
  padding: .6rem;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(0, 0, 0, .48);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 1100;
  width: min(88vw, 380px);
  padding: 1rem;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: -20px 0 70px rgba(0, 0, 0, .22);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

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

.mobile-drawer__top,
.mobile-drawer__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-drawer nav {
  display: grid;
  gap: .35rem;
  margin: 2rem 0;
}

.mobile-drawer nav a {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}

.mobile-drawer .icon-button {
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.hero,
.page-hero {
  position: relative;
  display: grid;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.hero--home {
  min-height: 100vh;
  grid-template-rows: 1fr auto;
  align-items: end;
  padding: 8rem 3rem 4.5rem;
}

.hero__media,
.page-hero__media {
  position: absolute;
  inset: 0;
}

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

.hero__media img,
.page-hero__media img {
  min-height: 100%;
}

.hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 7, .82), rgba(10, 9, 7, .42) 48%, rgba(10, 9, 7, .7)),
    linear-gradient(0deg, rgba(10, 9, 7, .86), rgba(10, 9, 7, .08) 50%, rgba(10, 9, 7, .45));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  margin-bottom: 2rem;
}

.eyebrow,
.micro {
  margin: 0 0 .65rem;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: 4.6rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0;
}

.hero__content > p:not(.eyebrow),
.page-hero__content > p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, .88);
  font-size: 1.15rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.6rem;
}

.hero__booking {
  position: relative;
  z-index: 3;
  width: min(1100px, 100%);
}

.booking-widget {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: end;
  gap: .75rem;
  padding: .85rem;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, .13);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .25);
  backdrop-filter: blur(16px);
}

.booking-widget--compact {
  width: 100%;
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.field {
  display: grid;
  gap: .35rem;
}

.field label {
  color: inherit;
  font-size: .8rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: .72rem .8rem;
  border: 1px solid rgba(29, 25, 20, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
}

.booking-widget .field label,
.booking-widget .form-status {
  color: rgba(255, 255, 255, .9);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.3rem;
  font-size: .92rem;
}

.form-status.is-error {
  color: #ffd6d6;
}

.form-status.is-success {
  color: #d7ffd8;
}

.hero__notes {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, .84);
  font-size: .9rem;
}

.hero__notes span {
  padding: .48rem .72rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease infinite;
}

.page-hero {
  min-height: 68vh;
  align-items: end;
  padding: 9rem 3rem 5rem;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section {
  padding: 6rem 3rem;
}

.section > * {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

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

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

.section--dark .section-head p,
.section--dark .amenity-item p {
  color: rgba(255, 255, 255, .78);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-head p:not(.eyebrow) {
  margin-top: 1rem;
  color: var(--muted);
}

.intro-grid,
.wedding-highlight,
.map-section,
.section--split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
  gap: 3rem;
  align-items: center;
}

.intro-copy,
.narrow-copy,
.split-copy,
.map-copy {
  display: grid;
  gap: 1.15rem;
}

.narrow-copy {
  max-width: 860px;
  margin-bottom: 2.4rem;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  color: var(--forest);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.image-collage {
  position: relative;
  min-height: 520px;
}

.image-collage img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.collage-main {
  position: absolute;
  inset: 0 8% 8% 0;
}

.collage-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1 / 1;
  border: .45rem solid var(--ivory);
}

.stats-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 3rem;
}

.stat-card,
.trust-card {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .55);
}

.stat-card strong,
.trust-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
}

.stat-card span,
.trust-card span {
  display: block;
  margin-top: .45rem;
  color: var(--muted);
  font-size: .92rem;
}

.feature-grid,
.room-grid,
.activity-grid,
.amenity-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-grid--three,
.room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card,
.room-card,
.activity-card,
.contact-panel,
.contact-form,
.testimonial-slider {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 16px 50px rgba(31, 23, 14, .08);
}

.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}

.card__media img {
  transition: transform 600ms ease;
}

.feature-card:hover .card__media img,
.room-card:hover .card__media img,
.activity-card:hover .card__media img,
.gallery-tile:hover img {
  transform: scale(1.045);
}

.feature-card__body,
.activity-card__body,
.room-card__body {
  display: grid;
  gap: .85rem;
  padding: 1.2rem;
}

.feature-card__body p,
.activity-card__body p,
.room-card__body p {
  color: var(--muted);
}

.room-card__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.room-card__top span {
  flex: 0 0 auto;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--mist);
  color: var(--forest);
  font-size: .82rem;
  font-weight: 800;
}

.meta-list,
.amenity-list,
.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.meta-list li,
.amenity-list li,
.check-list li {
  padding: .36rem .62rem;
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  font-size: .86rem;
  font-weight: 700;
}

.check-list {
  display: grid;
}

.check-list li {
  width: fit-content;
}

.video-frame,
.split-image,
.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--charcoal);
}

.video-frame {
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.split-image {
  min-height: 470px;
}

.split-image img {
  min-height: 470px;
}

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

.amenity-grid--light .amenity-item {
  background: rgba(255, 255, 255, .72);
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 86px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.amenity-item span {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(184, 137, 63, .16);
}

.amenity-item p {
  color: var(--ink);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.gallery-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.gallery-tile span {
  position: absolute;
  inset: auto .75rem .75rem auto;
  padding: .38rem .62rem;
  border-radius: 999px;
  background: rgba(21, 18, 14, .74);
  color: var(--white);
  font-size: .78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-tile:hover span,
.gallery-tile:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-slider {
  position: relative;
  max-width: 820px;
  padding: 2rem;
}

.testimonial {
  display: none;
  margin: 0;
}

.testimonial.is-active {
  display: grid;
  gap: 1rem;
}

.testimonial blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.25;
}

.testimonial figcaption {
  color: var(--muted);
  font-weight: 800;
}

.slider-controls {
  display: flex;
  gap: .5rem;
  margin-top: 1.5rem;
}

.slider-controls button,
.lightbox button,
.back-to-top {
  min-height: 44px;
  padding: .55rem .8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

.map-frame {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.faq-list {
  display: grid;
  gap: .75rem;
  max-width: 900px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}

.faq-item summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-item p {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.story-list {
  display: grid;
  gap: 1.2rem;
}

.story-row {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .65);
}

.story-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
}

.story-row--reverse > div:first-child {
  order: 2;
}

.story-row > div:last-child {
  display: grid;
  gap: .8rem;
}

.story-row p {
  color: var(--muted);
}

.contact-panel,
.contact-form {
  padding: 1.5rem;
}

.contact-panel {
  display: grid;
  gap: 1.2rem;
}

.contact-panel address {
  display: grid;
  gap: .65rem;
  color: var(--muted);
}

.contact-panel address a {
  color: var(--forest);
  font-weight: 800;
}

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

.contact-form {
  display: grid;
  gap: 1rem;
}

.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: center;
}

.cta-band h2 {
  margin-bottom: .85rem;
}

.site-footer {
  padding: 4rem 3rem 1.2rem;
  background: var(--charcoal);
  color: var(--white);
}

.footer-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr .6fr .8fr;
  gap: 2rem;
}

.site-footer h2 {
  font-size: 2.2rem;
  max-width: 560px;
}

.site-footer h3 {
  margin-bottom: 1rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 255, 255, .72);
}

.site-footer a {
  display: block;
  min-height: 32px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .8rem;
}

.social-links a {
  min-height: 38px;
  padding: .4rem .7rem;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 2.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .9rem;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 900;
  display: grid;
  gap: .55rem;
}

.floating-actions a {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.floating-icon {
  width: 51px;
  height: 51px;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 8rem;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 4rem;
  background: rgba(10, 9, 7, .92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  width: min(980px, 100%);
  margin: 0;
  color: var(--white);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--charcoal);
}

.lightbox figcaption {
  margin-top: .75rem;
  text-align: center;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
}

.lightbox__close {
  top: 1rem;
  right: 1rem;
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

@media (max-width: 1100px) {
  .site-header {
    padding-inline: 1.3rem;
  }

  .site-nav,
  .site-header > .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

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

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .booking-widget,
  .cta-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .room-grid,
  .feature-grid--three,
  .stats-grid,
  .trust-grid,
  .trust-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: .75rem 1rem;
  }

  .brand__logo {
    width: 112px;
  }

  .hero--home {
    padding: 7rem 1rem 1rem;
    min-height: auto;
  }

  .hero__content {
    margin-top: 6rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero__content > p:not(.eyebrow),
  .page-hero__content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .booking-widget,
  .booking-widget--compact,
  .intro-grid,
  .wedding-highlight,
  .map-section,
  .section--split,
  .contact-grid,
  .cta-band,
  .footer-grid,
  .form-grid,
  .story-row,
  .story-row--reverse {
    grid-template-columns: 1fr;
  }

  .story-row--reverse > div:first-child {
    order: 0;
  }

  .section,
  .site-footer {
    padding-inline: 1rem;
  }

  .section {
    padding-block: 4rem;
  }

  .page-hero {
    min-height: 62vh;
    padding: 8rem 1rem 4rem;
  }

  .image-collage {
    min-height: 360px;
  }

  .collage-main {
    inset: 0;
  }

  .collage-small {
    width: 46%;
  }

  .feature-grid--four,
  .feature-grid--three,
  .activity-grid,
  .amenity-grid,
  .room-grid,
  .stats-grid,
  .trust-grid,
  .trust-grid--wide {
    grid-template-columns: 1fr;
  }

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

  .split-image,
  .split-image img {
    min-height: 320px;
  }

  .footer-bottom {
    display: grid;
  }

  .lightbox {
    padding: 4rem 1rem;
  }

  .lightbox__prev,
  .lightbox__next {
    bottom: 1rem;
  }

  .hero__notes,
  .scroll-indicator {
    display: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
