:root {
  color-scheme: only light;
  --bg: #f8f5f1;
  --bg-alt: #f1ece5;
  --ink: #1f2328;
  --muted: #6b6f75;
  --accent: #5f7a6a;
  --accent-light: #e2ece4;
  --highlight: #d3a86d;
  --card: #ffffff;
  --shadow: 0 20px 60px rgba(29, 33, 38, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 55%, #efe8df 100%);
}

.background-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  opacity: 0.7;
  animation: float 6s ease-in-out infinite;
}

.orb--one {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(211, 168, 109, 0.7), rgba(211, 168, 109, 0));
  top: -120px;
  left: -80px;
}

.orb--two {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(95, 122, 106, 0.6), rgba(95, 122, 106, 0));
  bottom: -140px;
  right: -120px;
  animation-delay: -3s;
}

.orb--three {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
  top: 35%;
  right: 12%;
  animation-delay: -6s;
}

.ribbon {
  position: absolute;
  height: 220px;
  width: 520px;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.5;
  animation: drift 8s ease-in-out infinite;
  --angle: -6deg;
}

.ribbon--one {
  background: linear-gradient(120deg, rgba(95, 122, 106, 0), rgba(95, 122, 106, 0.55), rgba(95, 122, 106, 0));
  top: 18%;
  left: -160px;
  transform: rotate(var(--angle));
}

.ribbon--two {
  background: linear-gradient(120deg, rgba(211, 168, 109, 0), rgba(211, 168, 109, 0.65), rgba(211, 168, 109, 0));
  bottom: 8%;
  right: -180px;
  --angle: 8deg;
  transform: rotate(var(--angle));
  animation-delay: -4s;
}

.speck {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(95, 122, 106, 0.4);
  box-shadow: 0 0 18px rgba(95, 122, 106, 0.45);
  animation: float 4.8s ease-in-out infinite;
}

.speck--one {
  top: 22%;
  right: 26%;
}

.speck--two {
  bottom: 18%;
  left: 18%;
  animation-delay: -5s;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

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

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.6rem;
}

h1 {
  font-size: clamp(2.6rem, 3.8vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 2.8vw, 3rem);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.badge {
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  margin-right: 0.8rem;
}

.badge--outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(95, 122, 106, 0.35);
}

.meta {
  font-size: 0.78rem;
  color: var(--muted);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 6vw;
  border-bottom: 1px solid #e6dfd6;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.top-bar__left,
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
  background: rgba(248, 245, 241, 0.9);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brand__logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.brand--footer .brand__logo {
  width: 88px;
  height: 88px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.brand__text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav__links a {
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 500;
}

.nav__links .btn {
  color: white;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 70vh;
  padding: 6rem 6vw;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  animation: rise 1.1s ease forwards;
}

.page-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  padding: 3.5rem 6vw 2rem;
  align-items: center;
}

.page-hero--compact {
  grid-template-columns: 1fr;
  padding: 2.5rem 6vw 1.5rem;
  gap: 1.5rem;
}

.page-hero--compact .page-hero__media {
  display: none;
}

.page-hero__media {
  position: relative;
}

.page-hero__media--hidden {
  display: none;
}

.page-hero__image {
  height: 360px;
  border-radius: 28px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.page-hero__image--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  height: 420px;
  max-width: 420px;
  margin: 0 auto;
}

.hero__content {
  max-width: 640px;
  position: relative;
  z-index: 1;
  color: #f7f4ef;
}

.lead {
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}

.hero__actions--compact {
  margin: 1rem 0 0;
  gap: 0.6rem;
}

.hero__actions--right {
  justify-content: flex-end;
  text-align: right;
}

.btn {
  background: var(--accent);
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn--small {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  border-top: 1px solid rgba(247, 244, 239, 0.35);
  padding-top: 1.8rem;
}

.hero__stats strong {
  font-size: 1.5rem;
  display: block;
  color: #f7f4ef;
}

.hero__stats span {
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.75);
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: url("images/photo_gallery/photo-63.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(22, 26, 30, 0.65), rgba(22, 26, 30, 0.2) 55%);
}

.hero__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
  opacity: 0.9;
}

.hero .eyebrow {
  color: rgba(247, 244, 239, 0.8);
}

.hero h1 {
  color: #f7f4ef;
}

.hero .lead {
  color: rgba(247, 244, 239, 0.78);
}

.hero .btn--ghost {
  color: #f7f4ef;
  border-color: rgba(247, 244, 239, 0.7);
}

.hero__card {
  margin-top: 2.5rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 1.6rem 1.8rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 320px;
}

.hero__card h3 {
  margin-bottom: 0.4rem;
  color: #1f2328;
}

.link {
  color: var(--accent);
  font-weight: 600;
}

.fine-print {
  font-size: 0.8rem;
  color: rgba(31, 35, 40, 0.7);
  margin-top: 1rem;
}

.section {
  padding: 4rem 6vw;
}

.section--tint {
  background: linear-gradient(180deg, rgba(95, 122, 106, 0.12), rgba(95, 122, 106, 0));
}

.section--mist {
  background: linear-gradient(180deg, rgba(211, 168, 109, 0.12), rgba(211, 168, 109, 0));
}

.section--splash {
  background: linear-gradient(135deg, rgba(95, 122, 106, 0.48), rgba(95, 122, 106, 0.2));
  border-radius: 28px;
  margin: 0 6vw 4rem;
  box-shadow: 0 18px 40px rgba(31, 35, 40, 0.08);
}

.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
}

