:root {
  --frame-max: 1500px;
  --green-900: #0e1c12;
  --green-850: #132315;
  --green-800: #172817;
  --cream: #f3ede4;
  --parchment: #e2dbd1;
  --gold: #a68a67;
  --gold-light: #c7a77c;
  --white: #fffaf2;
  --ink: #20231c;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --serif-features: "kern" 1, "liga" 1, "calt" 1, "onum" 1;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --focus-ring: 0 0 0 2px rgba(239, 237, 232, 0.34), 0 0 0 5px rgba(198, 171, 120, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  background: #0b120d;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  margin: 0;
  color: var(--white);
  background: #0b120d;
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 0;
  box-shadow: var(--focus-ring);
}

.page {
  container-type: inline-size;
  width: min(100%, var(--frame-max));
  margin-inline: auto;
  overflow: visible;
  background: var(--green-900);
}

.hero,
.experience,
.destination,
.newsletter {
  clip-path: inset(0 -100vmax);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.58cqw;
  padding-inline: 2.25cqw;
  border: 1px solid transparent;
  color: var(--white);
  font-size: clamp(8px, 0.72cqw, 11px);
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    color 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    transform 260ms var(--ease-premium);
  will-change: transform;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.8cqw 1.6cqw rgba(0, 0, 0, 0.16);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.button--outline {
  background: rgba(17, 32, 19, 0.74);
  border-color: rgba(198, 171, 120, 0.72);
}

.button--outline:hover {
  background: rgba(24, 42, 26, 0.88);
  border-color: rgba(222, 191, 139, 0.94);
}

.button--gold {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.18);
}

.button--gold:hover {
  background: #b79870;
  border-color: #b79870;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.2),
    0 0.8cqw 1.6cqw rgba(0, 0, 0, 0.16);
}

.button--dark {
  background: var(--green-900);
  border-color: var(--green-900);
  box-shadow: inset 0 1px 0 rgba(255, 250, 242, 0.08);
}

.button--dark:hover {
  background: #172817;
  border-color: #172817;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.1),
    0 0.8cqw 1.6cqw rgba(0, 0, 0, 0.14);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(9px, 0.96cqw, 14px);
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Hero */
.hero {
  position: relative;
  height: 64cqw;
  min-height: 520px;
  max-height: 960px;
  background: #0b150d;
  box-shadow: 0 0 0 100vmax #0b150d;
  isolation: isolate;
}

.hero__image,
.hero::before,
.hero::after {
  position: absolute;
}

.hero__image {
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.03);
}

.hero::before {
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -4;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  opacity: 1;
  content: "";
  background:
    linear-gradient(90deg, #08100a 0%, #0b150d 18%, #0d180f 50%, #0b150d 82%, #08100a 100%);
}

.hero:not(.stay-hero)::before {
  transform: translateX(-50%) scale(1.045);
  filter: blur(16px) saturate(0.96) brightness(0.92);
  background:
    linear-gradient(90deg, rgba(34, 43, 25, 0.78) 0%, rgba(42, 50, 30, 0.44) 18%, rgba(50, 47, 29, 0.08) 48%, rgba(31, 29, 18, 0.34) 100%),
    linear-gradient(180deg, rgba(48, 43, 28, 0.24) 0%, rgba(25, 29, 17, 0.08) 48%, rgba(14, 18, 10, 0.38) 100%),
    url("assets/hero-final.png");
  background-position: center center;
  background-size: cover;
}

.hero.home-hero::before {
  background:
    linear-gradient(90deg, rgba(34, 43, 25, 0.78) 0%, rgba(42, 50, 30, 0.44) 18%, rgba(50, 47, 29, 0.08) 48%, rgba(31, 29, 18, 0.34) 100%),
    linear-gradient(180deg, rgba(48, 43, 28, 0.24) 0%, rgba(25, 29, 17, 0.08) 48%, rgba(14, 18, 10, 0.38) 100%),
    url("assets/keith_assets/brightscreek/00CD496B-46E1-4D02-9E12-EE6999D4624B.png");
  background-position: center center;
  background-size: cover;
}

.home-hero .hero__image {
  filter: saturate(1.02) contrast(1.02) brightness(1.08);
}

.hero::after {
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  content: "";
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 193, 112, 0.13), transparent 22%),
    radial-gradient(ellipse at center, transparent 42%, rgba(4, 8, 5, 0.3) 100%),
    linear-gradient(90deg, rgba(26, 35, 20, 0.66) 0%, rgba(30, 39, 22, 0.34) 16%, rgba(22, 25, 14, 0.08) 58%, rgba(5, 10, 7, 0.2) 82%, rgba(5, 10, 7, 0.72) 100%),
    linear-gradient(180deg, rgba(9, 16, 13, 0.62) 0%, rgba(9, 16, 13, 0.05) 30%, rgba(4, 9, 5, 0.78) 74%, rgba(3, 8, 3, 0.88) 100%);
}

.home-hero::after {
  background:
    radial-gradient(ellipse at 24% 42%, rgba(3, 8, 5, 0.62) 0%, rgba(3, 8, 5, 0.42) 27%, transparent 52%),
    linear-gradient(90deg, rgba(5, 10, 7, 0.74) 0%, rgba(8, 13, 8, 0.48) 29%, rgba(8, 13, 8, 0.16) 58%, rgba(5, 10, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 13, 9, 0.56) 0%, rgba(7, 13, 9, 0.12) 36%, rgba(5, 10, 7, 0.18) 64%, rgba(3, 8, 3, 0.7) 100%);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 20cqw 1fr auto;
  align-items: start;
  width: 100%;
  padding: 0.45cqw 2.35cqw 0 2.75cqw;
}

.site-logo {
  width: 13.05cqw;
  max-width: 154px;
  min-width: 132px;
  transform: translateY(0.72cqw);
}

.site-logo img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2.05cqw;
  padding-top: 2.45cqw;
  color: rgba(255, 250, 242, 0.92);
  font-family: var(--serif);
  font-size: clamp(9px, 0.82cqw, 13px);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 0.35cqw;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -0.4cqw;
  left: 0;
  height: 1px;
  background: rgba(199, 167, 124, 0.82);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 260ms var(--ease-premium);
  content: "";
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.newsletter__link {
  display: inline-block;
  justify-self: start;
  margin-left: 0;
  color: var(--gold-light);
  font-size: clamp(8px, 0.66cqw, 10px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.newsletter__link:hover,
.newsletter__link:focus-visible {
  color: var(--white);
}

.header-actions {
  display: flex;
  gap: 1.7cqw;
  padding-top: 1.2cqw;
}

.header-actions .button {
  width: 11cqw;
  min-width: 112px;
  min-height: 3.35cqw;
}

.mobile-nav-toggle {
  display: none;
}

.site-header--solid {
  position: relative;
  top: auto;
  left: auto;
  z-index: 50;
  min-height: 7.85cqw;
  background: var(--green-900);
  box-shadow:
    0 0 0 100vmax var(--green-900),
    inset 0 -1px 0 rgba(199, 167, 124, 0.14);
  clip-path: inset(0 -100vmax);
}

.site-header--solid .site-logo {
  transform: translateY(0.25cqw);
}

.site-header--solid .site-nav {
  padding-top: 2.95cqw;
}

.site-header--solid .header-actions {
  padding-top: 1.7cqw;
}

.hero__content {
  position: absolute;
  top: 20.85cqw;
  left: 5.95cqw;
  width: 47cqw;
  max-width: 690px;
}

.home-hero .hero__content {
  top: 13.8cqw;
}

.hero__content h1 {
  margin: 1.58cqw 0 1.66cqw;
  font-family: var(--serif);
  font-size: clamp(46px, 5.82cqw, 86px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 0.96;
  text-shadow: 0 2px 28px rgba(3, 8, 3, 0.52), 0 1px 6px rgba(3, 8, 3, 0.28);
}

.hero__copy {
  width: 36cqw;
  max-width: 510px;
  margin: 0 0 2.05cqw;
  color: rgba(255, 250, 242, 0.94);
  font-size: clamp(13px, 1.18cqw, 18px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  gap: 1.35cqw;
}

.hero__actions .button:first-child {
  width: 16.65cqw;
}

.hero__actions .button:last-child {
  width: 10.9cqw;
}

.feature-strip {
  position: absolute;
  right: 8.4cqw;
  bottom: 3.28cqw;
  left: 8.2cqw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 250, 242, 0.32);
  color: var(--white);
}

.feature-strip__item {
  display: grid;
  grid-template-columns: 2.65cqw 1fr;
  align-items: center;
  min-height: 4.05cqw;
  padding: 1.05cqw 1.2cqw 0;
}

.feature-strip__item + .feature-strip__item {
  border-left: 1px solid rgba(255, 250, 242, 0.48);
}

.feature-strip svg {
  width: 2.25cqw;
  height: 2.25cqw;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-strip__horse {
  align-self: center;
  width: 2.35cqw;
  height: auto;
}

.feature-strip strong,
.feature-strip span {
  display: block;
  font-size: clamp(8px, 0.75cqw, 11px);
  line-height: 1.2;
}

.feature-strip strong {
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-strip span {
  margin-top: 0.15cqw;
  font-family: var(--serif);
  font-size: clamp(10px, 0.95cqw, 14px);
}

/* Experience */
.experience {
  position: relative;
  isolation: isolate;
  height: 40.65cqw;
  min-height: 382px;
  max-height: 610px;
  background:
    linear-gradient(180deg, #132415 0%, var(--green-800) 24%, #182b18 58%, #122213 100%);
  box-shadow:
    inset 0 1px 0 rgba(199, 167, 124, 0.14),
    inset 0 -1px 0 rgba(8, 15, 9, 0.32);
}

.experience::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, #132415 0%, var(--green-800) 24%, #182b18 58%, #122213 100%);
  content: "";
}

.experience__inner {
  height: 100%;
  padding: 4.05cqw 4.85cqw 2.55cqw;
}

.section-kicker {
  position: relative;
  text-align: center;
}

.section-kicker::after {
  display: block;
  width: 3.6cqw;
  height: 1px;
  margin: 1.25cqw auto 0;
  background: var(--gold-light);
  content: "";
}

.experience__cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.05cqw;
  margin-top: 2.55cqw;
}

.experience-card {
  position: relative;
  height: 29.8cqw;
  min-height: 275px;
  max-height: 446px;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 121, 0.22);
  background: #0f1c10;
  box-shadow: inset 0 -7cqw 5.8cqw rgba(4, 10, 5, 0.2);
  transition:
    border-color 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium),
    transform 360ms var(--ease-premium);
}

.experience-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 11, 7, 0.06) 0%, rgba(5, 11, 7, 0.01) 24%, rgba(12, 26, 13, 0.52) 54%, rgba(8, 18, 9, 0.88) 74%, rgba(5, 12, 6, 0.97) 100%),
    linear-gradient(90deg, rgba(5, 10, 7, 0.22), transparent 32%, transparent 68%, rgba(5, 10, 7, 0.2));
  content: "";
  transition: opacity 360ms var(--ease-premium);
}

.experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 520ms var(--ease-premium),
    transform 700ms var(--ease-premium);
  will-change: transform;
}

.experience-card:hover,
.experience-card:focus-within {
  border-color: rgba(215, 184, 133, 0.56);
  box-shadow:
    inset 0 -7cqw 5.8cqw rgba(4, 10, 5, 0.18),
    0 1.4cqw 2.6cqw rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.experience-card:hover img,
.experience-card:focus-within img {
  filter: saturate(1.07) contrast(1.04);
  transform: scale(1.035);
}

.experience-card:nth-child(1) img {
  object-position: 82% 58%;
}

.experience-card:nth-child(2) img {
  object-position: 54% 40%;
}

.experience-card:nth-child(3) img {
  object-position: 48% 47%;
}

.experience-card:nth-child(4) img {
  object-position: 50% 48%;
}

.experience-card:nth-child(5) img {
  object-position: 78% 52%;
}

.experience-card__content {
  position: absolute;
  right: 1.85cqw;
  bottom: 1.65cqw;
  left: 1.85cqw;
  z-index: 1;
  isolation: isolate;
  text-align: center;
}

.experience-card__content::before {
  position: absolute;
  inset: -2.5cqw -1.2cqw -1.05cqw;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(4, 10, 5, 0.56), rgba(4, 10, 5, 0) 72%),
    linear-gradient(180deg, rgba(4, 10, 5, 0), rgba(4, 10, 5, 0.48));
  content: "";
}

.experience-card h2 {
  margin: 0 0 0.65cqw;
  font-family: var(--serif);
  font-size: clamp(22px, 2.05cqw, 31px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  line-height: 1;
  text-transform: uppercase;
}

.experience-card p {
  min-height: 2.38cqw;
  margin: 0 0 1.2cqw;
  color: rgba(255, 250, 242, 0.92);
  font-size: clamp(9px, 0.75cqw, 11px);
  line-height: 1.45;
}

.experience-card .button {
  width: 100%;
  min-height: 2.95cqw;
  padding-inline: 0.72cqw;
  font-size: clamp(8px, 0.64cqw, 10px);
  letter-spacing: 0.1em;
}

/* Destination */
.destination {
  position: relative;
  isolation: isolate;
  height: 36.6cqw;
  min-height: 360px;
  max-height: 568px;
  overflow: visible;
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 250, 242, 0.62), transparent 34%),
    linear-gradient(180deg, #f3f0eb 0%, var(--cream) 48%, #e8e3dc 100%);
  box-shadow:
    inset 0 1px 0 rgba(153, 126, 88, 0.28),
    inset 0 -1px 0 rgba(153, 126, 88, 0.2);
  color: var(--ink);
}

.destination::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 250, 242, 0.62), transparent 34%),
    linear-gradient(180deg, #f3f0eb 0%, var(--cream) 48%, #e8e3dc 100%);
  content: "";
}

.destination__inner {
  display: grid;
  grid-template-columns: 32.8cqw 1fr;
  gap: 1.7cqw;
  height: 100%;
  padding: 2.35cqw 4.75cqw 2.35cqw 6.65cqw;
}

.destination__copy {
  padding-top: 2.05cqw;
}

.destination__copy h2 {
  margin: 1.25cqw 0 1.55cqw;
  font-family: var(--serif);
  font-size: clamp(31px, 3.08cqw, 46px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 1.03;
}

.destination__copy > p:not(.eyebrow) {
  width: 31.5cqw;
  max-width: 465px;
  margin: 0 0 2.45cqw;
  color: #2f332b;
  font-size: clamp(12px, 1cqw, 15px);
  line-height: 1.86;
}

.destination .button {
  width: 19.7cqw;
  min-height: 3.7cqw;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.48fr 0.98fr;
  grid-template-rows: 1.53fr 0.95fr;
  gap: 0.72cqw;
  align-self: center;
  height: 32.1cqw;
  min-height: 320px;
  max-height: 487px;
  filter: drop-shadow(0 1.2cqw 1.9cqw rgba(31, 28, 22, 0.12));
}

.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms var(--ease-premium),
    transform 700ms var(--ease-premium);
}

.mosaic img:hover,
.mosaic > *:hover img,
.mosaic__stack img:hover,
.mosaic__bottom img:hover {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.018);
}

.mosaic > *,
.mosaic__stack,
.mosaic__bottom {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 242, 0.2);
}

.mosaic__large {
  object-position: 50% 48%;
}

.mosaic__stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.72cqw;
}

.mosaic__stack img:first-child {
  object-position: 50% 47%;
}

.mosaic__stack img:last-child {
  object-position: 46% 47%;
}

.mosaic__bottom {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 0.97fr 1.05fr;
  gap: 0.72cqw;
}

.mosaic__bottom img:first-child {
  object-position: 50% 45%;
}

.mosaic__bottom img:last-child {
  object-position: 49% 55%;
}

/* Dining page */
.page--interior {
  background: var(--cream);
  color: var(--ink);
}

.dining-page {
  position: relative;
  min-height: 100vh;
}

.dining-hero,
.dining-features,
.dining-story,
.dining-experiences,
.dining-cta {
  position: relative;
  clip-path: inset(0 -100vmax);
}

.dining-hero {
  display: block;
  height: 52cqw;
  min-height: 520px;
  max-height: 780px;
  overflow: visible;
  background: #f3ede4;
  box-shadow: 0 0 0 100vmax #f3ede4;
}

