:root {
  --forest-950: #14241b;
  --forest-900: #1d3427;
  --forest-800: #244535;
  --forest-700: #315e48;
  --forest-600: #46755c;
  --sage-200: #c9d5c7;
  --sage-100: #e4ebe2;
  --cream: #faf7f1;
  --sand-100: #f2eadf;
  --sand-200: #e8dccd;
  --terracotta: #ad5f3f;
  --terracotta-dark: #89472f;
  --ink: #243029;
  --muted: #5d6b62;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(31, 48, 38, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 36, 27, 0.2);
  --radius-sm: 0.65rem;
  --radius-md: 1.15rem;
  --radius-lg: 2rem;
  --content: 74rem;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: var(--forest-700);
  overflow-wrap: anywhere;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--terracotta-dark);
}

a[href^="https://"]::after,
a[href^="http://"]::after {
  display: inline-block;
  margin-left: 0.3em;
  font-size: 0.82em;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  content: "↗";
}

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

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

:focus-visible {
  outline: 3px solid #d98a63;
  outline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0 0 0.6em;
  color: var(--forest-900);
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.8rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

p {
  margin: 0 0 1.1rem;
}

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - 2.25rem), var(--content));
  margin-inline: auto;
}

.narrow {
  max-width: 48rem;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-sm {
  padding-block: clamp(3rem, 6vw, 5rem);
}

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

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

.section-dark {
  color: #eef3ed;
  background: var(--forest-900);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--terracotta-dark);
  font-size: 0.79rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.2rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #eab99f;
}

.lead {
  max-width: 45rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.section-dark .lead {
  color: #d5dfd6;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.1rem, 5vw, 3.8rem);
}

.section-heading > div {
  max-width: 48rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--forest-800);
  font-weight: 750;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--forest-900);
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(36, 69, 53, 0.12);
  background: rgba(250, 247, 241, 0.96);
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(250, 247, 241, 0.86);
    backdrop-filter: blur(16px);
  }
}

.header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 0.75rem;
  color: var(--forest-900);
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 2.65rem;
  height: 2.65rem;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0.95rem 0.95rem 1.15rem 0.95rem;
  background: var(--forest-800);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-mark::before {
  position: absolute;
  z-index: 1;
  width: 1.42rem;
  height: 1.38rem;
  background: var(--sand-100);
  clip-path: polygon(0 43%, 50% 0, 100% 43%, 87% 43%, 87% 100%, 13% 100%, 13% 43%);
  content: "";
  inset: 0.7rem auto auto 0.38rem;
}

.brand-mark::after {
  position: absolute;
  z-index: 2;
  width: 0.8rem;
  height: 1.36rem;
  background: var(--terracotta);
  clip-path: polygon(50% 0, 79% 39%, 64% 39%, 95% 76%, 61% 76%, 61% 100%, 39% 100%, 39% 76%, 5% 76%, 36% 39%, 21% 39%);
  content: "";
  inset: 0.65rem 0.22rem auto auto;
}

.brand small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding-block: 0.65rem;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--sage-200);
  border-radius: 50%;
  color: var(--forest-900);
  background: var(--white);
  cursor: pointer;
  place-items: center;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  top: 0;
  left: 0;
}

.nav-toggle-lines::before {
  transform: translateY(-0.4rem);
}

.nav-toggle-lines::after {
  transform: translateY(0.4rem);
}

.nav-open .nav-toggle-lines {
  background: transparent;
}

.nav-open .nav-toggle-lines::before {
  transform: translateY(0) rotate(45deg);
}

.nav-open .nav-toggle-lines::after {
  transform: translateY(0) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--terracotta);
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--terracotta-dark);
  transform: translateY(-2px);
}

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

.button-light:hover {
  color: var(--forest-900);
  background: var(--sand-100);
}

.button-outline {
  border-color: currentColor;
  color: var(--forest-800);
  background: transparent;
}