.feature-box {
  background: transparent;
  padding: 0;
}

.feature-box h3 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  color: #2e4a3b;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ece4da;
}

.feature-list li:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .feature-boxes {
    grid-template-columns: 1fr 1fr;
    column-gap: 3rem;
  }

  .feature-boxes .feature-box:first-child {
    border-right: 1px solid rgba(60, 74, 66, 0.2);
    padding-right: 2rem;
  }

  .feature-boxes .feature-box:last-child {
    padding-left: 2rem;
  }
}
.section--invert {
  background: linear-gradient(135deg, #3f5449 0%, #5f7a6a 55%, #6f8b7a 100%);
  color: #f6f2ec;
  border-radius: 28px;
  margin: 0 6vw 4rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.section--invert::before,
.section--invert::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  opacity: 0.55;
  pointer-events: none;
}

.section--invert::before {
  top: -160px;
  left: -140px;
}

.section--invert::after {
  bottom: -180px;
  right: -120px;
}
.section--invert h2,
.section--invert h3,
.section--invert p,
.section--invert .eyebrow {
  color: #f6f2ec;
}

.section--invert .section__copy {
  color: rgba(246, 242, 236, 0.78);
}

.section--invert .reviews article {
  background: rgba(255, 255, 255, 0.12);
  color: #f6f2ec;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section--invert .reviews span {
  color: #f6f2ec;
}

.section--invert .plan {
  background: rgba(255, 255, 255, 0.12);
  color: #f6f2ec;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section--invert .plan .btn--ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: #f6f2ec;
}

.section--invert .plan__details p {
  color: rgba(246, 242, 236, 0.78);
}

.section--invert .amenities article {
  background: rgba(255, 255, 255, 0.14);
  color: #f6f2ec;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section--invert .amenities article h3 {
  color: #f6f2ec;
}

.section--invert .amenities article p {
  color: rgba(246, 242, 236, 0.86);
}

.section__header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.section__copy {
  max-width: 460px;
}

.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.amenities--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.amenities article {
  background: var(--card);
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.amenities article:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(31, 35, 40, 0.12);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

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


.plan {
  background: var(--card);
  border-radius: 24px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plan__image {
  width: 100%;
  height: 150px;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 16px;
  background: #f7f4ef;
  padding: 0.6rem;
  object-fit: contain;
}


.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 100;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 28, 0.7);
  backdrop-filter: blur(3px);
}

.lightbox__content {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.2rem;
  width: min(900px, 92vw);
  max-height: 90vh;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  display: grid;
  gap: 1rem;
}

.lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lightbox__header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.lightbox__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.lightbox__nav {
  border: 1px solid #d6cdc2;
  background: #f8f5f1;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  cursor: pointer;
}

.lightbox__nav:disabled {
  opacity: 0.45;
  cursor: default;
}

.lightbox__close {
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

.lightbox__content img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 14px;
  background: #f7f4ef;
  padding: 0.6rem;
}

.flyer-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 120;
}

.flyer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.flyer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 26, 0.72);
  backdrop-filter: blur(4px);
}

.flyer-modal__content {
  position: relative;
  width: min(760px, 94vw);
  max-height: 90vh;
  background: transparent;
  border-radius: 0;
  padding: 0.4rem;
  box-shadow: none;
  display: grid;
  place-items: center;
}

.flyer-modal__image {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 0;
  display: block;
  background: transparent;
}

.flyer-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.6rem;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(10, 12, 14, 0.2);
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(31, 35, 40, 0.12);
}