.dining-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  filter: blur(16px) saturate(0.98) brightness(0.98);
  background:
    linear-gradient(90deg, rgba(243, 237, 228, 0.9) 0%, rgba(243, 237, 228, 0.62) 18%, rgba(243, 237, 228, 0.12) 48%, rgba(243, 237, 228, 0.22) 100%),
    linear-gradient(180deg, rgba(243, 237, 228, 0.16) 0%, rgba(243, 237, 228, 0.04) 54%, rgba(18, 18, 14, 0.1) 100%),
    url("assets/dining-hero-premium.jpg");
  background-position: 62% 42%;
  background-size: cover;
  content: "";
}

.dining-hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      #f3ede4 0%,
      #f3ede4 16%,
      rgba(243, 237, 228, 0.86) 26%,
      rgba(243, 237, 228, 0.34) 37%,
      rgba(243, 237, 228, 0.06) 47%,
      transparent 55%,
      rgba(243, 237, 228, 0.06) 92%,
      rgba(243, 237, 228, 0.1) 100%
    );
  content: "";
  pointer-events: none;
}

.dining-hero__copy {
  position: relative;
  z-index: 3;
  width: 37cqw;
  max-width: 555px;
  padding: 14.15cqw 2.6cqw 3cqw 5.75cqw;
}

.dining-hero__copy .eyebrow {
  margin-bottom: 1cqw;
}

.dining-hero__copy h1 {
  margin: 0 0 1.3cqw;
  font-family: var(--serif);
  font-size: clamp(40px, 4.75cqw, 72px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 0.96;
}

.dining-hero__copy p {
  width: 25.5cqw;
  max-width: 382px;
  margin: 0;
  color: #2c3028;
  font-size: clamp(11px, 1.02cqw, 15.5px);
  line-height: 1.58;
}

.dining-hero__actions {
  display: flex;
  gap: 1.35cqw;
  margin-top: 1.9cqw;
}

.dining-hero__actions .button {
  min-height: 3.35cqw;
}

.dining-hero__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 100%
  );
}

.dining-hero__image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(243, 237, 228, 0.5) 0%, rgba(243, 237, 228, 0.14) 16%, transparent 34%),
    radial-gradient(circle at 77% 29%, rgba(255, 250, 242, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(30, 45, 24, 0.03) 0%, transparent 42%, rgba(166, 138, 103, 0.07) 100%);
  content: "";
}

.dining-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 42%;
  filter: saturate(1.22) contrast(1.12) sepia(0.04);
}

.dining-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 13.2cqw;
  min-height: 142px;
  max-height: 198px;
  padding: 2.5cqw 5.65cqw 2.15cqw;
  background:
    radial-gradient(circle at 50% 0%, rgba(166, 138, 103, 0.1), transparent 34%),
    linear-gradient(180deg, #eee8de 0%, #ebe5dc 100%);
  box-shadow:
    0 0 0 100vmax #ebe5dc,
    inset 0 1px 0 rgba(199, 167, 124, 0.24),
    inset 0 -1px 0 rgba(146, 125, 96, 0.26);
}

.dining-feature {
  display: grid;
  justify-items: center;
  align-content: center;
  min-width: 0;
  padding: 0 1.25cqw;
  text-align: center;
}

.dining-feature + .dining-feature {
  border-left: 1px solid rgba(151, 135, 113, 0.26);
}

.dining-feature svg {
  width: 2.85cqw;
  min-width: 32px;
  max-width: 42px;
  height: 2.85cqw;
  min-height: 32px;
  max-height: 42px;
  margin-bottom: 0.72cqw;
  color: #22321f;
  stroke: currentColor;
  stroke-width: 1.38;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dining-feature h2 {
  margin: 0 0 0.35cqw;
  font-family: var(--serif);
  font-size: clamp(18px, 1.36cqw, 21px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 1.05;
}

.dining-feature p {
  margin: 0;
  color: #4d5147;
  font-size: clamp(10px, 0.78cqw, 12px);
  line-height: 1.35;
}

.dining-story {
  display: grid;
  grid-template-columns: 38.5cqw 1fr;
  gap: 4.2cqw;
  min-height: 36cqw;
  padding: 4.75cqw 5.65cqw;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 250, 242, 0.82), transparent 30%),
    linear-gradient(180deg, #f7f1e8 0%, #eee6da 100%);
  box-shadow:
    inset 0 1px 0 rgba(153, 126, 88, 0.2),
    0 0 0 100vmax #f1eadf;
}

.dining-story::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 250, 242, 0.82), transparent 30%),
    linear-gradient(180deg, #f7f1e8 0%, #eee6da 100%);
  content: "";
}

.dining-story__copy {
  align-self: center;
}

.dining-story__copy h2 {
  margin: 1.05cqw 0 1.25cqw;
  font-family: var(--serif);
  font-size: clamp(34px, 3.35cqw, 50px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 1.02;
}

.dining-story__copy > p:not(.eyebrow) {
  width: 32.5cqw;
  max-width: 488px;
  margin: 0;
  color: #2f332b;
  font-size: clamp(13px, 1.05cqw, 16px);
  line-height: 1.76;
}

.dining-story__details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 35.4cqw;
  max-width: 532px;
  margin-top: 2.2cqw;
  border-top: 1px solid rgba(146, 125, 96, 0.32);
  border-bottom: 1px solid rgba(146, 125, 96, 0.24);
}

.dining-story__details span {
  display: grid;
  place-items: center;
  min-height: 4.45cqw;
  padding-inline: 0.8cqw;
  color: #344031;
  font-family: var(--serif);
  font-size: clamp(13px, 1.05cqw, 16px);
  line-height: 1.15;
  text-align: center;
}

.dining-story__details span + span {
  border-left: 1px solid rgba(146, 125, 96, 0.24);
}

.dining-story__media {
  position: relative;
  align-self: center;
  min-height: 27.5cqw;
}

.dining-story__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04) sepia(0.02);
}

.dining-story__media .dining-story__image-main {
  width: 100%;
  height: 27.5cqw;
  min-height: 300px;
  max-height: 412px;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(146, 125, 96, 0.28);
  box-shadow: 0 1.3cqw 2.4cqw rgba(37, 32, 24, 0.15);
  object-position: 50% 44%;
}

.dining-story__media .dining-story__image-accent {
  position: absolute;
  right: 1.75cqw;
  bottom: -1.65cqw;
  width: 14.9cqw;
  height: 9.7cqw;
  border: 0.55cqw solid #f7f1e8;
  box-shadow: 0 1cqw 2cqw rgba(37, 32, 24, 0.2);
  object-position: 50% 48%;
}

.dining-experiences {
  padding: 4.9cqw 5.2cqw 5.2cqw;
  isolation: isolate;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.dining-experiences::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 250, 242, 0.82), transparent 25%),
    radial-gradient(circle at 17% 76%, rgba(25, 43, 24, 0.09), transparent 28%),
    radial-gradient(circle at 86% 62%, rgba(166, 138, 103, 0.12), transparent 27%),
    linear-gradient(180deg, #f5efe6 0%, #eee8de 54%, #e5ded3 100%);
  content: "";
}

.dining-experiences .section-kicker {
  color: var(--gold-light);
  font-size: clamp(10px, 0.86cqw, 13px);
  letter-spacing: 0.18em;
}

.dining-experiences .section-kicker::after {
  width: 2.75cqw;
  margin-top: 0.8cqw;
  background: rgba(166, 138, 103, 0.58);
}

.dining-experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35cqw;
  margin-top: 4.4cqw;
}

.dining-experience-card {
  display: grid;
  grid-template-rows: 24.2cqw auto;
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(146, 125, 96, 0.28);
  background:
    linear-gradient(180deg, #fffaf2 0%, #f6efe4 100%);
  box-shadow:
    0 1.25cqw 2.4cqw rgba(37, 32, 24, 0.13),
    inset 0 1px 0 rgba(255, 250, 242, 0.82);
  transition:
    border-color 300ms var(--ease-premium),
    box-shadow 300ms var(--ease-premium),
    transform 300ms var(--ease-premium);
}

.dining-experience-card:hover,
.dining-experience-card:focus-within {
  border-color: rgba(166, 138, 103, 0.5);
  box-shadow:
    0 1.55cqw 2.75cqw rgba(37, 32, 24, 0.16),
    inset 0 1px 0 rgba(255, 250, 242, 0.9);
  transform: translateY(-2px);
}

.dining-experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms var(--ease-premium),
    transform 680ms var(--ease-premium);
  filter: saturate(1.13) contrast(1.05) sepia(0.03);
}

.dining-experience-card:hover img,
.dining-experience-card:focus-within img {
  filter: saturate(1.17) contrast(1.06) sepia(0.03);
  transform: scale(1.025);
}

.dining-experience-card:nth-child(1) img {
  object-position: 50% 48%;
}

.dining-experience-card:nth-child(2) img {
  object-position: 50% 46%;
}

.dining-experience-card:nth-child(3) img {
  object-position: 53% 42%;
}

.dining-experience-card div {
  min-height: 8.65cqw;
  padding: 1.55cqw 1.2cqw 1.35cqw;
  border-top: 1px solid rgba(146, 125, 96, 0.18);
}

.dining-experience-card h3 {
  margin: 0 0 0.55cqw;
  font-family: var(--serif);
  font-size: clamp(21px, 1.68cqw, 25px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 1.05;
}

.dining-experience-card p {
  width: 17.5cqw;
  max-width: 262px;
  margin: 0 auto;
  color: #4d5147;
  font-size: clamp(11px, 0.82cqw, 12.5px);
  line-height: 1.45;
}

.dining-cta {
  --dining-cta-bg: #e2dbd1;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3cqw;
  min-height: 15.2cqw;
  padding: 3.65cqw 5.65cqw;
  isolation: isolate;
  overflow: hidden;
  color: var(--ink);
  background: var(--dining-cta-bg);
  box-shadow:
    inset 0 1px 0 rgba(153, 126, 88, 0.22),
    inset 0 -1px 0 rgba(153, 126, 88, 0.16),
    0 0 0 100vmax var(--dining-cta-bg);
}

.dining-cta::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background: var(--dining-cta-bg);
  content: "";
}

.dining-cta__copy {
  max-width: 52cqw;
}

.dining-cta .eyebrow {
  margin-bottom: 0.9cqw;
}

.dining-cta h2 {
  margin: 0 0 0.85cqw;
  font-family: var(--serif);
  font-size: clamp(31px, 3.05cqw, 46px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 1.02;
}

.dining-cta__copy > p:not(.eyebrow) {
  width: 38cqw;
  max-width: 570px;
  margin: 0;
  color: #2f332b;
  font-size: clamp(12px, 1cqw, 15px);
  line-height: 1.65;
}

.dining-cta__actions {
  display: flex;
  gap: 1.15cqw;
}

.dining-cta .button {
  min-height: 3.8cqw;
  min-width: 15.6cqw;
  font-size: clamp(8.5px, 0.72cqw, 11px);
}

/* Newsletter */
.newsletter {
  position: relative;
  z-index: 5;
  isolation: isolate;
  height: 8.9cqw;
  min-height: 82px;
  max-height: 134px;
  background:
    linear-gradient(180deg, #152715 0%, var(--green-800) 54%, #122313 100%);
  box-shadow: inset 0 1px 0 rgba(199, 167, 124, 0.18);
}

.newsletter::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, #152715 0%, var(--green-800) 54%, #122313 100%);
  content: "";
}

.newsletter__inner {
  display: grid;
  grid-template-columns:
    auto
    max-content
    max-content
    minmax(250px, 1fr)
    minmax(340px, 27.2cqw);
  align-items: center;
  gap: clamp(18px, 1.45cqw, 22px);
  height: 100%;
  padding-inline: clamp(48px, 6.2cqw, 96px);
}

.newsletter__icon {
  width: 2.85cqw;
  min-width: 28px;
  color: var(--gold-light);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.newsletter__copy h2 {
  margin: 0 0 0.55cqw;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(14px, 1.18cqw, 18px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.newsletter__copy p {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(9px, 0.72cqw, 11px);
  line-height: 1.45;
}

.newsletter__form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(112px, 9.1cqw);
  justify-self: end;
  width: 100%;
  max-width: 392px;
}

.newsletter__form input,
.newsletter__form button {
  height: 3.55cqw;
  min-height: 34px;
  border: 1px solid rgba(198, 171, 120, 0.36);
}

.newsletter__form input {
  width: 100%;
  padding: 0 1.35cqw;
  color: var(--white);
  background: #172516;
  border-right: 0;
  font-size: clamp(8px, 0.72cqw, 11px);
  transition:
    background-color 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium);
}

.newsletter__form input::placeholder {
  color: rgba(255, 250, 242, 0.72);
}

.newsletter__form button {
  width: 100%;
  color: var(--white);
  background: var(--gold);
  border-color: var(--gold);
  font-size: clamp(8px, 0.72cqw, 11px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium);
}

.newsletter__form input:hover,
.newsletter__form input:focus {
  background: #1b2c19;
  border-color: rgba(218, 188, 137, 0.58);
}

.newsletter__form button:hover,
.newsletter__form button:focus-visible {
  background: #b79870;
  border-color: #b79870;
}

.newsletter__status {
  position: absolute;
  top: calc(100% + 0.45cqw);
  left: 0;
  width: 100%;
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(9px, 0.72cqw, 11px);
  line-height: 1.2;
  opacity: 0;
  transform: translateY(-2px);
  transition:
    color 220ms var(--ease-premium),
    opacity 220ms var(--ease-premium),
    transform 220ms var(--ease-premium);
  pointer-events: none;
}

.newsletter__form[data-state] .newsletter__status {
  opacity: 1;
  transform: translateY(0);
}

.newsletter__form[data-state="success"] .newsletter__status {
  color: rgba(199, 167, 124, 0.95);
}

.newsletter__form[data-state="error"] .newsletter__status {
  color: rgba(255, 214, 186, 0.94);
}

.newsletter__form[data-state="error"] input {
  border-color: rgba(255, 214, 186, 0.62);
  box-shadow: inset 0 0 0 1px rgba(255, 214, 186, 0.14);
}

@keyframes premium-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes premium-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Hero fires on page load */
.site-header {
  animation-name: premium-fade-in;
  animation-duration: 760ms;
  animation-fill-mode: both;
  animation-timing-function: var(--ease-premium);
  animation-delay: 80ms;
}

.hero__content {
  animation-name: premium-fade-up;
  animation-duration: 760ms;
  animation-fill-mode: both;
  animation-timing-function: var(--ease-premium);
  animation-delay: 180ms;
}

.feature-strip {
  animation-name: premium-fade-in;
  animation-duration: 760ms;
  animation-fill-mode: both;
  animation-timing-function: var(--ease-premium);
  animation-delay: 360ms;
}

/* Dining hero fires on page load */
.dining-page .dining-hero__copy .eyebrow {
  animation: premium-fade-up 680ms var(--ease-premium) 60ms both;
}

.dining-page .dining-hero__copy h1 {
  animation: premium-fade-up 760ms var(--ease-premium) 210ms both;
}

.dining-page .dining-hero__copy > p:not(.eyebrow) {
  animation: premium-fade-up 700ms var(--ease-premium) 370ms both;
}

.dining-page .dining-hero__actions {
  animation: premium-fade-up 680ms var(--ease-premium) 510ms both;
}

.dining-page .dining-hero__image img {
  animation: dining-image-reveal 1500ms var(--ease-premium) 80ms both;
}

@keyframes dining-image-reveal {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Below-fold sections: hidden only when JS is ready, revealed by IntersectionObserver */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms var(--ease-premium),
    transform 700ms var(--ease-premium);
}

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

.js-ready .reveal-fade {
  opacity: 0;
  transition: opacity 700ms var(--ease-premium);
}

.js-ready .reveal-fade.is-visible {
  opacity: 1;
}

.js-ready .reveal--delay-1 { transition-delay: 80ms; }
.js-ready .reveal--delay-2 { transition-delay: 160ms; }
.js-ready .reveal--delay-3 { transition-delay: 240ms; }
.js-ready .reveal--delay-4 { transition-delay: 320ms; }
.js-ready .reveal--delay-5 { transition-delay: 400ms; }

/* Section kicker: gold line grows out after the text reveals */
.js-ready .section-kicker::after {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 580ms var(--ease-premium) 360ms;
}

.js-ready .section-kicker.is-visible::after {
  transform: scaleX(1);
}

/* Feature icon: lift + shift to gold on hover */
.dining-feature {
  transition: transform 340ms var(--ease-premium);
}

.dining-feature svg {
  transition:
    transform 360ms var(--ease-premium),
    color 360ms var(--ease-premium);
}

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

.dining-feature:hover svg,
.dining-feature:focus-within svg {
  transform: translateY(-4px);
  color: var(--gold);
}

/* Experience card: image subtly brightens on card hover */
.dining-experience-card img {
  transition:
    filter 500ms var(--ease-premium),
    transform 700ms var(--ease-premium);
}

.dining-experience-card:hover img,
.dining-experience-card:focus-within img {
  filter: saturate(1.2) contrast(1.07) sepia(0.02) brightness(1.06);
  transform: scale(1.03);
}

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

@media (min-width: 1501px) {
  .hero:not(.stay-hero)::before {
    background:
      linear-gradient(90deg, rgba(18, 22, 14, 0.36) 0%, rgba(32, 37, 23, 0.22) 18%, rgba(50, 47, 29, 0.08) 48%, rgba(31, 29, 18, 0.34) 100%),
      linear-gradient(180deg, rgba(48, 43, 28, 0.24) 0%, rgba(25, 29, 17, 0.08) 48%, rgba(14, 18, 10, 0.38) 100%),
      url("assets/hero-final.png");
  }

  .hero:not(.stay-hero)::after {
    background:
      radial-gradient(circle at 78% 18%, rgba(255, 193, 112, 0.13), transparent 22%),
      radial-gradient(ellipse at center, transparent 42%, rgba(4, 8, 5, 0.3) 100%),
      linear-gradient(90deg, rgba(26, 35, 20, 0.42) 0%, rgba(30, 39, 22, 0.22) 16%, rgba(22, 25, 14, 0.08) 58%, rgba(5, 10, 7, 0.2) 82%, rgba(5, 10, 7, 0.72) 100%),
      linear-gradient(180deg, rgba(9, 16, 13, 0.62) 0%, rgba(9, 16, 13, 0.05) 30%, rgba(4, 9, 5, 0.78) 74%, rgba(3, 8, 3, 0.88) 100%);
  }

  .hero__image {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.38) 5%, #000 17%, #000 83%, rgba(0, 0, 0, 0.38) 95%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.38) 5%, #000 17%, #000 83%, rgba(0, 0, 0, 0.38) 95%, transparent 100%);
  }

  .hero:not(.stay-hero) .hero__image {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.38) 2%, rgba(0, 0, 0, 0.78) 5%, #000 11%, #000 96%, rgba(0, 0, 0, 0.82) 98.5%, rgba(0, 0, 0, 0.48) 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.38) 2%, rgba(0, 0, 0, 0.78) 5%, #000 11%, #000 96%, rgba(0, 0, 0, 0.82) 98.5%, rgba(0, 0, 0, 0.48) 100%);
  }

  .hero.home-hero::before {
    background:
      linear-gradient(90deg, rgba(13, 18, 11, 0.22) 0%, rgba(30, 34, 21, 0.12) 18%, rgba(50, 47, 29, 0.04) 50%, rgba(30, 34, 21, 0.12) 82%, rgba(13, 18, 11, 0.22) 100%),
      linear-gradient(180deg, rgba(48, 43, 28, 0.24) 0%, rgba(25, 29, 17, 0.08) 48%, rgba(14, 18, 10, 0.38) 100%),
      url("assets/keith_assets/brightscreek/00CD496B-46E1-4D02-9E12-EE6999D4624B.png");
    background-position: center center;
  }

  .hero.home-hero::after {
    background:
      radial-gradient(ellipse at center, transparent 48%, rgba(4, 8, 5, 0.22) 100%),
      linear-gradient(90deg, rgba(5, 10, 7, 0.56) 0%, rgba(7, 12, 8, 0.34) 6%, rgba(8, 13, 8, 0.12) 14%, rgba(8, 13, 8, 0.04) 50%, rgba(8, 13, 8, 0.12) 86%, rgba(7, 12, 8, 0.34) 94%, rgba(5, 10, 7, 0.56) 100%),
      linear-gradient(180deg, rgba(7, 13, 9, 0.56) 0%, rgba(7, 13, 9, 0.12) 36%, rgba(5, 10, 7, 0.18) 64%, rgba(3, 8, 3, 0.7) 100%);
  }

  .hero.home-hero .hero__image {
    object-position: center center;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 2.5%, rgba(0, 0, 0, 0.86) 6%, #000 10%, #000 90%, rgba(0, 0, 0, 0.86) 94%, rgba(0, 0, 0, 0.48) 97.5%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.48) 2.5%, rgba(0, 0, 0, 0.86) 6%, #000 10%, #000 90%, rgba(0, 0, 0, 0.86) 94%, rgba(0, 0, 0, 0.48) 97.5%, transparent 100%);
  }

  .dining-hero__image {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.42) 4%,
      #000 12%,
      #000 96%,
      rgba(0, 0, 0, 0.76) 98.4%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.42) 4%,
      #000 12%,
      #000 96%,
      rgba(0, 0, 0, 0.76) 98.4%,
      transparent 100%
    );
  }
}