.button-outline:hover {
  border-color: var(--forest-800);
  color: var(--white);
  background: var(--forest-800);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(17, 35, 25, 0.22);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgba(17, 35, 25, 0.52);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(49rem, calc(100svh - 5.25rem));
  overflow: hidden;
  color: var(--white);
  background: var(--forest-950);
  isolation: isolate;
  place-items: end start;
}

.hero-media,
.hero-media img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 52%;
}

.hero::after {
  position: absolute;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 24, 16, 0.82) 0%, rgba(11, 24, 16, 0.54) 48%, rgba(11, 24, 16, 0.09) 75%),
    linear-gradient(0deg, rgba(11, 24, 16, 0.54), transparent 58%);
  content: "";
  inset: 0;
}

.hero-content {
  width: min(100%, 52rem);
  padding-block: clamp(5rem, 11vw, 8.5rem);
}

.hero h1,
.page-hero h1 {
  color: var(--white);
}

.hero .lead {
  max-width: 39rem;
  margin-bottom: 1.7rem;
  color: #f5f4ef;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 750;
}

.hero-facts li::before {
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid #eab99f;
  border-radius: 50%;
  content: "";
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 31rem;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-900);
  isolation: isolate;
  place-items: center start;
}

.page-hero picture,
.page-hero picture img {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  inset: 0;
}

.page-hero picture img {
  object-fit: cover;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  background: linear-gradient(90deg, rgba(15, 35, 23, 0.89), rgba(20, 45, 30, 0.54) 58%, rgba(16, 35, 23, 0.22));
  content: "";
  inset: 0;
}

.page-hero-content {
  max-width: 53rem;
  padding-block: 5rem;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero .lead {
  color: #eff3ed;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(36, 69, 53, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.benefit-card .number {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--terracotta-dark);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.benefit-card h3 {
  margin-bottom: 0.35rem;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.split-reverse {
  grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1.08fr);
}

.image-frame {
  position: relative;
}

.image-frame picture,
.image-frame img {
  display: block;
  width: 100%;
}

.image-frame img {
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  top: -1rem;
  right: -1rem;
  width: 42%;
  height: 44%;
  border-radius: 50% 40% 46% 36%;
  background: var(--sage-200);
  content: "";
}

.check-list,
.plain-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  color: var(--forest-700);
  font-weight: 900;
  content: "✓";
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.feature-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.family-layout {
  max-width: 64rem;
}

.family-layout .feature-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
}

.family-layout .feature-stack > :first-child {
  grid-column: 1 / -1;
  max-width: 48rem;
}

.feature-panel {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  background: var(--white);
}

.feature-panel p:last-child {
  margin-bottom: 0;
}

.local-highlight {
  margin-top: 1.4rem;
  padding: 1.2rem 1.35rem;
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--sage-100);
}

.local-highlight strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--forest-900);
  font-size: 1.05rem;
}

.local-highlight p {
  margin: 0;
}