.plan__details p {
  margin-bottom: 0.4rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery__item {
  height: 260px;
  border-radius: 20px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 24px rgba(22, 26, 30, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  display: block;
  text-decoration: none;
  background-color: transparent;
  appearance: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.gallery-grid__item {
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(22, 26, 30, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  display: block;
  background-color: #f2eee8;
  overflow: hidden;
  appearance: none;
}


.gallery-grid__img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 1;
}


.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0 6vw 3rem;
}

.photo-strip__item {
  height: 180px;
  border-radius: 18px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 24px rgba(22, 26, 30, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.photo-strip__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(22, 26, 30, 0.16);
}

.photo-strip--stacked {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.photo-strip--stacked .photo-strip__item {
  height: 220px;
}

@media (min-width: 900px) {
  .photo-strip--stacked {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .photo-strip--stacked .photo-strip__item:first-child {
    grid-row: span 2;
    height: 360px;
  }
}

.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.floorplan-card {
  background: var(--card);
  border-radius: 20px;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
  text-align: center;
}

.floorplan-card img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  background: #f7f4ef;
  padding: 0.6rem;
}

.floorplan-card figcaption {
  margin-top: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
}

.match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.match-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 1.4rem;
  box-shadow: 0 12px 28px rgba(31, 35, 40, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.match-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(95, 122, 106, 0.2);
  color: #2e4a3b;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.match-card h3 {
  margin-bottom: 0.4rem;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.availability-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
  border: 1px solid rgba(223, 214, 204, 0.6);
}

.availability-card--sage {
  background: rgba(95, 122, 106, 0.12);
  border-color: rgba(95, 122, 106, 0.3);
}

.availability-card ul {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
}

.availability-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(60, 74, 66, 0.15);
}

.availability-card li:last-child {
  border-bottom: none;
}

.availability-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  align-items: center;
}

.availability-split__media {
  height: 280px;
  border-radius: 24px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(31, 35, 40, 0.12);
}

.availability-split__content {
  display: grid;
  gap: 1rem;
}

.availability-split__content strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.availability-split__content span {
  color: var(--muted);
}

.embed-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
  border: 1px solid rgba(223, 214, 204, 0.6);
}

.embed-card--hero {
  max-width: 520px;
  margin-top: 1.2rem;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.page-hero--referral {
  align-items: stretch;
  gap: 0.6rem;
}

.page-hero--referral > div:first-child {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-hero--referral .hero__actions {
  margin-top: 0;
  flex: 1;
  display: flex;
  align-items: stretch;
}

.page-hero--referral .embed-card--hero {
  margin-top: 0;
}

.page-hero--referral .page-hero__media {
  display: flex;
  min-height: 420px;
  align-items: stretch;
  padding-top: 12px;
}

.page-hero--referral .page-hero__image--contain {
  height: 100%;
  width: 100%;
  min-height: 420px;
  border-radius: 0;
  box-shadow: none;
  background-position: center;
  margin-top: 24px;
}

.embed-placeholder {
  border: 2px dashed rgba(95, 122, 106, 0.35);
  border-radius: 18px;
  padding: 2.4rem;
  text-align: center;
  color: var(--muted);
  background: rgba(95, 122, 106, 0.06);
}

.form-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.6rem;
  align-items: stretch;
}

.form-split__media {
  border-radius: 24px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  min-height: 320px;
  box-shadow: var(--shadow);
}

.form-split__media--stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  box-shadow: none;
  background: transparent;
}

.form-split__info {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(95, 122, 106, 0.16), rgba(211, 168, 109, 0.12));
  border: 1px solid rgba(95, 122, 106, 0.2);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-split__info h3 {
  margin: 0;
}

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

.form-split__stats strong {
  display: block;
  font-size: 1.1rem;
}

.form-split__stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: 0 16px 32px rgba(22, 26, 30, 0.16);
}

.section--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  background: var(--bg-alt);
}

.list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ded4c7;
  font-weight: 500;
}

.map-card {
  background: linear-gradient(140deg, rgba(95, 122, 106, 0.22), rgba(255, 255, 255, 0.75));
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(31, 35, 40, 0.12);
  border: 1px solid rgba(95, 122, 106, 0.2);
}

.map-card--photo {
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  min-height: 320px;
  padding: 0;
}

.map-card__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.map-card__grid strong {
  display: block;
  margin-bottom: 0.2rem;
}

.map-embed {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 35, 40, 0.12);
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.location-divider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.location-divider__media {
  height: 300px;
  border-radius: 24px;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(31, 35, 40, 0.12);
}

.location-divider__content {
  display: grid;
  gap: 1rem;
}

.location-divider__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.location-divider__stats strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.location-divider__stats span {
  color: var(--muted);
  font-size: 0.9rem;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}