@media (max-width: 980px) and (min-width: 761px) {
  .site-header {
    grid-template-columns: 17cqw 1fr auto;
    padding-inline: 2cqw;
  }

  .site-nav {
    gap: 1.45cqw;
  }

  .header-actions {
    gap: 1cqw;
  }

  .header-actions .button {
    width: 10.4cqw;
    min-width: 98px;
  }

  .newsletter__inner {
    padding-inline: clamp(36px, 6cqw, 60px);
  }

  .dining-hero__copy {
    padding-left: 4.2cqw;
  }

  .dining-hero__copy p {
    width: 30cqw;
  }
}

@media (max-width: 760px) {
  .hero,
  .experience,
  .destination,
  .newsletter {
    height: auto;
    max-height: none;
  }

  .hero {
    min-height: 780px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 18px;
    padding: 18px 20px 0;
  }

  .site-logo {
    width: 128px;
    min-width: 0;
  }

  .site-nav {
    grid-column: 1 / 3;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 4px;
    font-size: 12px;
  }

  .dining-page .site-nav {
    color: rgba(32, 35, 28, 0.92);
  }

  .header-actions {
    gap: 8px;
    padding-top: 10px;
  }

  .header-actions .button {
    width: auto;
    min-width: 0;
    min-height: 36px;
    padding-inline: 12px;
  }

  .hero__content {
    top: 225px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .hero__content h1 {
    font-size: 48px;
  }

  .hero__copy {
    width: min(100%, 360px);
  }

  .hero__actions,
  .feature-strip,
  .experience__cards,
  .destination__inner,
  .newsletter__inner {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-wrap: wrap;
  }

  .hero__actions .button:first-child,
  .hero__actions .button:last-child {
    width: auto;
    min-width: 156px;
    min-height: 40px;
  }

  .feature-strip {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .feature-strip__item {
    grid-template-columns: 36px 1fr;
    min-height: 56px;
    padding: 10px 0;
  }

  .feature-strip__item + .feature-strip__item {
    border-top: 1px solid rgba(255, 250, 242, 0.28);
    border-left: 0;
  }

  .feature-strip svg {
    width: 24px;
    height: 24px;
  }

  .feature-strip__horse {
    width: 26px;
  }

  .experience__inner,
  .destination__inner,
  .newsletter__inner {
    padding: 42px 24px;
  }

  .experience__cards {
    gap: 18px;
  }

  .experience-card {
    height: 380px;
  }

  .experience-card .button,
  .destination .button {
    width: auto;
    min-height: 40px;
  }

  .experience-card .button {
    padding-inline: 18px;
    font-size: 9px;
  }

  .destination__copy,
  .destination__copy > p:not(.eyebrow) {
    width: auto;
  }

  .mosaic {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .mosaic__stack,
  .mosaic__bottom {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .mosaic img {
    aspect-ratio: 16 / 10;
  }

  .newsletter__inner {
    gap: 14px;
  }

  .newsletter__form {
    grid-template-columns: minmax(0, 1fr) minmax(112px, 36%);
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }

  .newsletter__form input,
  .newsletter__form button {
    height: 42px;
  }

  .newsletter__form input {
    width: 100%;
  }

  .newsletter__form button {
    width: 100%;
  }

  .dining-hero,
  .dining-features,
  .dining-story,
  .dining-experiences,
  .dining-cta {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .dining-hero {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    min-height: 0;
    overflow: hidden;
  }

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

  .dining-hero__copy {
    width: auto;
    max-width: none;
    padding: 216px 24px 34px;
  }

  .dining-hero__copy h1 {
    font-size: 48px;
  }

  .dining-hero__copy p {
    width: min(100%, 360px);
    font-size: 14px;
  }

  .dining-hero__actions {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }

  .dining-hero__actions .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 8px;
  }

  .dining-hero__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .dining-hero__image::after {
    background:
      linear-gradient(180deg, #f3ede4 0%, rgba(243, 237, 228, 0.7) 14%, transparent 34%, rgba(20, 31, 17, 0.18) 100%),
      linear-gradient(90deg, rgba(243, 237, 228, 0.78) 0%, transparent 18%, transparent 82%, rgba(243, 237, 228, 0.58) 100%);
  }

  .dining-hero__image img {
    object-position: 58% 42%;
  }

  .dining-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 28px 24px 24px;
  }

  .dining-feature {
    min-height: 112px;
    padding: 0 14px 18px;
  }

  .dining-feature:nth-child(odd) {
    border-left: 0;
  }

  .dining-feature:nth-child(n + 3) {
    padding-top: 22px;
    border-top: 1px solid rgba(151, 135, 113, 0.26);
  }

  .dining-feature svg {
    width: 34px;
    height: 34px;
    margin-bottom: 12px;
  }

  .dining-story {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 24px 54px;
  }

  .dining-story__copy > p:not(.eyebrow),
  .dining-story__details {
    width: auto;
    max-width: none;
  }

  .dining-story__copy h2 {
    font-size: 38px;
  }

  .dining-story__details {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .dining-story__details span {
    min-height: 48px;
    padding: 12px;
  }

  .dining-story__details span + span {
    border-top: 1px solid rgba(146, 125, 96, 0.24);
    border-left: 0;
  }

  .dining-story__media {
    min-height: 0;
  }

  .dining-story__media .dining-story__image-main {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 11;
  }

  .dining-story__media .dining-story__image-accent {
    right: 16px;
    bottom: -18px;
    width: 42%;
    height: auto;
    aspect-ratio: 472 / 315;
    border-width: 6px;
  }

  .dining-experiences {
    padding: 42px 24px 56px;
  }

  .dining-experience-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

  .dining-experience-card {
    grid-template-rows: 240px auto;
  }

  .dining-experience-card div {
    min-height: 118px;
    padding: 24px 18px 22px;
  }

  .dining-experience-card p {
    width: min(100%, 260px);
  }

  .dining-cta {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 42px 24px;
  }

  .dining-cta__copy,
  .dining-cta__copy > p:not(.eyebrow) {
    width: auto;
    max-width: none;
  }

  .dining-cta h2 {
    font-size: 38px;
  }

  .dining-cta__actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .dining-cta .button {
    min-width: 0;
    min-height: 42px;
  }
}

/* Stay page */
.stay-hero .hero__image {
  object-position: 58% 48%;
  filter: saturate(1.02) contrast(0.98) sepia(0.08);
  -webkit-mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    #000 0%,
    #000 100%
  );
}

.stay-hero {
  height: 52cqw;
  min-height: 520px;
  max-height: 780px;
  background: #f3ede4;
  box-shadow: 0 0 0 100vmax #f3ede4;
}

.stay-hero::before {
  transform: translateX(-50%) scale(1.045);
  filter: blur(16px) saturate(0.86) brightness(1.08);
  background:
    linear-gradient(90deg, rgba(106, 89, 69, 0.42) 0%, rgba(152, 132, 103, 0.24) 18%, rgba(243, 237, 228, 0.14) 48%, rgba(243, 237, 228, 0.42) 100%),
    linear-gradient(180deg, rgba(243, 237, 228, 0.12) 0%, rgba(243, 237, 228, 0.06) 56%, rgba(243, 237, 228, 0.16) 100%),
    url("assets/Laurel_oak_den.png");
  background-position: 58% 48%;
  background-size: cover;
}

.stay-hero::after {
  background:
    radial-gradient(ellipse at 21% 47%, rgba(24, 20, 15, 0.58) 0%, rgba(35, 29, 22, 0.38) 24%, transparent 42%),
    linear-gradient(
      90deg,
      rgba(58, 47, 36, 0.34) 0%,
      rgba(70, 57, 43, 0.2) 14%,
      rgba(92, 76, 56, 0.06) 34%,
      transparent 60%,
      rgba(243, 237, 228, 0.06) 92%,
      rgba(243, 237, 228, 0.1) 100%
    ),
    radial-gradient(circle at 74% 24%, rgba(255, 217, 168, 0.12), transparent 28%),
    linear-gradient(
      180deg,
      rgba(243, 237, 228, 0.2) 0%,
      rgba(243, 237, 228, 0.08) 34%,
      rgba(25, 24, 18, 0.24) 68%,
      rgba(19, 20, 15, 0.9) 100%
    );
}

.stay-hero .hero__content {
  top: 13.8cqw;
}

.stay-hero .site-logo img {
  filter: none;
  opacity: 1;
}

@media (min-width: 1501px) {
  .stay-hero .hero__image {
    -webkit-mask-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.14) 0%,
      rgba(0, 0, 0, 0.62) 3%,
      #000 8%,
      #000 96%,
      rgba(0, 0, 0, 0.82) 98.5%,
      rgba(0, 0, 0, 0.48) 100%
    );
    mask-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.14) 0%,
      rgba(0, 0, 0, 0.62) 3%,
      #000 8%,
      #000 96%,
      rgba(0, 0, 0, 0.82) 98.5%,
      rgba(0, 0, 0, 0.48) 100%
    );
  }
}

.stay-lodges {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 4.05cqw 4.85cqw 4.05cqw;
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 18%, rgba(199, 167, 124, 0.09), transparent 34%),
    #2f2b25;
  box-shadow:
    inset 0 1px 0 rgba(199, 167, 124, 0.14),
    inset 0 -1px 0 rgba(22, 24, 16, 0.32);
}

.stay-lodges::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 76% 18%, rgba(199, 167, 124, 0.09), transparent 34%),
    #2f2b25;
  content: "";
}

.stay-lodges__inner {
  max-width: 100%;
}

.stay-lodges__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.55cqw;
}

.stay-lodges__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35cqw;
}

.stay-lodge-card {
  overflow: hidden;
  border: 1px solid rgba(197, 168, 121, 0.22);
  background: #12140f;
  transition:
    transform 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium);
}

.stay-lodges .button--outline {
  background: rgba(20, 20, 15, 0.74);
}

.stay-lodge-card:hover {
  border-color: rgba(215, 184, 133, 0.56);
  transform: translateY(-0.14cqw);
}

.stay-lodge-card__image {
  height: 14.8cqw;
  min-height: 9.35cqw;
  overflow: hidden;
}

.stay-lodge-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-premium);
}

.stay-lodge-card:hover .stay-lodge-card__image img {
  transform: scale(1.035);
}

.stay-lodge-card:nth-child(1) .stay-lodge-card__image img {
  object-position: 50% 43%;
}

.stay-lodge-card:nth-child(1) .stay-lodge-card__image {
  background: url("assets/Jackson-Ridge-Luxury-Cottages-10.jpg") 50% 43% / cover no-repeat;
}

.stay-lodge-card:nth-child(2) .stay-lodge-card__image img {
  object-position: 48% 46%;
}

.stay-lodge-card:nth-child(2) .stay-lodge-card__image {
  background: url("assets/BC-home-real-estate-divider.jpg") 48% 46% / cover no-repeat;
}

.stay-lodge-card:nth-child(3) .stay-lodge-card__image img {
  object-position: 52% 48%;
}

.stay-lodge-card:nth-child(3) .stay-lodge-card__image {
  background: url("assets/Laurel_oak_gathering-kitchen.png") 52% 48% / cover no-repeat;
}