.local-points {
  display: grid;
  gap: 0.85rem;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.local-points li {
  position: relative;
  padding-left: 1.55rem;
}

.local-points li::before {
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.68rem;
  height: 0.68rem;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  content: "";
}

.local-points strong,
.local-points span {
  display: block;
}

.local-points strong {
  color: var(--forest-900);
}

.local-points span {
  color: var(--muted);
  font-size: 0.95rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.room-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.room-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card-body {
  padding: 1.45rem;
}

.room-card-body p:last-child {
  margin-bottom: 0;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.amenity-group {
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(36, 69, 53, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
}

.amenity-group h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 850;
}

.amenity-group .check-list {
  margin-top: 0.8rem;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.rule-card {
  padding: 1.5rem;
  border-top: 4px solid var(--terracotta);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.rule-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 850;
}

.rule-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--forest-900);
  box-shadow: var(--shadow-sm);
}

.gallery-item.wide {
  grid-column: span 4;
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 0;
  aspect-ratio: 3 / 4;
}

.gallery-item picture,
.gallery-item img {
  width: 100%;
  height: 100%;
}

.gallery-item img {
  position: absolute;
  object-fit: cover;
  transition: transform 320ms ease;
  inset: 0;
}

.gallery-item.tall img {
  background: var(--forest-950);
  object-fit: contain;
}

.gallery-item::after {
  position: absolute;
  background: linear-gradient(transparent 42%, rgba(12, 28, 18, 0.77));
  content: "";
  inset: 0;
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.85rem;
  left: 1rem;
  font-size: 0.9rem;
  font-weight: 750;
}

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

.lightbox {
  width: min(94vw, 76rem);
  max-width: none;
  height: min(92vh, 54rem);
  max-height: none;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--white);
  background: #0f1913;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(5, 12, 8, 0.86);
  backdrop-filter: blur(6px);
}

.lightbox-inner {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
}

.lightbox-stage {
  position: relative;
  display: grid;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  touch-action: pan-y;
}

.lightbox img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(15, 25, 19, 0.76);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  font-size: 2.15rem;
  line-height: 1;
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: var(--white);
  background: rgba(36, 69, 53, 0.96);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-footer {
  display: flex;
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem 0.8rem 1.25rem;
}

.lightbox-info {
  min-width: 0;
}

.lightbox-caption {
  margin: 0;
}

.lightbox-counter {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.lightbox-close {
  flex: 0 0 auto;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  font-size: 1.45rem;
  cursor: pointer;
}

.price-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.price-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.65rem clamp(1.4rem, 4vw, 2.3rem);
  border-bottom: 1px solid var(--sand-200);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-label strong {
  display: block;
  color: var(--forest-900);
  font-size: 1.05rem;
}

.price-label span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price {
  color: var(--terracotta-dark);
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.price small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.75rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  counter-increment: step;
}

.step::before {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest-700);
  font-weight: 850;
  content: counter(step);
  place-items: center;
}

.step h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 850;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.contact-card {
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-primary {
  display: inline-block;
  margin-block: 0.35rem 0.8rem;
  color: var(--forest-800);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 650;
  line-height: 1.2;
  text-decoration-thickness: 1px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.location-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.location-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.location-card img.image-portrait {
  padding: 0.65rem;
  background: var(--sand-100);
  object-fit: contain;
}

.location-card-body {
  padding: 1.5rem;
}

.location-card-body p {
  color: var(--muted);
}

.source-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  margin: 1.4rem 0 0;
  padding-left: 1.2rem;
}

.source-list li::marker {
  color: var(--terracotta);
}

.cta-band {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--white);
  background: var(--forest-800);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-inner h2 {
  margin-bottom: 0.25rem;
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

.cta-inner p {
  margin: 0;
  color: #dce6dd;
}

.legal-content {
  max-width: 54rem;
}

.legal-content h2 {
  margin-top: 2.2rem;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: 0;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
}

.legal-review {
  margin-bottom: 2.5rem;
  padding: 1.25rem 1.4rem;
  border: 2px solid #c97953;
  border-radius: var(--radius-sm);
  background: #fff4eb;
}

.legal-review strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #72351f;
}

.notice {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--forest-700);
  background: var(--sage-100);
}

.site-footer {
  color: #d8e1da;
  background: var(--forest-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: clamp(2rem, 7vw, 6rem);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.footer-brand {
  display: block;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.footer-main h2 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-main a {
  color: #edf2ee;
}

.footer-main ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-main li + li {
  margin-top: 0.45rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.error-page {
  display: grid;
  min-height: 65vh;
  padding-block: 5rem;
  text-align: center;
  place-items: center;
}

.error-code {
  color: var(--sage-200);
  font-family: var(--serif);
  font-size: clamp(6rem, 25vw, 14rem);
  line-height: 0.8;
}

.error-page h1 {
  margin-top: -1rem;
  font-size: clamp(2.3rem, 6vw, 4rem);
}

@media (max-width: 68rem) {
  .site-nav ul {
    gap: 0.7rem;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .site-nav .button {
    display: none;
  }

  .benefit-grid,
  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-grid,
  .amenity-grid,
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-card:last-child,
  .amenity-group:last-child,
  .location-card:last-child {
    grid-column: 1 / -1;
  }

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

  .footer-main > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 48rem) {
  html {
    scroll-padding-top: 4.75rem;
  }

  .container {
    width: min(calc(100% - 1.4rem), var(--content));
  }

  .legal-content h1 {
    font-size: clamp(2.15rem, 9.6vw, 3.6rem);
  }

  .header-inner {
    min-height: 4.75rem;
  }

  .site-header,
  .nav-open .site-header {
    background: var(--cream);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand-mark {
    width: 2.4rem;
    height: 2.4rem;
  }

  .js .nav-toggle {
    display: grid;
  }

  .js .site-nav {
    position: fixed;
    z-index: 110;
    top: 4.75rem;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.1rem;
    visibility: hidden;
    border-top: 1px solid var(--sand-200);
    background: #faf7f1;
    box-shadow: 0 1.5rem 3rem rgba(20, 36, 27, 0.18);
    opacity: 0;
    transform: translateY(-0.75rem);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .js .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav ul {
    display: grid;
    gap: 0;
    padding: 0.35rem 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    background: #faf7f1;
  }

  .site-nav a {
    display: block;
    padding: 0.9rem 0.3rem;
    border-bottom: 1px solid var(--sand-200);
    font-size: 1.05rem;
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    display: flex;
    margin-top: 1rem;
    color: var(--white);
  }

  .hero {
    display: block;
    min-height: 0;
  }

  .hero::after {
    display: none;
  }

  .hero-media,
  .hero-media img {
    position: relative;
    z-index: auto;
    width: 100%;
    height: auto;
    inset: auto;
  }

  .hero-media {
    display: block;
  }

  .hero-content {
    padding-block: 2.7rem 3.4rem;
  }

  .hero .button-group .button {
    flex: 1 1 100%;
  }

  .page-hero {
    display: block;
    min-height: 0;
  }

  .page-hero::after {
    display: none;
  }

  .page-hero picture,
  .page-hero picture img {
    position: relative;
    z-index: auto;
    display: block;
    width: 100%;
    height: auto;
    inset: auto;
  }

  .page-hero-content {
    padding-block: 2.7rem 3.2rem;
  }

  .section-heading,
  .cta-inner {
    align-items: start;
    flex-direction: column;
  }

  .split,
  .split-reverse,
  .feature-layout,
  .price-wrap {
    grid-template-columns: 1fr;
  }

  .split-reverse .image-frame {
    order: 2;
  }

  .family-layout .feature-stack {
    grid-template-columns: 1fr;
  }

  .family-layout .feature-stack > :first-child {
    grid-column: auto;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: span 6;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .gallery-item.tall {
    grid-row: span 1;
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

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

  .source-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 36rem) {
  .benefit-grid,
  .room-grid,
  .amenity-grid,
  .rules-grid,
  .contact-grid,
  .location-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .room-card:last-child,
  .amenity-group:last-child,
  .location-card:last-child,
  .footer-main > :first-child {
    grid-column: auto;
  }

  .gallery-item,
  .gallery-item.wide {
    grid-column: 1 / -1;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .gallery-item.tall {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .lightbox {
    width: 100vw;
    height: 100svh;
    border-radius: 0;
  }

  .lightbox-nav {
    width: 3rem;
    height: 3rem;
    font-size: 1.95rem;
  }

  .lightbox-prev {
    left: 0.45rem;
  }

  .lightbox-next {
    right: 0.45rem;
  }

  .lightbox-footer {
    padding: 0.7rem 0.75rem 0.7rem 1rem;
  }

  .lightbox-caption {
    font-size: 0.9rem;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .button,
  .nav-toggle,
  .lightbox {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding-block: 2rem;
  }
}
