:root {
  --lake-green: #24443f;
  --lake-green-dark: #19332f;
  --warm-porcelain: #f6f1e8;
  --soft-sand: #e7d9c6;
  --charcoal-ink: #282a28;
  --muted-terracotta: #b8664c;
  --terracotta-dark: #9f513d;
  --dusty-rose: #c99b91;
  --muted-blue: #6e9295;
  --soft-mustard: #d0a64a;
  --white: #ffffff;
  --ink: var(--charcoal-ink);
  --ink-soft: #555b55;
  --navy: var(--lake-green);
  --navy-deep: var(--lake-green-dark);
  --sage: #526f5d;
  --sage-pale: #e5eadf;
  --sand: var(--soft-sand);
  --sand-light: #f0e7da;
  --cream: var(--warm-porcelain);
  --gold: var(--soft-mustard);
  --line: #d6cab8;
  --error: #9c2e22;
  --shadow: 0 18px 50px rgba(36, 68, 63, 0.14);
  --radius: 6px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-deep);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(36, 68, 63, 0.16);
  background: rgba(246, 241, 232, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--navy);
  text-decoration: none;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-byline {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand-byline img {
  width: 70px;
  height: auto;
}

.brand-byline-footer img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.brand-location {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
}

.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--navy);
  border-radius: 50%;
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-nav {
  position: absolute;
  top: 74px;
  right: 0;
  left: 0;
  z-index: 25;
  display: none;
  height: calc(100svh - 74px);
  padding: 28px 16px 120px;
  overflow-y: auto;
  background: var(--cream);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  text-decoration: none;
}

.mobile-nav .button {
  margin-top: 24px;
  padding: 13px 18px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 12px 20px;
  color: var(--white);
  background: var(--lake-green);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--lake-green-dark);
  transform: translateY(-1px);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
  background: rgba(25, 51, 47, 0.26);
}

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

.button-cream {
  border-color: var(--white);
  color: var(--lake-green-dark);
  background: var(--cream);
}

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

.button-terracotta:hover {
  background: #874432;
}

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.image-hero .eyebrow {
  color: #f3ddb1;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 8vw, 78px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.02;
}

h3 {
  font-size: 25px;
  line-height: 1.1;
}

.lede {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 132px);
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--lake-green-dark);
}

.hero::before {
  position: absolute;
  inset: -6%;
  z-index: -2;
  background: url("images/real/lake-land-hot-tub-garden-nighttime.png") 52% 50% / cover no-repeat;
  content: "";
  animation: hero-photo-pan 11s ease-in-out infinite alternate;
  transform: scale(1.1) translate3d(-2.5%, 0, 0);
  transform-origin: center;
  will-change: transform;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(22, 46, 42, 0.86), rgba(31, 60, 55, 0.58) 46%, rgba(31, 60, 55, 0.12)),
    linear-gradient(0deg, rgba(22, 46, 42, 0.54), rgba(22, 46, 42, 0.06) 38%);
  content: "";
}

.hero-content {
  padding-block: 72px 88px;
}

.hero h1 {
  max-width: 830px;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes hero-photo-pan {
  0% {
    transform: scale(1.1) translate3d(-2.5%, 0, 0);
  }

  100% {
    transform: scale(1.2) translate3d(2.5%, -1.5%, 0);
  }
}

.availability-wrap {
  position: relative;
  z-index: 2;
  margin-top: -54px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: var(--warm-porcelain);
}

.trust-strip-grid {
  display: grid;
  gap: 0;
}

.trust-strip span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--lake-green-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-bottom: 0;
}