.stay-lodge-card:nth-child(4) .stay-lodge-card__image img {
  object-position: 58% 50%;
}

.stay-lodge-card:nth-child(4) .stay-lodge-card__image {
  background: url("assets/Laurel_oak_den.png") 58% 50% / cover no-repeat;
}

.stay-lodge-card__content {
  padding: 1.25cqw 1.45cqw 1.45cqw;
}

.stay-lodge-card__content h3 {
  margin: 0 0 0.45cqw;
  font-family: var(--serif);
  font-size: clamp(16px, 1.38cqw, 21px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
}

.stay-lodge-card__meta {
  margin: 0 0 0.52cqw;
  color: rgba(255, 250, 242, 0.68);
  font-size: clamp(9px, 0.78cqw, 12px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stay-lodge-card__description {
  margin: 0 0 1cqw;
  color: rgba(255, 250, 242, 0.7);
  font-size: clamp(11px, 0.86cqw, 13px);
  line-height: 1.55;
}

.stay-lodge-card__content a {
  color: var(--gold-light);
  font-size: clamp(9px, 0.72cqw, 11px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stay-packages {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 4.75cqw 4.85cqw 5.2cqw;
  isolation: isolate;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 250, 242, 0.62), transparent 34%),
    linear-gradient(180deg, #f3f0eb 0%, var(--cream) 48%, #e8e3dc 100%);
  box-shadow:
    inset 0 1px 0 rgba(153, 126, 88, 0.28),
    inset 0 -1px 0 rgba(153, 126, 88, 0.2);
}

.stay-packages::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 16% 28%, rgba(255, 250, 242, 0.62), transparent 34%),
    linear-gradient(180deg, #f3f0eb 0%, var(--cream) 48%, #e8e3dc 100%);
  content: "";
}

.stay-packages__inner {
  max-width: 100%;
}

.stay-packages .section-kicker {
  margin-bottom: 3.2cqw;
  text-align: center;
}

.stay-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35cqw;
}

.stay-package {
  display: grid;
  grid-template-columns: 40% 1fr;
  min-height: 16.5cqw;
  overflow: hidden;
  border: 1px solid rgba(146, 125, 96, 0.28);
  background: linear-gradient(180deg, #fffaf2 0%, #f6efe4 100%);
  box-shadow: 0 1.25cqw 2.4cqw rgba(37, 32, 24, 0.13);
  transition:
    transform 300ms var(--ease-premium),
    box-shadow 300ms var(--ease-premium);
}

.stay-package:hover {
  box-shadow: 0 1.55cqw 2.75cqw rgba(37, 32, 24, 0.16);
  transform: translateY(-0.14cqw);
}

.stay-package__image {
  height: 16.5cqw;
  min-height: 16.5cqw;
  overflow: hidden;
}

.stay-package__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 680ms var(--ease-premium);
}

.stay-package:hover .stay-package__image img {
  transform: scale(1.025);
}

.stay-package:nth-child(1) .stay-package__image img {
  object-position: 52% 47%;
}

.stay-package:nth-child(1) .stay-package__image {
  background: url("assets/BrightsCreek_Golf-Award-Winning.jpg") 52% 47% / cover no-repeat;
}

.stay-package:nth-child(2) .stay-package__image img {
  object-position: 50% 45%;
}

.stay-package:nth-child(2) .stay-package__image {
  background: url("assets/celebrate-final.png") 50% 45% / cover no-repeat;
}

.stay-package:nth-child(3) .stay-package__image img {
  object-position: 46% 48%;
}

.stay-package:nth-child(3) .stay-package__image {
  background: url("assets/BC-home-real-estate-divider.jpg") 46% 48% / cover no-repeat;
}

.stay-package__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.8cqw 1.6cqw;
  overflow: hidden;
}

.stay-package__content h3 {
  margin: 0 0 0.8cqw;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 1.85cqw, 28px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
}

.stay-package__content p {
  margin: 0 0 1.4cqw;
  color: #2f332b;
  font-size: clamp(12px, 1cqw, 15px);
  line-height: 1.65;
}

.stay-packages__cta {
  margin-top: 3.2cqw;
  text-align: center;
}

.stay-booking {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 4.2cqw 4.85cqw;
  isolation: isolate;
  text-align: center;
  color: var(--ink);
  background: #e2dbd1;
  box-shadow:
    inset 0 1px 0 rgba(153, 126, 88, 0.22),
    inset 0 -1px 0 rgba(153, 126, 88, 0.16);
}

.stay-booking::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background: #e2dbd1;
  content: "";
}

.stay-booking__heading {
  margin: 0 0 2.4cqw;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(28px, 2.65cqw, 40px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stay-booking__form {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.35cqw;
  flex-wrap: wrap;
}

.stay-booking__field {
  display: flex;
  flex-direction: column;
  gap: 0.55cqw;
  text-align: left;
}

.stay-booking__field label {
  color: #4d5147;
  font-size: clamp(8px, 0.72cqw, 11px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stay-booking__field input,
.stay-booking__field select {
  height: 3.55cqw;
  min-height: 2.55cqw;
  min-width: 13cqw;
  padding: 0 1.2cqw;
  border: 1px solid rgba(146, 125, 96, 0.32);
  background: rgba(255, 250, 242, 0.72);
  color: var(--ink);
  color-scheme: light;
  font: inherit;
  font-size: clamp(9px, 0.78cqw, 12px);
}

.stay-booking__note {
  margin: 1.2cqw 0 0;
  color: rgba(255, 250, 242, 0.48);
  font-size: clamp(10px, 0.78cqw, 12px);
  letter-spacing: 0.04em;
  text-align: center;
}

@media (max-width: 47.5rem) {
  .stay-lodges__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.35cqw;
  }

  .stay-lodges__grid,
  .stay-packages__grid {
    grid-template-columns: 1fr;
  }

  .stay-lodge-card__image {
    min-height: 48cqw;
  }

  .stay-package {
    grid-template-columns: 1fr;
  }

  .stay-package__image {
    height: 48cqw;
    min-height: 48cqw;
  }

  .stay-booking__form {
    align-items: stretch;
  }

  .stay-booking__field,
  .stay-booking__field input,
  .stay-booking__field select {
    width: 100%;
  }
}

/* Dining page edge extension */
.dining-page .dining-hero__image {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 100%
  );
}

@media (min-width: 1501px) {
  .dining-page .dining-hero__image {
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.42) 4%,
      #000 12%,
      #000 96%,
      rgba(0, 0, 0, 0.7) 98.5%,
      rgba(0, 0, 0, 0.18) 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.42) 4%,
      #000 12%,
      #000 96%,
      rgba(0, 0, 0, 0.7) 98.5%,
      rgba(0, 0, 0, 0.18) 100%
    );
  }
}

/* Own page */
main:has(.own-hero) {
  position: relative;
}

main:has(.own-hero) > .site-header {
  background: transparent;
  box-shadow: none;
}

main:has(.own-hero) > .site-header .site-nav {
  color: rgba(32, 35, 28, 0.86);
  text-shadow:
    0 1px 0 rgba(255, 250, 242, 0.38),
    0 0 14px rgba(255, 250, 242, 0.42);
}

.own-hero,
.own-property-types,
.own-map {
  position: relative;
  clip-path: inset(0 -100vmax);
}

.own-hero {
  display: block;
  height: 52cqw;
  min-height: 520px;
  max-height: 780px;
  overflow: visible;
  background: #f3ede4;
  box-shadow: 0 0 0 100vmax #f3ede4;
}

.own-hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  filter: blur(16px) saturate(0.98) brightness(0.98);
  background:
    linear-gradient(90deg, rgba(243, 237, 228, 0.9) 0%, rgba(243, 237, 228, 0.62) 18%, rgba(243, 237, 228, 0.12) 48%, rgba(243, 237, 228, 0.22) 100%),
    linear-gradient(180deg, rgba(243, 237, 228, 0.16) 0%, rgba(243, 237, 228, 0.04) 54%, rgba(18, 18, 14, 0.1) 100%),
    url("assets/Brights-Creek-The-Club-hero3c.jpg");
  background-position: 57% 50%;
  background-size: cover;
  content: "";
}

.own-hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(
      90deg,
      #f3ede4 0%,
      #f3ede4 16%,
      rgba(243, 237, 228, 0.86) 26%,
      rgba(243, 237, 228, 0.34) 37%,
      rgba(243, 237, 228, 0.06) 47%,
      transparent 55%,
      rgba(243, 237, 228, 0.06) 92%,
      rgba(243, 237, 228, 0.1) 100%
    );
  content: "";
  pointer-events: none;
}

.own-hero__copy {
  position: relative;
  z-index: 3;
  width: 37cqw;
  max-width: 555px;
  padding: 14.15cqw 2.6cqw 3cqw 5.75cqw;
}

.own-hero__copy h1 {
  margin: 0 0 1.3cqw;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 4.75cqw, 72px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 0.96;
}

.own-hero__copy p {
  width: 25.5cqw;
  max-width: 382px;
  margin: 0;
  color: #2f332b;
  font-size: clamp(11px, 1.02cqw, 15.5px);
  line-height: 1.58;
}

.own-hero__copy .eyebrow {
  margin-bottom: 1cqw;
}

.own-hero__actions {
  display: flex;
  gap: 1.35cqw;
  margin-top: 1.9cqw;
}

.own-hero__actions .button {
  min-height: 3.35cqw;
}

/* Own hero page-load cascade */
.own-hero .own-hero__copy .eyebrow {
  animation: premium-fade-up 680ms var(--ease-premium) 60ms both;
}

.own-hero .own-hero__copy h1 {
  animation: premium-fade-up 760ms var(--ease-premium) 210ms both;
}

.own-hero .own-hero__copy > p {
  animation: premium-fade-up 700ms var(--ease-premium) 370ms both;
}

.own-hero .own-hero__actions {
  animation: premium-fade-up 680ms var(--ease-premium) 510ms both;
}

.own-hero .own-hero__media img {
  animation: dining-image-reveal 1500ms var(--ease-premium) 80ms both;
}

.own-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 82%,
    rgba(0, 0, 0, 0.55) 91%,
    rgba(0, 0, 0, 0.18) 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 82%,
    rgba(0, 0, 0, 0.55) 91%,
    rgba(0, 0, 0, 0.18) 96%,
    transparent 100%
  );
}

.own-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(243, 237, 228, 0.5) 0%, rgba(243, 237, 228, 0.14) 16%, transparent 34%),
    radial-gradient(circle at 77% 29%, rgba(255, 250, 242, 0.06), transparent 34%),
    linear-gradient(180deg, rgba(30, 45, 24, 0.03) 0%, transparent 42%, rgba(166, 138, 103, 0.07) 100%);
  content: "";
}

.own-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% 50%;
  filter: saturate(1.04) contrast(1.02) sepia(0.03);
}

.own-property-types {
  background: #f3ede4;
  color: var(--ink);
}

.own-map {
  background: #d5cec3;
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(146, 120, 88, 0.28),
    inset 0 -1px 0 rgba(120, 98, 72, 0.2);
}

.own-property-types::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  background: #f3ede4;
  transform: translateX(-50%);
  content: "";
}

.own-map::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  background:
    radial-gradient(circle at 78% 32%, rgba(166, 138, 103, 0.12), transparent 38%),
    #d5cec3;
  transform: translateX(-50%);
  content: "";
}

.own-property-types {
  padding: 4.1cqw 5.75cqw 3.9cqw;
  box-shadow:
    inset 0 1px 0 rgba(199, 167, 124, 0.24),
    inset 0 -1px 0 rgba(153, 126, 88, 0.14);
}

.own-property-types__inner {
  width: 100%;
}

.own-property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25cqw;
  margin-top: 2.1cqw;
}

.own-property-showcase {
  width: min(100%, 72rem);
  margin: 2.15cqw auto 0;
  overflow: hidden;
  border: 1px solid rgba(146, 125, 96, 0.28);
  background: #10180f;
  box-shadow: 0 1.45cqw 3cqw rgba(37, 32, 24, 0.14);
}

.own-property-showcase img {
  width: 100%;
  height: auto;
}

.own-property-grid--actions {
  width: min(100%, 72rem);
  gap: 0;
  margin: 0 auto;
  border: 1px solid rgba(146, 125, 96, 0.26);
  border-top: 0;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 1.05cqw 2.1cqw rgba(37, 32, 24, 0.1);
}

.own-property-card {
  overflow: hidden;
  border: 1px solid rgba(146, 125, 96, 0.28);
  background: linear-gradient(180deg, #fffaf2 0%, #f6efe4 100%);
  box-shadow:
    0 1.25cqw 2.4cqw rgba(37, 32, 24, 0.1),
    inset 0 1px 0 rgba(255, 250, 242, 0.8);
  transition:
    transform 320ms var(--ease-premium),
    border-color 320ms var(--ease-premium),
    box-shadow 320ms var(--ease-premium);
}

.own-property-card:hover,
.own-property-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(166, 138, 103, 0.52);
  box-shadow:
    0 1.6cqw 2.8cqw rgba(37, 32, 24, 0.14),
    inset 0 1px 0 rgba(255, 250, 242, 0.9);
}

.own-property-card div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7cqw;
  padding: 1.65cqw 1.4cqw 1.8cqw;
  border-top: 1px solid rgba(146, 125, 96, 0.16);
  text-align: center;
}

.own-property-grid--actions .own-property-card div {
  min-height: 11.6cqw;
  padding: 1.35cqw 1.15cqw 1.45cqw;
  border-top: 0;
}