.reviews article {
  background: var(--card);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(31, 35, 40, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.reviews article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(31, 35, 40, 0.12);
}

.reviews span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.cta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  background: linear-gradient(135deg, #3a5046 0%, #5f7a6a 50%, #6f8b7a 100%);
  color: white;
  border-radius: 36px;
  margin: 0 6vw 4rem;
  padding: 2.4rem;
  box-shadow: var(--shadow);
  animation: rise 1.1s ease forwards;
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  opacity: 0.4;
  pointer-events: none;
}

.cta::before {
  top: -120px;
  right: 12%;
}

.cta::after {
  bottom: -140px;
  left: -80px;
}

.cta h2,
.cta p,
.cta .eyebrow {
  color: white;
}

.cta .section__copy {
  color: rgba(255, 255, 255, 0.75);
}

.cta__details {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta__media {
  border-radius: 20px;
  margin: 1.6rem 0 1.2rem;
  background-image: url("images/photo_gallery/photo-21.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.cta__media--referral {
  background: transparent;
  box-shadow: none;
  margin: 1.2rem 0 1.2rem;
  border-radius: 0;
}

.cta__media--referral img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .amenities--five {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .amenities--three {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .plans--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta__media--referral img {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .plans--two {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .cta__media--referral img {
    max-width: 100%;
  }
}

.form {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.4rem;
  border-radius: 24px;
}

.form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.form input,
.form select,
.form textarea {
  border: none;
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
}

.form button {
  margin-top: 0.4rem;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3.5rem 6vw 3rem;
  background: #1c2226;
  color: white;
  text-align: center;
}

.footer-main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: start;
  text-align: left;
}

.footer-main__col {
  text-align: left;
}

.site-footer .brand {
  justify-content: flex-start;
  margin-bottom: 1rem;
}

.site-footer h4 {
  margin: 0 0 1rem;
}

.site-footer a,
.site-footer p,
.site-footer span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: block;
  line-height: 1.5;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2.2rem;
  margin-top: 0.5rem;
  text-align: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.footer-legal p {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal__logos {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-legal__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.footer-legal__logos img {
  height: 46px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-legal__logos img.footer-legal__logo--mgmt {
  height: 27px;
  max-height: 27px;
  width: auto;
}

.footer-legal__logos img.footer-legal__logo--color {
  filter: none;
  opacity: 1;
}

.footer-legal__logo-link {
  display: inline-flex;
}

.footer-legal__logo {
  display: flex;
  justify-content: center;
  margin: 0.8rem 0 0.6rem;
}

.footer-legal__links {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  white-space: nowrap;
  text-align: center;
}

.footer-legal__links a,
.footer-legal__links span {
  display: inline-flex;
  align-items: center;
}

.footer-legal__dot {
  color: rgba(255, 255, 255, 0.6);
  padding: 0 0.4rem;
  line-height: 1;
  display: inline-block;
}

@media (max-width: 640px) {
  .footer-legal__links {
    gap: 0.4rem;
    font-size: 0.85rem;
  }
}

.footer-legal__estream {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
}

@media (max-width: 900px) {
  .footer-main {
    text-align: center;
  }

  .footer-main__col {
    text-align: center;
  }

  .site-footer .brand {
    justify-content: center;
  }
}

.footer-legal__logo img {
  max-width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.brand--footer .brand__mark {
  background: #d3a86d;
  color: #1c2226;
}

@media (max-width: 960px) {
  .top-bar {
    display: none;
  }

  .hero__card {
    position: static;
    margin-top: 1.5rem;
  }

  .cta {
    margin: 0 4vw 4rem;
    padding: 2.5rem;
  }

  .form-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav__links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.2rem 6vw 1.6rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 16px 36px rgba(29, 33, 38, 0.18);
    display: none;
  }

  .nav__links.active {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .hero {
    padding: 4.5rem 6vw 4rem;
    min-height: 60vh;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 4rem 6vw 3.5rem;
    min-height: 60vh;
  }

  .cta {
    margin: 0 3vw 3rem;
    padding: 2rem;
  }

  .section--invert {
    margin: 0 3vw 3rem;
    border-radius: 24px;
  }

  .section--splash {
    margin: 0 3vw 3rem;
    border-radius: 24px;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(44px);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translateY(0) rotate(var(--angle));
  }
  50% {
    transform: translateY(28px) rotate(calc(var(--angle) + 6deg));
  }
}

@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.gallery-grid__item img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

@media (max-width: 820px) {
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 0.9rem;
  }

  .gallery-grid__item {
    border-radius: 18px;
  }

  .gallery-grid__item img {
    border-radius: 18px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