.availability-bar {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.coming-soon-bar {
  align-items: center;
  border-top: 4px solid var(--muted-terracotta);
}

.coming-soon-bar strong {
  display: block;
  color: var(--lake-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.coming-label {
  display: block;
  margin-bottom: 6px;
  color: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 5px;
}

.field label,
fieldset legend {
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #a9b0ac;
  border-radius: 2px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
}

.section {
  padding-block: 82px;
}

.section-tight {
  padding-block: 60px;
}

.section-sage {
  background: var(--sage-pale);
}

.section-sand {
  background: var(--sand-light);
}

.section-navy {
  color: rgba(255, 255, 255, 0.88);
  background: var(--lake-green);
}

.section-editorial {
  background: linear-gradient(90deg, var(--warm-porcelain), #efe3d4);
}

.home-positioning {
  padding-block: 72px;
  background: var(--warm-porcelain);
}

.positioning-grid,
.weekend-plan,
.play-grid,
.trip-match,
.dreamstay-trust {
  display: grid;
  gap: 34px;
}

.positioning-facts,
.check-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.positioning-facts {
  border-block: 1px solid var(--line);
}

.positioning-facts div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.positioning-facts div:last-child {
  border-bottom: 0;
}

.positioning-facts dt {
  color: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.positioning-facts dd {
  margin: 0;
  color: var(--lake-green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
}

.moment-grid {
  display: grid;
  gap: 14px;
}

.moment-grid figure {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--lake-green-dark);
}

.moment-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.moment-grid .moment-photo-cocktail {
  object-position: 46% 50%;
}

.moment-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(26, 55, 50, 0.86);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-feature-photo {
  aspect-ratio: 4 / 3;
  height: auto;
  min-height: 0;
  max-height: 560px;
}

.hot-tub-evening-photo {
  object-fit: cover;
  object-position: 54% 50%;
}

.hot-tub-garden-photo {
  object-fit: cover;
  object-position: 50% 52%;
}

.check-list {
  margin-bottom: 22px;
  color: var(--ink-soft);
}

.check-list li {
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  background: linear-gradient(var(--terracotta-dark), var(--terracotta-dark)) 0 20px / 12px 2px no-repeat;
}

.check-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.home-play {
  position: relative;
  overflow: hidden;
}

.home-play::before {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(170, 78, 52, 0.9) 0 10px, transparent 10px 20px);
  content: "";
  opacity: 0.42;
}

.play-list {
  display: grid;
  gap: 10px;
}

.play-list span {
  min-height: 52px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  color: var(--lake-green-dark);
  background: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trip-match-grid {
  display: grid;
  gap: 16px;
}

.trip-match-grid article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.trip-match-grid h3 {
  margin-bottom: 8px;
}

.trip-match-grid p,
.dreamstay-trust p {
  margin: 0;
  color: var(--ink-soft);
}

.dreamstay-trust {
  align-items: center;
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy .eyebrow {
  color: #f3ddb1;
}

.split {
  display: grid;
  gap: 30px;
  align-items: center;
}

.split-media {
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  object-fit: cover;
}

.amenity-photo-frame {
  width: 100%;
}

.amenity-photo {
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.amenity-photo-frame-wide {
  align-self: center;
}

.amenity-photo-benches {
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: 440px;
  object-position: center center;
}

.split-media-sign {
  min-height: 430px;
  max-height: 580px;
}

.split-figure {
  margin: 0;
}

.photo-caption {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.split-copy p:last-of-type {
  margin-bottom: 26px;
}

.text-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.text-link:hover {
  color: #326176;
}

.card-title-link {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.card-title-link:hover,
.card-title-link:focus-visible {
  color: var(--terracotta);
}

.distance-note {
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.highlights,
.amenities-grid,
.trip-grid,
.property-grid {
  display: grid;
  gap: 24px;
}

.experience-pillars {
  display: grid;
  gap: 16px;
}

.experience-pillar {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.experience-pillar h3 {
  margin-bottom: 8px;
  color: var(--lake-green-dark);
}

.experience-pillar p {
  margin: 0;
  color: var(--ink-soft);
}

.featured-experiences {
  display: grid;
  gap: 28px;
}

.experience-blocks {
  display: grid;
  gap: 18px;
}

.experience-block {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.experience-block h3 {
  margin-bottom: 8px;
}

.experience-block p {
  margin: 0;
  color: var(--ink-soft);
}

.experience-block img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  margin-bottom: 18px;
  object-fit: cover;
}

.who-grid,
.social-proof {
  display: grid;
  gap: 30px;
}

.social-proof {
  max-width: 860px;
}

.editorial-grid,
.facts-grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.answer-stack {
  display: grid;
  gap: 18px;
}

.answer-stack article {
  padding-block: 20px;
  border-top: 1px solid var(--line);
}

.answer-stack h3 {
  margin-bottom: 8px;
}

.answer-stack p {
  margin: 0;
  color: var(--ink-soft);
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.fact-list div {
  display: grid;
  gap: 8px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
}

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

.fact-list dt {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.fact-list dd {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.18;
}

.faq {
  max-width: 860px;
}

.faq h2 {
  margin-bottom: 26px;
}

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

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

.faq summary {
  min-height: 58px;
  padding: 18px 0;
  color: var(--navy);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.15;
}

.faq summary:focus-visible {
  outline-offset: 6px;
}

.faq p {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink-soft);
}

.feature-list {
  max-width: 880px;
}

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

.feature-list li {
  padding: 18px 0 18px 34px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  position: relative;
}

.feature-list li::before {
  position: absolute;
  top: 22px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--muted-terracotta);
  content: "";
}

.highlight {
  padding-top: 18px;
  border-top: 2px solid var(--muted-terracotta);
}

.highlight p,
.amenity p,
.trip-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.section-navy .highlight p,
.section-navy .property p {
  color: rgba(255, 255, 255, 0.78);
}

.image-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--lake-green-dark);
}

.image-hero::before,
.image-hero::after {
  position: absolute;
  inset: 0;
  content: "";
}

.image-hero::before {
  z-index: -2;
  background-position: center;
  background-size: cover;
}

.image-hero::after {
  z-index: -1;
  background: linear-gradient(90deg, rgba(25, 51, 47, 0.78), rgba(25, 51, 47, 0.16));
}

.image-hero-room::before {
  background-image: url("images/real/lakeland-room-detail.jpg");
}

.image-hero-lake::before {
  background-image: url("images/real/white-lake-gallery-03.jpeg");
}

.image-hero-content {
  padding-block: 80px 58px;
}

.image-hero h1 {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--white);
}

.image-hero p:last-child {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.simple-hero {
  padding-block: 74px 58px;
  background: var(--sand-light);
}

.simple-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-block: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 3px;
}

.amenities-hero {
  padding-block: 34px 70px;
  color: var(--white);
  background: var(--lake-green);
}

.amenities-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.amenities-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--white);
}

.amenities-hero .eyebrow {
  color: #f3ddb1;
}

.amenities-hero-figure {
  margin: 0;
}

.amenities-hero-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: min(66vw, 360px);
  border-radius: var(--radius);
  object-fit: cover;
}

.amenities-hero .photo-caption {
  color: rgba(255, 255, 255, 0.7);
}

.amenity-overview {
  display: grid;
  gap: 18px;
}

.amenity-overview article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.amenity-overview span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--terracotta-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.amenity-overview h2 {
  margin-bottom: 10px;
  font-size: 30px;
}

.amenity-overview p {
  margin: 0;
  color: var(--ink-soft);
}

.amenity-panel,
.latte-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.amenity-panel-sand {
  background: var(--sand-light);
}

.amenity-panel h3,
.latte-card h3 {
  margin-bottom: 16px;
  font-size: 30px;
}

.amenity-panel ul {
  display: grid;
  gap: 12px;
  margin: 0 0 22px;
  padding-left: 20px;
  color: var(--ink-soft);
}

.todo-note {
  padding: 12px 14px;
  border-left: 4px solid var(--muted-terracotta);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.latte-lab {
  color: rgba(255, 255, 255, 0.86);
  background: var(--lake-green);
}

.latte-lab h2,
.latte-lab h3 {
  color: var(--white);
}

.latte-lab .eyebrow {
  color: #f3ddb1;
}

.latte-lab .lede,
.latte-lab p {
  color: rgba(255, 255, 255, 0.82);
}

.latte-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.latte-card {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.answer-callout {
  max-width: 920px;
}

.answer-callout p {
  color: var(--ink-soft);
  font-size: 18px;
}

.final-cta {
  max-width: 900px;
}

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

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

.room-card > img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.room-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--sage) var(--cream);
  padding: 12px;
  background: var(--cream);
}

.room-gallery-shell {
  display: grid;
  background: var(--cream);
}

.room-gallery img {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  scroll-snap-align: start;
  border: 1px solid var(--line);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-button,
.coming-soon-pill {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-button {
  min-width: 86px;
  padding: 0 16px;
  cursor: pointer;
}

.gallery-button:hover,
.gallery-button:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.coming-soon-pill {
  width: fit-content;
  padding: 0 18px;
  border-color: var(--sage);
  color: var(--sage);
}

.room-preview {
  display: grid;
  min-height: 245px;
  place-items: end start;
  padding: 24px;
  background: var(--sand-light);
}

.room-preview span {
  max-width: 210px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.05;
}

.room-details {
  padding: 24px;
}

.room-details h2 {
  margin-bottom: 8px;
  font-size: 34px;
}

.room-meta {
  margin-bottom: 14px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.room-details p {
  color: var(--ink-soft);
}

.amenity {
  min-height: 140px;
  padding-top: 18px;
  border-top: 1px solid var(--muted-terracotta);
}

.amenity h3,
.trip-item h3 {
  margin-bottom: 8px;
}

.trip-item-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.trip-item-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  object-fit: cover;
}

.trip-item-photo h3,
.trip-item-photo p,
.trip-item-photo .text-link {
  margin-right: 18px;
  margin-left: 18px;
}

.trip-item-photo .distance-note {
  margin-top: -4px;
  margin-bottom: 10px;
}

.trip-item-photo p:last-child,
.trip-item-photo .text-link:last-child {
  margin-bottom: 18px;
}

.quote {
  max-width: 840px;
  margin: 0 auto;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 5vw, 46px);
  line-height: 1.14;
  text-align: center;
}

.quote-attribution {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.itinerary-row {
  display: grid;
  gap: 16px;
  padding-block: 24px;
  border-top: 1px solid var(--line);
}

.itinerary-row:last-child {
  border-bottom: 1px solid var(--line);
}

.itinerary-time {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.itinerary-row h3 {
  margin-bottom: 4px;
}

.itinerary-row p {
  margin: 0;
  color: var(--ink-soft);
}

.property {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.property-featured {
  background: rgba(255, 255, 255, 0.07);
}

.property-label {
  display: inline-block;
  margin-bottom: 28px;
  color: #f3ddb1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-column {
  max-width: 780px;
}

.content-column h2 {
  margin-top: 44px;
  font-size: 34px;
}

.content-column h2:first-of-type {
  margin-top: 0;
}

.content-column ul {
  padding-left: 20px;
}

.booking-layout {
  display: grid;
  gap: 30px;
}

.booking-form {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.booking-form h2,
.booking-summary h2 {
  margin-bottom: 20px;
  font-size: 34px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

fieldset {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  border: 0;
  padding: 0;
}

.check-option {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.check-option input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.consent-option {
  padding-top: 14px;
  border-top: 1px solid rgba(34, 73, 64, 0.16);
  font-size: 13px;
}

.consent-option a {
  color: var(--navy);
  font-weight: 700;
}

.form-note {
  color: var(--ink-soft);
  font-size: 13px;
}

.booking-summary {
  align-self: start;
  padding: 24px;
  color: var(--white);
  background: var(--lake-green);
}

.booking-summary h2,
.booking-summary h3 {
  color: var(--white);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.summary-line span:first-child {
  color: rgba(255, 255, 255, 0.72);
}

.review-panel {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.success-message {
  margin-top: 16px;
  padding: 16px;
  color: var(--navy);
  background: var(--sage-pale);
}

[hidden] {
  display: none !important;
}

.site-footer {
  padding-block: 48px 92px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy-deep);
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-brand .brand-name,
.site-footer h2 {
  color: var(--white);
}

.site-footer .brand-byline,
.site-footer .brand-location {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 24px;
}

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

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  text-underline-offset: 3px;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.mobile-booking {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  background: rgba(252, 250, 246, 0.98);
  box-shadow: 0 -8px 24px rgba(23, 52, 71, 0.1);
}

.mobile-booking strong {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
}

.mobile-booking span {
  display: block;
  color: var(--ink-soft);
  font-size: 11px;
}

@media (min-width: 700px) {
  .availability-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: end;
  }

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

  .trust-strip span {
    padding: 16px 14px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
  }

  .trust-strip span:nth-child(3n) {
    border-right: 0;
  }

  .highlights,
  .amenities-grid,
  .trip-grid,
  .amenity-overview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .room-card {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  }

  .room-card > img,
  .room-preview {
    height: 100%;
    min-height: 330px;
  }

  .room-gallery img {
    flex-basis: 100%;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .itinerary-row {
    grid-template-columns: 130px 1fr;
  }

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

  .field-full {
    grid-column: 1 / -1;
  }

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

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

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

  .experience-block-large {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
    gap: 24px;
    align-items: center;
  }

  .experience-block-large img {
    height: clamp(320px, 36vw, 460px);
    margin-bottom: 0;
  }

  .facts-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  }

  .latte-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }
}

@media (min-width: 980px) {
  .header-inner {
    min-height: 82px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .desktop-nav a:not(.button) {
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }

  .desktop-nav a[aria-current="page"]:not(.button),
  .desktop-nav a:not(.button):hover {
    color: var(--terracotta-dark);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
  }

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

  .hero {
    min-height: calc(100svh - 82px);
  }

  .hero-content {
    padding-block: 96px 148px;
  }

  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 58px;
  }

  .positioning-grid,
  .weekend-plan,
  .play-grid,
  .trip-match,
  .dreamstay-trust {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 70px;
  }

  .positioning-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
  }

  .positioning-facts div {
    min-height: 136px;
    padding: 24px;
    border-right: 1px solid var(--line);
  }

  .positioning-facts div:nth-child(2n) {
    border-right: 0;
  }

  .positioning-facts div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .moment-grid {
    grid-template-columns: 1.08fr 0.92fr;
    grid-template-rows: repeat(2, minmax(210px, 1fr));
  }

  .moment-grid figure:first-child {
    grid-row: span 2;
  }

  .moment-grid figure,
  .moment-grid img {
    min-height: 100%;
  }

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

  .trip-match-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 34px;
  }

  .editorial-grid {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 70px;
  }

  .featured-experiences,
  .who-grid {
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    gap: 58px;
  }

  .amenities-hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 56px;
  }

  .amenities-hero-figure img {
    height: min(34vw, 520px);
  }

  .split-reverse .split-media {
    order: 2;
  }

  .booking-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 34px;
  }

  .booking-summary {
    position: sticky;
    top: 106px;
  }

  .site-footer {
    padding-bottom: 48px;
  }

  .mobile-booking {
    display: none;
  }
}

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