.own-property-grid--actions .own-property-card {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.own-property-grid--actions .own-property-card + .own-property-card {
  border-left: 1px solid rgba(146, 125, 96, 0.22);
}

.own-property-grid--actions .own-property-card:hover,
.own-property-grid--actions .own-property-card:focus-within {
  transform: none;
  border-color: rgba(146, 125, 96, 0.22);
  background: rgba(255, 250, 242, 0.42);
  box-shadow: none;
}

.own-property-grid--actions .own-property-card h3 {
  font-size: clamp(18px, 1.42cqw, 23px);
}

.own-property-grid--actions .own-property-card p {
  max-width: 18.5cqw;
  font-size: clamp(10px, 0.82cqw, 12px);
  line-height: 1.45;
}

.own-property-grid--actions .own-property-card .button {
  min-width: 9.6cqw;
  min-height: 2.75cqw;
  margin-top: 0.2cqw;
}

.own-property-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(22px, 1.88cqw, 29px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 1.05;
}

.own-property-card p {
  max-width: 22cqw;
  margin: 0;
  color: #4d5147;
  font-size: clamp(11px, 0.92cqw, 14px);
  line-height: 1.45;
}

.own-property-card .button {
  min-width: 11cqw;
  min-height: 3.2cqw;
  margin-top: 0.4cqw;
  cursor: pointer;
}

.real-estate-drawer {
  width: min(46rem, 92vw);
  max-width: none;
  max-height: none;
  height: 100dvh;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  color: var(--ink);
  translate: 100% 0;
  transition: translate 400ms var(--ease-premium);
}

.real-estate-drawer.is-open {
  translate: 0 0;
}

.real-estate-drawer::backdrop {
  opacity: 0;
  background: rgba(12, 16, 10, 0.52);
  backdrop-filter: blur(4px);
  transition: opacity 400ms var(--ease-premium);
}

.real-estate-drawer.is-open::backdrop {
  opacity: 1;
}

.real-estate-drawer__shell {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: clamp(34px, 4cqw, 52px);
  background: linear-gradient(180deg, #f8f2e9 0%, #eee6da 100%);
  box-shadow:
    -18px 0 48px rgba(25, 22, 16, 0.28),
    inset 1px 0 0 rgba(166, 138, 103, 0.2);
}

.real-estate-drawer__close {
  position: absolute;
  top: 20px;
  right: 22px;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(166, 138, 103, 0.32);
  color: #5a4e3c;
  background: rgba(255, 250, 242, 0.5);
  cursor: pointer;
  transition:
    background 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium);
}

.real-estate-drawer__close:hover {
  background: rgba(255, 250, 242, 0.9);
  border-color: rgba(166, 138, 103, 0.6);
}

.real-estate-drawer__close svg {
  display: block;
}

.real-estate-drawer__kicker {
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}

.real-estate-drawer h2 {
  max-width: 16ch;
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(30px, 2.8cqw, 42px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 1;
  flex-shrink: 0;
}

.real-estate-drawer__intro {
  max-width: 38rem;
  margin: 0 0 1.25rem;
  color: #3e3d35;
  font-size: clamp(12px, 0.92cqw, 14px);
  line-height: 1.65;
  flex-shrink: 0;
}

.real-estate-drawer__list {
  display: grid;
  flex: 1;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
  margin-right: -4px;
  padding-bottom: 1rem;
}

.real-estate-listing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 14px 16px 13px;
  border: 1px solid rgba(166, 138, 103, 0.22);
  background: rgba(255, 250, 242, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.real-estate-listing--with-image {
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 10px;
}

.real-estate-listing__image {
  width: 100%;
  height: 100%;
  min-height: 122px;
  object-fit: cover;
  object-position: center;
}

.real-estate-listing__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(146px, 0.78fr);
  gap: 16px;
  align-items: start;
}

.real-estate-listing--with-image .real-estate-listing__body {
  padding: 4px 6px 4px 0;
}

.real-estate-listing p {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.real-estate-listing h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(18px, 1.55cqw, 24px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 1.08;
}

.real-estate-listing dl {
  display: grid;
  gap: 10px;
  margin: 0;
  align-content: start;
}

.real-estate-listing dt {
  margin-bottom: 0.2rem;
  color: #7c6a52;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.real-estate-listing dd {
  margin: 0;
  color: #39382f;
  font-size: 12px;
  line-height: 1.45;
}

.real-estate-drawer__actions {
  display: flex;
  gap: 12px;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(166, 138, 103, 0.2);
  flex-shrink: 0;
}

.real-estate-drawer__actions .button {
  min-height: 46px;
  flex: 1;
}

.own-map {
  padding: 4.2cqw 5.75cqw 5.2cqw;
}

.own-map__inner {
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 5.2cqw;
  align-items: center;
}

.own-map__copy {
  padding-top: 0.45cqw;
}

.own-map__copy .eyebrow {
  margin-bottom: 1.1cqw;
}

.own-map__copy h2 {
  margin: 0 0 1.45cqw;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(31px, 3.08cqw, 46px);
  font-weight: 400;
  font-feature-settings: var(--serif-features);
  letter-spacing: 0;
  line-height: 1.03;
}

.own-map__copy p {
  width: 23cqw;
  max-width: 340px;
  margin: 0 0 2cqw;
  color: #3a3630;
  font-size: clamp(12px, 1cqw, 15px);
  line-height: 1.72;
}

.own-map__copy .button {
  width: 16.2cqw;
  min-height: 3.35cqw;
}

.own-map__media {
  overflow: hidden;
  border: 1px solid rgba(140, 118, 90, 0.3);
  background: #ccc5b9;
  box-shadow: 0 1.4cqw 2.8cqw rgba(60, 50, 38, 0.18);
}

.own-map__media img {
  display: block;
  width: 100%;
  height: 21.2cqw;
  object-fit: cover;
  object-position: 50% 45%;
}

@media (max-width: 47.5rem) {
  .own-hero {
    height: auto;
    min-height: 230cqw;
    max-height: none;
  }

  .own-hero::after {
    background:
      linear-gradient(180deg, #f3ede4 0%, rgba(243, 237, 228, 0.94) 34%, rgba(243, 237, 228, 0.08) 62%, transparent 84%);
  }

  .own-hero__copy {
    width: auto;
    max-width: none;
    padding: 50cqw 6cqw 8cqw;
  }

  .own-hero__copy h1 {
    font-size: clamp(40px, 12.3cqw, 48px);
  }

  .own-hero__copy > p {
    width: min(100%, 92cqw);
    font-size: clamp(13px, 3.6cqw, 14px);
  }

  .own-hero__actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .own-hero__actions .button {
    min-height: 40px;
    padding-inline: 16px;
  }

  .own-hero__media {
    top: 116cqw;
    bottom: auto;
    height: 108cqw;
  }

  .own-hero__media img {
    object-position: 54% 30%;
  }

  .own-property-types,
  .own-map {
    padding-right: 6cqw;
    padding-left: 6cqw;
  }

  .own-property-grid,
  .own-map__inner {
    grid-template-columns: 1fr;
  }

  .own-property-card div {
    min-height: 24cqw;
    padding: 5cqw 4cqw;
  }

  .own-property-showcase,
  .own-property-grid--actions {
    width: 100%;
  }

  .own-property-grid--actions {
    gap: 12px;
    margin-top: 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .own-property-grid--actions .own-property-card,
  .own-property-grid--actions .own-property-card + .own-property-card {
    border: 1px solid rgba(146, 125, 96, 0.28);
    background: linear-gradient(180deg, #fffaf2 0%, #f6efe4 100%);
  }

  .own-property-grid--actions .own-property-card div {
    min-height: 0;
  }

  .own-property-grid--actions .own-property-card p {
    max-width: none;
  }

  .own-property-grid--actions .own-property-card .button {
    min-height: 40px;
  }

  .own-property-card p,
  .own-map__copy p,
  .own-map__copy .button {
    width: 100%;
  }

  .real-estate-drawer {
    width: 100vw;
    height: 100dvh;
  }

  .real-estate-drawer__shell {
    padding: 78px 22px 28px;
  }

  .real-estate-listing {
    grid-template-columns: 1fr;
  }

  .real-estate-listing--with-image {
    gap: 12px;
    padding: 10px;
  }

  .real-estate-listing__image {
    height: 178px;
    min-height: 0;
  }

  .real-estate-listing__body,
  .real-estate-listing--with-image .real-estate-listing__body {
    grid-template-columns: 1fr;
    padding: 0 4px 4px;
  }

  .real-estate-drawer__actions {
    flex-direction: column;
  }

  .real-estate-drawer__actions .button {
    width: 100%;
  }

  .own-map__media img {
    height: 62cqw;
  }
}

/* Dining page right edge fade experiment */
.dining-page .dining-hero__image {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 100%
  ) !important;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 100%
  ) !important;
}

@media (max-width: 47.5rem) {
  .dining-page .site-header:not(.is-menu-open) .site-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }

  .dining-page .dining-hero {
    display: block;
    min-height: 650px;
    background: #10180f;
  }

  .dining-page .dining-hero::before {
    display: none;
  }

  .dining-page .dining-hero::after {
    display: block;
    background:
      linear-gradient(180deg, rgba(18, 16, 12, 0.08) 0%, rgba(18, 16, 12, 0.22) 34%, rgba(10, 14, 9, 0.78) 76%, rgba(7, 13, 8, 0.96) 100%),
      linear-gradient(90deg, rgba(243, 237, 228, 0.24) 0%, rgba(17, 23, 13, 0.22) 44%, rgba(8, 13, 8, 0.18) 100%);
  }

  .dining-page .dining-hero__copy {
    position: absolute;
    top: 205px;
    left: 24px;
    width: calc(100% - 48px);
    max-width: none;
    padding: 0;
  }

  .dining-page .dining-hero__copy h1 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 52px;
    line-height: 0.92;
    text-shadow: 0 2px 28px rgba(3, 8, 3, 0.52), 0 1px 6px rgba(3, 8, 3, 0.28);
  }

  .dining-page .dining-hero__copy p {
    width: min(100%, 340px);
    color: rgba(255, 250, 242, 0.9);
  }

  .dining-page .dining-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  .dining-page .dining-hero__image::after {
    display: none;
  }

  .dining-page .dining-hero__image img {
    object-position: 55% 42%;
  }
}

/* Explore page */
main:has(.explore-hero) {
  position: relative;
}

.explore-activities {
  --explore-activities-bg:
    radial-gradient(circle at 50% 0%, rgba(199, 167, 124, 0.08), transparent 38%),
    linear-gradient(180deg, #132415 0%, var(--green-800) 24%, #182b18 58%, #122213 100%);

  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 4.05cqw 4.85cqw 4.8cqw;
  isolation: isolate;
  background: var(--explore-activities-bg);
  box-shadow:
    inset 0 0.067cqw 0 rgba(199, 167, 124, 0.14),
    inset 0 -0.067cqw 0 rgba(8, 15, 9, 0.32);
}

.explore-activities::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background: var(--explore-activities-bg);
  content: "";
}

.explore-activities__inner {
  max-width: 100%;
}

.explore-activities__header {
  margin-bottom: 2.8cqw;
  text-align: center;
}

.explore-activities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35cqw;
}

.explore-card {
  overflow: hidden;
  border: 0.067cqw solid rgba(197, 168, 121, 0.22);
  background: #0f1c10;
  transition:
    transform 360ms var(--ease-premium),
    border-color 360ms var(--ease-premium);
}

.explore-card:hover,
.explore-card:focus-within {
  border-color: rgba(215, 184, 133, 0.52);
  transform: translateY(-0.2cqw);
}

.explore-card__image {
  height: 16.8cqw;
  min-height: 10.55cqw;
  overflow: hidden;
}

.explore-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-premium);
}

.explore-card:hover .explore-card__image img,
.explore-card:focus-within .explore-card__image img {
  transform: scale(1.035);
}

.explore-card:nth-child(1) .explore-card__image img {
  object-position: 54% 48%;
}

.explore-card:nth-child(2) .explore-card__image img {
  object-position: 52% 44%;
}

.explore-card:nth-child(3) .explore-card__image img {
  object-position: 48% 48%;
}

.explore-card:nth-child(4) .explore-card__image img {
  object-position: 50% 42%;
}

.explore-card__content {
  min-height: 9.2cqw;
  padding: 1.45cqw 1.4cqw 1.65cqw;
  border-top: 0.067cqw solid rgba(197, 168, 121, 0.14);
}

.explore-card__content h3 {
  margin: 0 0 0.6cqw;
  font-family: var(--serif);
  font-size: clamp(18px, 1.55cqw, 24px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  color: var(--white);
}

.explore-card__content p {
  margin: 0;
  color: rgba(255, 250, 242, 0.72);
  font-size: clamp(10px, 0.82cqw, 12.5px);
  line-height: 1.55;
}

.explore-activities__cta {
  margin-top: 3.2cqw;
  text-align: center;
}

@media (max-width: 61.25rem) and (min-width: 47.5625rem) {
  .explore-activities__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-card__image {
    height: 28cqw;
    min-height: 28cqw;
  }

  .explore-card__content {
    min-height: 11.8cqw;
  }
}

@media (max-width: 47.5rem) {
  .explore-activities {
    padding: 12cqw 6cqw 13cqw;
  }

  .explore-activities__header {
    margin-bottom: 8cqw;
  }

  .explore-activities__grid {
    grid-template-columns: 1fr;
    gap: 4.8cqw;
  }

  .explore-card__image {
    height: 58cqw;
    min-height: 58cqw;
  }

  .explore-card__content {
    min-height: 0;
    padding: 5cqw 4.5cqw 5.4cqw;
  }

  .explore-card__content h3 {
    margin-bottom: 2cqw;
  }

  .explore-activities__cta {
    margin-top: 8cqw;
  }
}

/* Explore mockup alignment */
.explore-hero {
  height: 52cqw;
  min-height: 520px;
  max-height: 780px;
  overflow: visible;
  background: #182116;
  box-shadow: 0 0 0 100vmax #182116;
}

.explore-hero .site-header {
  height: 7.85cqw;
  min-height: 96px;
  padding: 0.45cqw 2.35cqw 0 2.75cqw;
  background: transparent;
  box-shadow: none;
}

.explore-hero .site-logo {
  width: 13.05cqw;
  max-width: 154px;
  min-width: 132px;
  transform: translateY(0.72cqw);
}

.explore-hero .site-nav {
  gap: 2.05cqw;
  padding-top: 2.45cqw;
  font-size: clamp(9px, 0.82cqw, 13px);
}

.explore-hero .header-actions {
  gap: 1.7cqw;
  padding-top: 1.2cqw;
}

.explore-hero .header-actions .button {
  width: 11cqw;
  min-width: 112px;
  min-height: 3.35cqw;
  padding-inline: 2.25cqw;
  font-size: clamp(8px, 0.72cqw, 11px);
  letter-spacing: 0.16em;
}

.explore-hero .hero__image {
  top: 0;
  z-index: 1;
  height: 100%;
  object-position: 52% 44%;
  filter: saturate(1.03) contrast(1.02) brightness(0.92);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 88%,
    rgba(0, 0, 0, 0.55) 94%,
    rgba(0, 0, 0, 0.18) 98%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 88%,
    rgba(0, 0, 0, 0.55) 94%,
    rgba(0, 0, 0, 0.18) 98%,
    transparent 100%
  );
}

.explore-hero::before {
  top: 0;
  z-index: 0;
  transform: translateX(-50%) scale(1.045);
  filter: blur(16px) saturate(0.98) brightness(1.02);
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.24) 0%, rgba(255, 250, 242, 0.1) 18%, rgba(8, 12, 6, 0.02) 50%, rgba(199, 167, 124, 0.16) 82%, rgba(199, 167, 124, 0.32) 100%),
    linear-gradient(180deg, rgba(8, 14, 7, 0.2) 0%, rgba(8, 14, 7, 0.03) 48%, rgba(8, 14, 7, 0.16) 100%),
    url("assets/BrightsCreek_Fall25_CarolinaPines-35-edit.jpg");
  background-position: 58% 44%;
  background-size: 112% auto;
}

.explore-hero::after {
  top: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 14, 8, 0.3) 0%, rgba(7, 14, 8, 0.08) 16%, transparent 34%, transparent 66%, rgba(199, 167, 124, 0.04) 88%, rgba(199, 167, 124, 0.12) 100%),
    radial-gradient(circle at 77% 29%, rgba(255, 217, 168, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(7, 14, 8, 0.08) 0%, transparent 42%, rgba(6, 12, 7, 0.28) 100%);
}

.explore-hero .hero__content {
  z-index: 3;
  top: 18.1cqw;
  left: 5.95cqw;
  width: 47cqw;
  max-width: none;
}

.explore-hero .hero__content h1 {
  margin: 0 0 1.05cqw;
  font-size: clamp(46px, 4.6cqw, 69px);
  line-height: 0.98;
}

.explore-hero .hero__copy {
  width: 34cqw;
  max-width: none;
  margin: 0;
  font-size: clamp(13px, 1.08cqw, 16px);
  line-height: 1.5;
}

.explore-activities {
  --explore-activities-bg: #e2dbd1;

  padding: 5.2cqw 4.85cqw 5.8cqw;
  color: var(--ink);
  background: var(--explore-activities-bg);
  box-shadow:
    inset 0 0.067cqw 0 rgba(120, 98, 68, 0.28),
    inset 0 -0.067cqw 0 rgba(100, 82, 56, 0.28);
}

.explore-activities::before {
  background: var(--explore-activities-bg);
}

.explore-activities__header {
  margin-bottom: 3.15cqw;
}

.explore-activities .section-kicker {
  color: var(--gold-light);
  font-size: clamp(11px, 0.96cqw, 14px);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.explore-activities__grid {
  gap: 1.35cqw;
}

.explore-card {
  border: none;
  background: #f3ede4;
  box-shadow: 0 2px 12px rgba(60, 48, 30, 0.1);
}

.explore-card:hover,
.explore-card:focus-within {
  box-shadow: 0 6px 24px rgba(60, 48, 30, 0.16);
  transform: translateY(-0.2cqw);
}

.explore-card__image {
  height: 18.8cqw;
  min-height: 18.8cqw;
}

.explore-card:nth-child(1) .explore-card__image img {
  object-position: 52% 50%;
}

.explore-card:nth-child(2) .explore-card__image img {
  object-position: 50% 44%;
}

.explore-card:nth-child(3) .explore-card__image img {
  object-position: 50% 40%;
}

.explore-card:nth-child(4) .explore-card__image img {
  object-position: 50% 38%;
}

.explore-card__content {
  min-height: 10.8cqw;
  padding: 1.6cqw 1.4cqw 1.85cqw;
  border-top: 0.067cqw solid rgba(146, 125, 96, 0.14);
}

.explore-card__content h3 {
  margin: 0 0 0.55cqw;
  font-family: var(--serif);
  font-size: clamp(20px, 1.62cqw, 24px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  color: var(--ink);
}

.explore-card__content p {
  margin: 0;
  color: #3a3e34;
  font-size: clamp(11px, 0.88cqw, 13px);
  line-height: 1.58;
}

.explore-activities__cta {
  margin-top: 3.55cqw;
}

.explore-activities__cta .button {
  min-height: 3.8cqw;
  min-width: 14cqw;
  padding-inline: 1.15cqw;
  font-size: clamp(8.5px, 0.72cqw, 11px);
}

.explore-weekend {
  --explore-weekend-bg: #172516;

  position: relative;
  height: 25.2cqw;
  min-height: 320px;
  clip-path: inset(0 -100vmax);
  isolation: isolate;
  overflow: visible;
  background: var(--explore-weekend-bg);
  box-shadow: 0 0 0 100vmax var(--explore-weekend-bg);
}

.explore-weekend::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%) scale(1.045);
  filter: blur(16px) saturate(0.98) brightness(0.92);
  background:
    linear-gradient(90deg, rgba(8, 18, 11, 0.36) 0%, rgba(10, 21, 13, 0.16) 18%, rgba(10, 21, 13, 0.04) 50%, rgba(8, 18, 11, 0.16) 82%, rgba(7, 16, 10, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 18, 11, 0.14) 0%, rgba(8, 18, 11, 0.03) 52%, rgba(8, 18, 11, 0.22) 100%),
    url("assets/BC-amenities-trails.jpg");
  background-position: 54% 44%;
  background-size: 112% auto;
  content: "";
}

.explore-weekend__image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(1.05) contrast(1.04) brightness(0.78);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 88%,
    rgba(0, 0, 0, 0.55) 94%,
    rgba(0, 0, 0, 0.18) 98%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.42) 4%,
    #000 12%,
    #000 88%,
    rgba(0, 0, 0, 0.55) 94%,
    rgba(0, 0, 0, 0.18) 98%,
    transparent 100%
  );
}

.explore-weekend::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 2;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(8, 18, 11, 0.7) 0%, rgba(10, 21, 13, 0.54) 34%, rgba(10, 21, 13, 0.1) 66%, rgba(8, 18, 11, 0.18) 88%, rgba(8, 18, 11, 0.28) 100%),
    linear-gradient(180deg, rgba(8, 18, 11, 0.14) 0%, rgba(8, 18, 11, 0.28) 100%);
  content: "";
}

.explore-weekend__copy {
  position: relative;
  z-index: 3;
  width: 35cqw;
  padding: 2.35cqw 0 0 4.85cqw;
}

.explore-weekend__copy h2 {
  margin: 0 0 1cqw;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(26px, 2.15cqw, 32px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  line-height: 1.05;
}

.explore-weekend__copy p {
  width: 26cqw;
  margin: 0 0 1.08cqw;
  color: rgba(255, 250, 242, 0.86);
  font-size: clamp(11px, 0.88cqw, 13px);
  line-height: 1.55;
}

.explore-weekend__copy .button {
  width: max-content;
  min-height: 3.2cqw;
  min-width: 16.5cqw;
  padding-inline: 1.25cqw;
  font-size: clamp(8px, 0.66cqw, 10px);
  white-space: nowrap;
}

/* Explore hero cascade */
.explore-hero .hero__content .eyebrow { animation: premium-fade-up 680ms var(--ease-premium) 60ms both; }
.explore-hero .hero__content h1 { animation: premium-fade-up 760ms var(--ease-premium) 210ms both; }
.explore-hero .hero__content .hero__copy { animation: premium-fade-up 700ms var(--ease-premium) 370ms both; }
.explore-hero .hero__content .hero__actions { animation: premium-fade-up 680ms var(--ease-premium) 510ms both; }

/* Explore near section */
.explore-near {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 5.5cqw 4.85cqw 5.8cqw;
  isolation: isolate;
  background: #0c1c10;
  box-shadow:
    inset 0 1px 0 rgba(199, 167, 124, 0.12),
    inset 0 -1px 0 rgba(6, 12, 7, 0.4);
}

.explore-near::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  min-width: 100%;
  transform: translateX(-50%);
  background: #0c1c10;
  content: "";
}

.explore-near__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6cqw;
  align-items: center;
}

.explore-near__copy .eyebrow {
  color: var(--gold-light);
}

.explore-near__copy h2 {
  margin: 0.65cqw 0 1.25cqw;
  font-family: var(--serif);
  font-size: clamp(28px, 2.7cqw, 40px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.06;
  font-feature-settings: var(--serif-features);
}

.explore-near__copy > p {
  margin: 0;
  max-width: 36cqw;
  color: rgba(255, 250, 242, 0.74);
  font-size: clamp(12px, 0.92cqw, 14px);
  line-height: 1.65;
}

.explore-near__copy > p + p {
  margin-top: 0.95cqw;
}

.explore-near__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid rgba(199, 167, 124, 0.18);
  background: rgba(199, 167, 124, 0.12);
}

.explore-near__stats article {
  display: flex;
  flex-direction: column;
  gap: 0.45cqw;
  padding: 2cqw 1.8cqw;
  background: #0c1c10;
}

.explore-near__stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 2cqw, 30px);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  font-feature-settings: var(--serif-features);
}

.explore-near__stats span {
  font-family: var(--sans);
  font-size: clamp(9px, 0.74cqw, 11px);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.6);
  line-height: 1.4;
}

@media (max-width: 47.5rem) {
  .explore-near {
    padding: 10cqw 6cqw 11cqw;
  }

  .explore-near__inner {
    grid-template-columns: 1fr;
    gap: 8cqw;
  }

  .explore-near__copy > p {
    max-width: 100%;
  }

  .explore-near__stats article {
    padding: 5cqw 4cqw;
    gap: 1.5cqw;
  }

  .explore-near__stats strong {
    font-size: clamp(24px, 6cqw, 38px);
  }
}

/* Homepage real estate cue */
.home-real-estate {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 5.1cqw 4.85cqw 5.7cqw;
  background: #ece5da;
  box-shadow: 0 0 0 100vmax #ece5da;
  color: var(--ink);
}

.home-real-estate__inner {
  display: grid;
  gap: 2.55cqw;
}

.home-real-estate__copy {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.58fr) auto;
  gap: 1.1cqw 2.25cqw;
  align-items: end;
}

.home-real-estate__copy .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.home-real-estate__copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.1cqw, 47px);
  font-weight: 400;
  line-height: 1.02;
  font-feature-settings: var(--serif-features);
}

.home-real-estate__copy > p:not(.eyebrow) {
  max-width: 36cqw;
  margin: 0;
  color: #39382f;
  font-size: clamp(12px, 0.98cqw, 15px);
  line-height: 1.72;
}

.home-real-estate__copy .button {
  align-self: end;
  min-width: 13.2cqw;
}

.home-real-estate__visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 0.28fr);
  gap: 1.35cqw;
  align-items: start;
}

.home-real-estate__map {
  position: relative;
  margin: 0;
  overflow: hidden;
  padding: 0.62cqw;
  border: 1px solid rgba(146, 125, 96, 0.26);
  background: rgba(255, 250, 242, 0.78);
  box-shadow:
    0 1.35cqw 2.8cqw rgba(37, 32, 24, 0.12),
    inset 0 1px 0 rgba(255, 250, 242, 0.84);
}

.home-real-estate__map img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(69, 61, 43, 0.16);
}

.home-real-estate__side {
  display: grid;
  gap: 1cqw;
  align-self: start;
}

.home-real-estate__link-card {
  display: grid;
  gap: 0.78cqw;
  padding: 0.7cqw;
  border: 1px solid rgba(146, 125, 96, 0.24);
  background: rgba(255, 250, 242, 0.68);
  box-shadow:
    0 1.1cqw 2.2cqw rgba(37, 32, 24, 0.11),
    inset 0 1px 0 rgba(255, 250, 242, 0.76);
  transition:
    border-color 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    transform 260ms var(--ease-premium);
}

.home-real-estate__link-card:hover,
.home-real-estate__link-card:focus-visible {
  border-color: rgba(146, 125, 96, 0.42);
  box-shadow:
    0 1.35cqw 2.6cqw rgba(37, 32, 24, 0.15),
    inset 0 1px 0 rgba(255, 250, 242, 0.84);
  transform: translateY(-2px);
}

.home-real-estate__link-card img {
  width: 100%;
  height: clamp(108px, 9.8cqw, 146px);
  object-fit: cover;
  border: 1px solid rgba(69, 61, 43, 0.16);
}

.home-real-estate__link-card:first-child img {
  object-position: 34% 50%;
}

.home-real-estate__link-card:last-child img {
  object-position: 50% 42%;
}

.home-real-estate__link-card span {
  display: grid;
  gap: 0.45cqw;
  padding: 0 0.35cqw 0.25cqw;
}

.home-real-estate__link-card strong {
  font-family: var(--serif);
  font-size: clamp(19px, 1.48cqw, 23px);
  font-weight: 500;
  line-height: 1;
  font-feature-settings: var(--serif-features);
}

.home-real-estate__link-card small {
  color: #4c483c;
  font-size: clamp(10px, 0.78cqw, 12px);
  line-height: 1.45;
}

.home-real-estate__link-card em {
  color: var(--gold);
  font-size: clamp(8px, 0.64cqw, 10px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 61.25rem) {
  .home-real-estate__copy {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-real-estate__copy > p:not(.eyebrow) {
    max-width: 42rem;
  }

  .home-real-estate__copy .button {
    justify-self: start;
  }

  .home-real-estate__visuals {
    grid-template-columns: 1fr;
    gap: 2.4cqw;
  }
}

/* Homepage club life bridge */
.home-club-life {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 3.05cqw;
  align-items: center;
  padding: 5.35cqw 4.85cqw 5.55cqw;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
  box-shadow:
    0 0 0 100vmax var(--green-900),
    inset 0 1px 0 rgba(199, 167, 124, 0.16);
  clip-path: inset(0 -100vmax);
}

.home-club-life::before {
  content: none;
}

.home-club-life__intro,
.home-club-life__cards {
  position: relative;
  z-index: 1;
}

.home-club-life__intro h2 {
  margin: 1.05cqw 0 1.3cqw;
  font-family: var(--serif);
  font-size: clamp(33px, 3.05cqw, 46px);
  font-weight: 400;
  line-height: 1.02;
  font-feature-settings: var(--serif-features);
}

.home-club-life__intro > p:not(.eyebrow) {
  max-width: 33cqw;
  margin: 0 0 2.15cqw;
  color: rgba(255, 250, 242, 0.78);
  font-size: clamp(12px, 0.96cqw, 14.5px);
  line-height: 1.72;
}

.home-club-life__intro .button {
  min-width: 13.6cqw;
}

.home-club-life__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1cqw;
}

.home-club-life-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 167, 124, 0.22);
  background: rgba(255, 250, 242, 0.045);
  box-shadow: 0 1.2cqw 2.3cqw rgba(0, 0, 0, 0.18);
  transition:
    border-color 320ms var(--ease-premium),
    box-shadow 320ms var(--ease-premium),
    transform 320ms var(--ease-premium);
}

.home-club-life-card:hover,
.home-club-life-card:focus-visible {
  border-color: rgba(218, 187, 134, 0.48);
  box-shadow: 0 1.45cqw 2.6cqw rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.home-club-life-card img {
  width: 100%;
  aspect-ratio: 512 / 336;
  height: auto;
  object-fit: cover;
  transition:
    filter 420ms var(--ease-premium),
    transform 700ms var(--ease-premium);
}

.home-club-life-card:hover img,
.home-club-life-card:focus-visible img {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.025);
}

.home-club-life-card span {
  display: grid;
  gap: 0.56cqw;
  padding: 1.25cqw 1.25cqw 1.35cqw;
  min-height: 10.4cqw;
}

.home-club-life-card strong {
  font-family: var(--serif);
  font-size: clamp(22px, 1.75cqw, 26px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  line-height: 1;
}

.home-club-life-card small {
  color: rgba(255, 250, 242, 0.72);
  font-size: clamp(10px, 0.78cqw, 12px);
  line-height: 1.48;
}

.home-club-life-card em {
  align-self: end;
  color: var(--gold-light);
  font-size: clamp(8px, 0.64cqw, 10px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 61.25rem) {
  .home-club-life {
    grid-template-columns: 1fr;
    gap: 3.8cqw;
  }

  .home-club-life__intro > p:not(.eyebrow) {
    max-width: 42rem;
  }
}

@media (max-width: 47.5rem) {
  .home-club-life {
    padding: 10cqw 6cqw;
  }

  .home-club-life__intro > p:not(.eyebrow) {
    max-width: 100%;
  }

  .home-club-life__intro .button {
    min-height: 40px;
    padding-inline: 22px;
    font-size: 10px;
  }

  .home-club-life__cards {
    grid-template-columns: 1fr;
    gap: 4cqw;
  }

  .home-club-life-card span {
    gap: 1.6cqw;
    min-height: 0;
    padding: 4cqw;
  }
}

/* Homepage credentials strip */
.credentials {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 4.2cqw 4.85cqw;
  border-top: 1px solid rgba(199, 167, 124, 0.14);
  border-bottom: 1px solid rgba(199, 167, 124, 0.14);
  background: var(--green-900);
  box-shadow: 0 0 0 100vmax var(--green-900);
}

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

.credentials__item {
  padding: 0 2.4cqw 0 0;
  margin-right: 2.4cqw;
  border-right: 1px solid rgba(199, 167, 124, 0.14);
}

.credentials__item:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: none;
}

.credentials__stat {
  margin: 0 0 0.35cqw;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2cqw, 33px);
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  font-feature-settings: var(--serif-features);
}

.credentials__label {
  margin: 0 0 0.55cqw;
  font-size: clamp(8.5px, 0.72cqw, 11px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.5);
}

.credentials__detail {
  margin: 0;
  font-size: clamp(11px, 0.86cqw, 13px);
  color: rgba(255, 250, 242, 0.68);
  line-height: 1.6;
}

@media (max-width: 61.25rem) {
  .credentials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3cqw;
  }

  .credentials__item {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 3cqw;
    border-bottom: 1px solid rgba(199, 167, 124, 0.14);
  }

  .credentials__item:nth-child(2),
  .credentials__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}

@media (max-width: 47.5rem) {
  .credentials {
    padding: 10cqw 6cqw;
  }

  .credentials__grid {
    grid-template-columns: 1fr;
    gap: 6cqw;
  }

  .credentials__item {
    border-bottom: 1px solid rgba(199, 167, 124, 0.14);
    padding-bottom: 6cqw;
  }

  .credentials__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Own page — Life Inside the Gates */
.own-life {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 5.5cqw 4.85cqw;
  background: var(--green-900);
  box-shadow: 0 0 0 100vmax var(--green-900);
  color: var(--white);
}

.own-life__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5cqw;
  align-items: center;
}

.own-life__copy .eyebrow {
  color: var(--gold-light);
}

.own-life__copy h2 {
  margin: 0.65cqw 0 1.3cqw;
  font-family: var(--serif);
  font-size: clamp(30px, 2.85cqw, 43px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.06;
  font-feature-settings: var(--serif-features);
}

.own-life__copy p {
  margin: 0 0 1cqw;
  color: rgba(255, 250, 242, 0.76);
  font-size: clamp(12px, 0.94cqw, 14px);
  line-height: 1.68;
  max-width: 38cqw;
}

.own-life__copy p:last-of-type {
  margin-bottom: 2cqw;
}

.own-life__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.own-life__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04) brightness(0.94);
  transition: transform 800ms var(--ease-premium);
}

.own-life__image:hover img {
  transform: scale(1.025);
}

.own-proof {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 5.1cqw 4.85cqw;
  background: #f2eee7;
  box-shadow: 0 0 0 100vmax #f2eee7;
  color: var(--ink);
}

.own-proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 4.6cqw;
  align-items: start;
}

.own-proof__header h2 {
  margin: 0.65cqw 0 1.15cqw;
  font-family: var(--serif);
  font-size: clamp(31px, 2.75cqw, 42px);
  font-weight: 400;
  line-height: 1.04;
  font-feature-settings: var(--serif-features);
}

.own-proof__header > p:not(.eyebrow) {
  margin: 0;
  max-width: 36cqw;
  color: #3d3b32;
  font-size: clamp(12px, 0.94cqw, 14px);
  line-height: 1.68;
}

.own-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1cqw;
}

.own-proof__grid article {
  padding: 1.75cqw 1.55cqw;
  border: 1px solid rgba(146, 125, 96, 0.22);
  background: rgba(255, 250, 242, 0.62);
}

.own-proof__grid strong {
  display: block;
  margin-bottom: 1.2cqw;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(24px, 2.15cqw, 33px);
  font-weight: 400;
  line-height: 1;
  font-feature-settings: var(--serif-features);
}

.own-proof__grid h3 {
  margin: 0 0 0.65cqw;
  font-family: var(--serif);
  font-size: clamp(19px, 1.55cqw, 24px);
  font-weight: 500;
  line-height: 1.06;
  font-feature-settings: var(--serif-features);
}

.own-proof__grid p {
  margin: 0;
  color: #4c483c;
  font-size: clamp(11px, 0.86cqw, 13px);
  line-height: 1.58;
}

@media (max-width: 47.5rem) {
  .home-real-estate {
    padding: 10cqw 6cqw;
  }

  .home-real-estate__inner {
    gap: 7cqw;
  }

  .home-real-estate__copy > p:not(.eyebrow) {
    max-width: 100%;
  }

  .home-real-estate__copy .button {
    min-height: 40px;
    padding-inline: 22px;
    font-size: 10px;
  }

  .home-real-estate__visuals {
    gap: 5cqw;
  }

  .home-real-estate__map,
  .home-real-estate__link-card {
    padding: 1.6cqw;
  }

  .own-life {
    padding: 10cqw 6cqw;
  }

  .own-life__inner {
    grid-template-columns: 1fr;
    gap: 6cqw;
  }

  .own-life__copy p {
    max-width: 100%;
  }

  .own-life__image {
    aspect-ratio: 3 / 2;
  }

  .own-proof {
    padding: 10cqw 6cqw;
  }

  .own-proof__inner,
  .own-proof__grid {
    grid-template-columns: 1fr;
    gap: 5cqw;
  }

  .own-proof__header > p:not(.eyebrow) {
    max-width: 100%;
  }
}

@media (max-width: 61.25rem) and (min-width: 47.5625rem) {
  .own-proof__inner {
    grid-template-columns: 1fr;
    gap: 3.8cqw;
  }

  .own-proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8cqw;
  }

  .own-proof__header > p:not(.eyebrow) {
    max-width: 72cqw;
  }
}

/* Preview pages for sections still being built */
.preview-page {
  background: #102116;
}

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

.preview-hero {
  --preview-hero-src: url("assets/hero-final.png");
  --preview-image-position: center center;

  height: 64cqw;
  min-height: 520px;
  max-height: 960px;
  overflow: hidden;
  background: #0b170f;
}

.preview-hero::before {
  transform: translateX(-50%) scale(1.075);
  filter: blur(18px) saturate(0.94) brightness(0.94);
  background:
    linear-gradient(90deg, rgba(6, 13, 8, 0.62) 0%, rgba(11, 20, 12, 0.28) 18%, rgba(11, 20, 12, 0.08) 52%, rgba(5, 11, 7, 0.54) 100%),
    linear-gradient(180deg, rgba(7, 14, 8, 0.18) 0%, rgba(7, 14, 8, 0.04) 52%, rgba(6, 12, 7, 0.42) 100%),
    var(--preview-hero-src);
  background-position: var(--preview-image-position);
  background-size: cover;
}

.preview-hero::after {
  background:
    radial-gradient(ellipse at 21% 48%, rgba(4, 9, 5, 0.54) 0%, rgba(6, 12, 7, 0.32) 24%, transparent 43%),
    linear-gradient(
      90deg,
      rgba(4, 9, 5, 0.4) 0%,
      rgba(6, 12, 7, 0.2) 14%,
      rgba(8, 15, 8, 0.04) 36%,
      transparent 62%,
      rgba(6, 12, 7, 0.12) 90%,
      rgba(4, 9, 5, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 10, 6, 0.16) 0%,
      rgba(5, 10, 6, 0.04) 34%,
      rgba(6, 12, 7, 0.26) 70%,
      rgba(3, 8, 5, 0.9) 100%
    );
  box-shadow:
    inset 5.2cqw 0 5.6cqw rgba(5, 11, 6, 0.62),
    inset -5.2cqw 0 5.6cqw rgba(5, 11, 6, 0.56),
    inset 0 -7cqw 6.5cqw rgba(3, 8, 5, 0.86);
}

.preview-hero .hero__image {
  top: -1cqw;
  right: -2.75cqw;
  bottom: -4.5cqw;
  left: -2.75cqw;
  width: calc(100% + 5.5cqw);
  height: calc(100% + 5.5cqw);
  object-position: var(--preview-image-position);
  filter: saturate(1.04) contrast(1.03) brightness(0.94);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 78%, rgba(0, 0, 0, 0.7) 88%, rgba(0, 0, 0, 0.24) 97%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, #000 78%, rgba(0, 0, 0, 0.7) 88%, rgba(0, 0, 0, 0.24) 97%, transparent 100%);
}

.preview-hero .hero__content {
  top: 17.6cqw;
  width: 45cqw;
}

.preview-status {
  display: inline-flex;
  align-items: center;
  min-height: 3.05cqw;
  margin-bottom: 1.35cqw;
  padding: 0 1.55cqw;
  border: 2px solid rgba(199, 167, 124, 0.82);
  color: rgba(255, 250, 242, 0.92);
  background: rgba(13, 27, 15, 0.68);
  font-size: clamp(9px, 0.78cqw, 12px);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 242, 0.12),
    0 0.8cqw 2.2cqw rgba(0, 0, 0, 0.3);
}

.preview-hero .hero__copy {
  width: 35cqw;
}

.preview-details {
  position: relative;
  z-index: 3;
  isolation: isolate;
  padding: 5.2cqw 4.85cqw 5.6cqw;
  color: var(--ink);
  background: #f3ede4;
  box-shadow:
    0 0 0 100vmax #f3ede4,
    inset 0 1px 0 rgba(153, 126, 88, 0.16);
  clip-path: inset(0 -100vmax);
}

.preview-details__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 5.2cqw;
  align-items: end;
  margin-bottom: 3.3cqw;
}

.preview-details .section-kicker {
  color: #172817;
  text-align: left;
}

.preview-details .section-kicker::after {
  margin-inline: 0;
  background: #9d805d;
}

.preview-details__intro p {
  max-width: 42cqw;
  margin: 0;
  color: #34372f;
  font-size: clamp(12px, 1.02cqw, 15px);
  line-height: 1.72;
}

.preview-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25cqw;
}

.preview-card {
  min-height: 15.2cqw;
  padding: 2.1cqw 1.8cqw 1.85cqw;
  border: 1px solid rgba(146, 125, 96, 0.24);
  background: var(--white);
  transition:
    border-color 320ms var(--ease-premium),
    box-shadow 320ms var(--ease-premium),
    transform 320ms var(--ease-premium);
}

.preview-card:hover,
.preview-card:focus-within {
  border-color: rgba(146, 125, 96, 0.42);
  box-shadow: 0 1.1cqw 2.2cqw rgba(37, 34, 27, 0.08);
  transform: translateY(-2px);
}

.preview-card svg {
  width: 2.45cqw;
  min-width: 28px;
  height: 2.45cqw;
  min-height: 28px;
  margin-bottom: 1.45cqw;
  color: #9d805d;
  stroke: currentColor;
  stroke-width: 1.55;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.preview-details h2 {
  margin: 0.55cqw 0 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.45cqw, 36px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.06;
  font-feature-settings: var(--serif-features);
}

.preview-card h3 {
  margin: 0 0 0.85cqw;
  color: #172817;
  font-family: var(--serif);
  font-size: clamp(22px, 1.85cqw, 28px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  line-height: 1.05;
}

.preview-card p {
  margin: 0;
  color: #3e4238;
  font-size: clamp(10px, 0.82cqw, 12.5px);
  line-height: 1.62;
}

.preview-cta {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3cqw;
  align-items: center;
  padding: 3.7cqw 4.85cqw;
  background:
    linear-gradient(180deg, #142715 0%, #102116 100%);
  box-shadow: 0 0 0 100vmax #102116;
  clip-path: inset(0 -100vmax);
}

.preview-cta h2 {
  margin: 0 0 0.65cqw;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(22px, 1.95cqw, 30px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  line-height: 1;
}

.preview-cta p {
  max-width: 52cqw;
  margin: 0;
  color: rgba(255, 250, 242, 0.8);
  font-size: clamp(11px, 0.9cqw, 13.5px);
  line-height: 1.65;
}

.preview-cta__actions {
  display: flex;
  gap: 1cqw;
}

.preview-cta .button {
  min-width: 12.8cqw;
  min-height: 3.35cqw;
}

.golf-preview .preview-hero {
  --preview-hero-src: url("assets/BrightsCreek_Golf-Award-Winning.jpg");
  --preview-image-position: 50% 48%;
}

.equestrian-preview .preview-hero {
  --preview-hero-src: url("assets/Tryon-International-Equestrian-Center.png");
  --preview-image-position: 58% 44%;
}

.celebrate-preview .preview-hero {
  --preview-hero-src: url("assets/celebrate-final.png");
  --preview-image-position: 50% 50%;
}

.celebrate-preview .preview-hero::after {
  background:
    radial-gradient(ellipse at 21% 48%, rgba(4, 9, 5, 0.58) 0%, rgba(6, 12, 7, 0.34) 24%, transparent 43%),
    linear-gradient(90deg, rgba(4, 9, 5, 0.48) 0%, rgba(6, 12, 7, 0.26) 20%, rgba(8, 15, 8, 0.04) 54%, rgba(5, 10, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 10, 6, 0.1) 0%, rgba(5, 10, 6, 0.02) 34%, rgba(6, 12, 7, 0.24) 70%, rgba(3, 8, 5, 0.84) 100%);
}

.invest-preview .preview-hero {
  --preview-hero-src: url("assets/BC-home-real-estate-divider.jpg");
  --preview-image-position: 50% 46%;
}

.equestrian-preview .preview-hero::after,
.invest-preview .preview-hero::after {
  background:
    radial-gradient(ellipse at 21% 48%, rgba(4, 9, 5, 0.54) 0%, rgba(6, 12, 7, 0.32) 24%, transparent 43%),
    linear-gradient(90deg, rgba(4, 9, 5, 0.46) 0%, rgba(6, 12, 7, 0.26) 20%, rgba(8, 15, 8, 0.08) 54%, rgba(5, 10, 6, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 10, 6, 0.16) 0%, rgba(5, 10, 6, 0.04) 34%, rgba(6, 12, 7, 0.32) 70%, rgba(3, 8, 5, 0.9) 100%);
}

.preview-page .site-header,
.preview-page .hero__content {
  animation: none;
}

.preview-hero .hero__content h1 {
  color: var(--white);
  text-shadow: 0 2px 28px rgba(3, 8, 3, 0.62), 0 1px 8px rgba(3, 8, 3, 0.38);
}

.preview-hero .hero__copy {
  color: rgba(255, 250, 242, 0.93);
  text-shadow: 0 1px 12px rgba(3, 8, 3, 0.45);
}

.preview-status {
  color: rgba(255, 250, 242, 0.94);
  border-color: rgba(215, 184, 133, 0.9);
  background: rgba(13, 27, 15, 0.88);
}

.preview-page .button--outline {
  background: rgba(10, 20, 12, 0.78);
  border-color: rgba(199, 167, 124, 0.72);
}

/* Cascade animations for preview heroes */
.preview-hero .preview-status { animation: premium-fade-up 640ms var(--ease-premium) 60ms both; }
.preview-hero .hero__content .eyebrow { animation: premium-fade-up 680ms var(--ease-premium) 180ms both; }
.preview-hero .hero__content h1 { animation: premium-fade-up 760ms var(--ease-premium) 300ms both; }
.preview-hero .hero__content .hero__copy { animation: premium-fade-up 700ms var(--ease-premium) 440ms both; }
.preview-hero .hero__content .hero__actions { animation: premium-fade-up 680ms var(--ease-premium) 560ms both; }

@media (max-width: 61.25rem) {
  .preview-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-details__intro {
    grid-template-columns: 1fr;
    gap: 1.4cqw;
  }

  .preview-cta {
    grid-template-columns: 1fr;
    gap: 2.2cqw;
  }
}

@media (max-width: 47.5rem) {
  .preview-details {
    padding: 10cqw 6cqw 11cqw;
  }

  .preview-card-grid {
    grid-template-columns: 1fr;
    gap: 4cqw;
  }

  .preview-card {
    min-height: 0;
    padding: 6cqw 5cqw;
  }

  .preview-cta {
    padding: 8cqw 6cqw;
  }
}

@media (max-width: 47.5rem) {
  .explore-hero {
    height: auto;
    min-height: 126cqw;
    max-height: none;
  }

  .explore-hero .site-header {
    height: auto;
    min-height: 36cqw;
    padding: 4cqw 5cqw 3cqw;
  }

  .explore-hero .site-logo {
    width: 28cqw;
  }

  .explore-hero .site-nav {
    padding-top: 2cqw;
    font-size: clamp(10px, 3cqw, 12px);
  }

  .explore-hero .header-actions .button {
    min-height: 9cqw;
    width: auto;
    padding-inline: 3cqw;
    font-size: clamp(7px, 2.1cqw, 8px);
  }

  .explore-hero .hero__image,
  .explore-hero::before,
  .explore-hero::after {
    top: 36cqw;
  }

  .explore-hero .hero__image {
    height: calc(100% - 36cqw);
  }

  .explore-hero .hero__content {
    top: 57cqw;
    left: 6cqw;
    width: 82cqw;
  }

  .explore-hero .hero__content h1 {
    font-size: clamp(36px, 10.5cqw, 44px);
  }

  .explore-hero .hero__copy {
    width: 72cqw;
    font-size: clamp(12px, 3.5cqw, 14px);
  }

  .explore-activities {
    padding: 9cqw 6cqw 8cqw;
  }

  .explore-activities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3cqw;
  }

  .explore-card__image {
    height: 30cqw;
    min-height: 30cqw;
  }

  .explore-card__content {
    min-height: 24cqw;
    padding: 3.5cqw 2cqw;
  }

  .explore-card__content p {
    width: 32cqw;
  }

  .explore-activities__cta .button {
    width: auto;
    min-height: 9cqw;
    padding-inline: 5cqw;
  }

  .explore-weekend {
    height: 92cqw;
    min-height: 430px;
  }

  .explore-weekend__copy {
    width: 70cqw;
    padding: 4.6cqw 0 0 6cqw;
  }

  .explore-weekend__copy p {
    width: 58cqw;
    font-size: clamp(11px, 3cqw, 13px);
  }

  .explore-weekend__copy .button {
    width: auto;
    min-height: 9cqw;
    padding-inline: 4cqw;
  }
}

@media (max-width: 47.5rem) {
  .preview-hero {
    min-height: 760px;
  }

  .preview-hero .hero__content {
    top: 224px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .preview-status {
    min-height: 34px;
    margin-bottom: 18px;
    padding-inline: 14px;
    font-size: 8px;
  }

  .preview-hero .hero__copy {
    width: min(100%, 360px);
  }

  .preview-details {
    padding: 46px 24px 54px;
  }

  .preview-details__intro,
  .preview-card-grid,
  .preview-cta {
    grid-template-columns: 1fr;
  }

  .preview-details__intro {
    gap: 22px;
    margin-bottom: 30px;
  }

  .preview-details__intro p,
  .preview-cta p {
    max-width: none;
  }

  .preview-card-grid {
    gap: 16px;
  }

  .preview-card {
    min-height: 0;
    padding: 28px 22px 26px;
  }

  .preview-card svg {
    margin-bottom: 18px;
  }

  .preview-card h2 {
    font-size: 28px;
  }

  .preview-cta {
    gap: 24px;
    padding: 42px 24px;
  }

  .preview-cta__actions {
    flex-wrap: wrap;
    gap: 10px;
  }

  .preview-cta .button {
    min-width: 0;
    min-height: 42px;
  }
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-page {
  position: relative;
}

.contact-page > .site-header {
  background: #f3ede4;
  box-shadow: inset 0 -1px 0 rgba(153, 126, 88, 0.14);
}

.contact-page > .site-header .site-nav {
  color: rgba(32, 35, 28, 0.86);
  text-shadow: none;
}

.contact-page > .site-header .button--outline {
  color: var(--white);
  background: #253223;
  border-color: rgba(37, 50, 35, 0.9);
}

.contact-page > .site-header .button--outline:hover,
.contact-page > .site-header .button--outline:focus-visible {
  background: #172516;
  border-color: #172516;
}

@media (max-width: 47.5rem) {
  .mobile-nav-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--ink);
    background: rgba(243, 237, 228, 0.88);
    border: 1px solid rgba(153, 126, 88, 0.34);
    border-radius: 0;
    box-shadow: 0 10px 28px rgba(8, 16, 10, 0.16);
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition:
      transform 220ms var(--ease-premium),
      opacity 220ms var(--ease-premium);
  }

  .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .site-header.is-menu-open .mobile-nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-header,
  .explore-hero .site-header,
  main:has(.own-hero) > .site-header,
  .contact-page > .site-header {
    align-items: center;
    grid-template-columns: auto auto;
    gap: 0;
    height: auto;
    min-height: 0;
    padding: 16px 18px 0;
    background: transparent;
    box-shadow: none;
  }

  .site-header.is-menu-open,
  .explore-hero .site-header.is-menu-open,
  main:has(.own-hero) > .site-header.is-menu-open,
  .contact-page > .site-header.is-menu-open {
    padding-bottom: 18px;
    background: rgba(243, 237, 228, 0.97);
    box-shadow:
      0 18px 48px rgba(8, 16, 10, 0.2),
      inset 0 -1px 0 rgba(153, 126, 88, 0.18);
    backdrop-filter: blur(14px);
  }

  .site-header.is-menu-open .site-logo img {
    filter: brightness(0) saturate(0);
    opacity: 0.92;
  }

  .site-logo,
  .explore-hero .site-logo {
    width: 118px;
    min-width: 0;
    transform: none;
  }

  .site-nav,
  .header-actions,
  .explore-hero .site-nav,
  .explore-hero .header-actions {
    display: none;
  }

  .site-header.is-menu-open .site-nav,
  .explore-hero .site-header.is-menu-open .site-nav,
  main:has(.own-hero) > .site-header.is-menu-open .site-nav,
  .contact-page > .site-header.is-menu-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    width: 100%;
    margin-top: 18px;
    padding-top: 0;
    color: var(--ink);
    font-size: 12px;
    text-shadow: none;
  }

  .site-header.is-menu-open .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(153, 126, 88, 0.18);
  }

  .site-header.is-menu-open .site-nav > a::after {
    display: none;
  }

  .site-header.is-menu-open .header-actions,
  .explore-hero .site-header.is-menu-open .header-actions,
  main:has(.own-hero) > .site-header.is-menu-open .header-actions,
  .contact-page > .site-header.is-menu-open .header-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    padding-top: 16px;
  }

  .site-header.is-menu-open .header-actions .button,
  .explore-hero .site-header.is-menu-open .header-actions .button,
  .contact-page > .site-header.is-menu-open .header-actions .button {
    width: 100%;
    min-height: 44px;
    padding-inline: 18px;
    font-size: 10px;
  }

  .page > .hero:not(.stay-hero):not(.explore-hero):not(.preview-hero) {
    min-height: 650px;
  }

  .page > .hero:not(.stay-hero):not(.explore-hero):not(.preview-hero) .feature-strip {
    display: none;
  }

  .page > .hero:not(.stay-hero):not(.explore-hero):not(.preview-hero) .hero__content {
    top: 205px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .page > .hero:not(.stay-hero):not(.explore-hero):not(.preview-hero) .hero__content h1 {
    font-size: 48px;
  }

  .page > .hero:not(.stay-hero):not(.explore-hero):not(.preview-hero) .hero__copy {
    width: min(100%, 360px);
  }

  .stay-hero {
    min-height: 650px;
    background: #10180f;
  }

  .stay-hero .hero__image {
    object-position: 48% 50%;
  }

  .stay-hero::before {
    display: none;
  }

  .stay-hero::after {
    background:
      linear-gradient(180deg, rgba(18, 16, 12, 0.06) 0%, rgba(18, 16, 12, 0.2) 32%, rgba(12, 15, 10, 0.78) 74%, rgba(7, 13, 8, 0.96) 100%),
      linear-gradient(90deg, rgba(8, 13, 8, 0.58) 0%, rgba(8, 13, 8, 0.22) 52%, rgba(8, 13, 8, 0.16) 100%);
  }

  .stay-hero .hero__content {
    top: 205px;
  }

  .stay-hero .hero__content h1 {
    margin-bottom: 14px;
    font-size: 52px;
    line-height: 0.92;
  }

  .stay-hero .hero__copy {
    width: min(100%, 340px);
  }

  main:has(.own-hero) > .site-header:not(.is-menu-open) .site-logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
  }

  .own-hero {
    height: 650px;
    min-height: 650px;
    max-height: none;
    overflow: hidden;
    background: #10180f;
    box-shadow: 0 0 0 100vmax #10180f;
  }

  .own-hero::before {
    display: none;
  }

  .own-hero::after {
    z-index: 2;
    background:
      linear-gradient(180deg, rgba(18, 16, 12, 0.08) 0%, rgba(18, 16, 12, 0.22) 34%, rgba(10, 14, 9, 0.78) 76%, rgba(7, 13, 8, 0.96) 100%),
      linear-gradient(90deg, rgba(8, 13, 8, 0.5) 0%, rgba(8, 13, 8, 0.2) 54%, rgba(8, 13, 8, 0.18) 100%);
  }

  .own-hero__copy {
    position: absolute;
    top: 232px;
    left: 24px;
    z-index: 3;
    width: calc(100% - 48px);
    max-width: none;
    padding: 0;
  }

  .own-hero__copy h1 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 52px;
    line-height: 0.92;
    text-shadow: 0 2px 28px rgba(3, 8, 3, 0.52), 0 1px 6px rgba(3, 8, 3, 0.28);
  }

  .own-hero__copy > p {
    width: min(100%, 340px);
    color: rgba(255, 250, 242, 0.9);
    font-size: 14px;
  }

  .own-hero__actions {
    gap: 10px;
    margin-top: 14px;
  }

  .own-hero__actions .button {
    width: auto;
    min-width: 156px;
    min-height: 40px;
    padding-inline: 16px;
  }

  .own-hero__media {
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .own-hero__media::after {
    display: none;
  }

  .own-hero__media img {
    object-position: 55% 42%;
  }

  .explore-hero {
    height: 650px;
    min-height: 650px;
    max-height: none;
    overflow: hidden;
    background: #10180f;
  }

  .explore-hero .site-header {
    height: auto;
    min-height: 0;
    padding: 16px 18px 0;
  }

  .explore-hero .site-logo {
    width: 118px;
    min-width: 0;
    transform: none;
  }

  .explore-hero .hero__image,
  .explore-hero::before,
  .explore-hero::after {
    top: 0;
  }

  .explore-hero::before {
    display: none;
  }

  .explore-hero::after {
    background:
      linear-gradient(180deg, rgba(18, 16, 12, 0.08) 0%, rgba(18, 16, 12, 0.22) 34%, rgba(10, 14, 9, 0.78) 76%, rgba(7, 13, 8, 0.96) 100%),
      linear-gradient(90deg, rgba(8, 13, 8, 0.5) 0%, rgba(8, 13, 8, 0.2) 54%, rgba(8, 13, 8, 0.18) 100%);
  }

  .explore-hero .hero__image {
    height: 100%;
    object-position: 52% 42%;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .explore-hero .hero__content {
    top: 232px;
    left: 24px;
    width: calc(100% - 48px);
  }

  .explore-hero .hero__content h1 {
    margin-bottom: 14px;
    font-size: 46px;
    line-height: 0.92;
  }

  .explore-hero .hero__copy {
    width: min(100%, 340px);
    font-size: 14px;
  }

  .stay-booking {
    padding: 46px 24px 52px;
  }

  .stay-booking__inner {
    max-width: 326px;
    margin-inline: auto;
  }

  .stay-booking__heading {
    margin-bottom: 24px;
    font-size: clamp(30px, 8.2cqw, 38px);
    letter-spacing: 0.04em;
    line-height: 1.05;
  }

  .stay-booking__form {
    align-items: stretch;
    gap: 14px;
    width: 100%;
    max-width: 306px;
    margin-inline: auto;
  }

  .stay-booking__field {
    gap: 8px;
    width: 100%;
  }

  .stay-booking__field input,
  .stay-booking__field select {
    box-sizing: border-box;
    width: 100%;
    height: 54px;
    min-height: 54px;
    min-width: 0;
    padding-inline: 16px;
    border-color: rgba(146, 125, 96, 0.42);
    border-radius: 0;
    background: rgba(255, 250, 242, 0.84);
    font-size: 15px;
    -webkit-appearance: none;
    appearance: none;
  }

  .stay-booking__field input[type="date"]::-webkit-date-and-time-value {
    min-height: 54px;
    text-align: left;
  }

  .stay-booking__form .button {
    width: 100%;
    min-height: 56px;
    margin-top: 4px;
    font-size: 10px;
  }

  .stay-booking__note {
    max-width: 326px;
    margin: 18px auto 0;
    color: #4f493e;
    font-size: 13px;
    line-height: 1.55;
  }
}

.contact-intro {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 4.5cqw 4.85cqw 4.2cqw;
  background: #f3ede4;
  box-shadow: 0 0 0 100vmax #f3ede4;
  color: var(--ink);
  text-align: center;
}

.contact-intro h1 {
  margin: 0.6cqw 0 1.1cqw;
  font-family: var(--serif);
  font-size: clamp(38px, 3.8cqw, 56px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.04;
  font-feature-settings: var(--serif-features);
}

.contact-intro > p {
  max-width: 50cqw;
  margin: 0 auto 3cqw;
  color: #3a3630;
  font-size: clamp(12px, 0.96cqw, 14px);
  line-height: 1.65;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 5cqw;
  flex-wrap: wrap;
  padding-top: 0.5cqw;
  border-top: 1px solid rgba(153, 126, 88, 0.2);
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.35cqw;
  align-items: center;
  padding-top: 1.6cqw;
}

.contact-detail__label {
  margin: 0;
  font-size: clamp(8.5px, 0.7cqw, 10.5px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(32, 35, 28, 0.48);
}

.contact-detail a,
.contact-detail address {
  font-style: normal;
  font-size: clamp(13px, 1.05cqw, 15px);
  color: var(--ink);
  text-decoration: none;
  line-height: 1.5;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form-section {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 4.8cqw 4.85cqw 6cqw;
  background: var(--parchment);
  box-shadow:
    0 0 0 100vmax var(--parchment),
    inset 0 1px 0 rgba(120, 98, 68, 0.2);
  color: var(--ink);
}

.contact-form-section > .section-kicker {
  color: #172817;
  text-align: center;
  margin-bottom: 3.2cqw;
}

.contact-form {
  max-width: 60cqw;
  margin: 0 auto;
  display: grid;
  gap: 1.35cqw;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35cqw;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45cqw;
}

.contact-form__field label {
  font-size: clamp(9px, 0.74cqw, 11px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(32, 35, 28, 0.56);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  padding: 0.85cqw 1cqw;
  border: 1px solid rgba(146, 125, 96, 0.32);
  background: rgba(255, 250, 242, 0.8);
  color: var(--ink);
  font: inherit;
  font-size: clamp(12px, 0.9cqw, 14px);
  color-scheme: light;
  transition: border-color 220ms var(--ease-premium), box-shadow 220ms var(--ease-premium);
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: rgba(166, 138, 103, 0.72);
  outline: none;
  box-shadow: 0 0 0 3px rgba(199, 167, 124, 0.14);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 8cqw;
  line-height: 1.55;
}

.contact-form .button--gold {
  margin-top: 0.6cqw;
  min-height: 3.4cqw;
  width: 100%;
}

.contact-form__note {
  margin: 0.9cqw 0 0;
  font-size: clamp(10px, 0.78cqw, 12px);
  color: rgba(32, 35, 28, 0.46);
  text-align: center;
  letter-spacing: 0.04em;
}

@media (max-width: 61.25rem) {
  .contact-form {
    max-width: 80cqw;
  }
}

@media (max-width: 47.5rem) {
  .contact-intro {
    padding: 128px 6cqw 8cqw;
    text-align: left;
  }

  .contact-intro > p {
    max-width: 100%;
    margin-inline: 0;
  }

  .contact-details {
    justify-content: flex-start;
    gap: 6cqw;
  }

  .contact-detail {
    align-items: flex-start;
  }

  .contact-form-section {
    padding: 8cqw 6cqw 10cqw;
  }

  .contact-form,
  .contact-form__row {
    max-width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-form__field textarea {
    min-height: 24cqw;
  }
}

/* ============================================================
   Own page — Membership section
   ============================================================ */
.own-membership {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 5.2cqw 4.85cqw 5.6cqw;
  background: #f3ede4;
  color: var(--ink);
  box-shadow:
    0 0 0 100vmax #f3ede4,
    inset 0 1px 0 rgba(153, 126, 88, 0.16);
}

.own-membership__intro {
  margin-bottom: 3.2cqw;
}

.own-membership__intro h2 {
  margin: 0.55cqw 0 0.9cqw;
  font-family: var(--serif);
  font-size: clamp(26px, 2.4cqw, 36px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.06;
  font-feature-settings: var(--serif-features);
}

.own-membership__intro p {
  max-width: 52cqw;
  margin: 0;
  color: #3a3630;
  font-size: clamp(12px, 0.94cqw, 14px);
  line-height: 1.65;
}

.own-membership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25cqw;
  margin-bottom: 3cqw;
}

.own-membership-card {
  padding: 1.8cqw 1.5cqw 2cqw;
  border: 1px solid rgba(146, 125, 96, 0.22);
  background: var(--white);
  transition: box-shadow 280ms var(--ease-premium), transform 280ms var(--ease-premium);
}

.own-membership-card:hover {
  box-shadow: 0 4px 18px rgba(60, 48, 30, 0.1);
  transform: translateY(-2px);
}

.own-membership-card__name {
  margin: 0 0 0.3cqw;
  font-family: var(--serif);
  font-size: clamp(17px, 1.45cqw, 22px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  color: var(--ink);
  line-height: 1.1;
}

.own-membership-card__who {
  margin: 0 0 0.85cqw;
  font-size: clamp(9px, 0.72cqw, 11px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.own-membership-card p:last-child {
  margin: 0;
  font-size: clamp(11px, 0.85cqw, 13px);
  color: #3a3630;
  line-height: 1.58;
}

.own-membership__cta {
  text-align: center;
}

@media (max-width: 61.25rem) {
  .own-membership__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .own-membership__intro p {
    max-width: 80cqw;
  }
}

@media (max-width: 47.5rem) {
  .own-membership {
    padding: 10cqw 6cqw 11cqw;
  }

  .own-membership__grid {
    grid-template-columns: 1fr;
    gap: 3cqw;
  }

  .own-membership__intro p {
    max-width: 100%;
  }
}

/* ============================================================
   Stay page — What's Included strip
   ============================================================ */
.stay-included {
  position: relative;
  clip-path: inset(0 -100vmax);
  padding: 3.8cqw 4.85cqw;
  background: var(--green-900);
  box-shadow: 0 0 0 100vmax var(--green-900);
  color: var(--white);
}

.stay-included__label {
  margin: 0 0 2.5cqw;
  font-size: clamp(9px, 0.74cqw, 11px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 250, 242, 0.46);
  text-align: center;
}

.stay-included__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5cqw;
}

.stay-included__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75cqw;
  padding: 0 0.5cqw;
}

.stay-included__item svg {
  width: 2.1cqw;
  min-width: 24px;
  height: 2.1cqw;
  min-height: 24px;
  color: var(--gold-light);
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stay-included__item h3 {
  margin: 0 0 0.2cqw;
  font-family: var(--serif);
  font-size: clamp(14px, 1.18cqw, 18px);
  font-weight: 500;
  font-feature-settings: var(--serif-features);
  color: var(--white);
  line-height: 1.1;
}

.stay-included__item p {
  margin: 0;
  font-size: clamp(10px, 0.78cqw, 12px);
  color: rgba(255, 250, 242, 0.58);
  line-height: 1.5;
}

@media (max-width: 61.25rem) {
  .stay-included__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3cqw;
  }
}

@media (max-width: 47.5rem) {
  .stay-included {
    padding: 8cqw 6cqw;
  }

  .stay-included__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6cqw;
  }
}
