body,
html {
  overflow-x: hidden
}

.btn--gold,
.btn--gold:hover {
  background: var(--gold)
}

.nav,
.nav__inner {
  height: var(--nav-h)
}

#home .btn--gold,
.btn--gold,
.hero {
  text-align: center
}

#condos .btn--gold,
#experiences .btn--gold,
#home .btn--gold,
#houses .btn--gold,
.btn--gold {
  box-shadow: 0 4px 20px rgba(232, 160, 32, .35)
}

.split-section,
.story__inner {
  grid-template-columns: 1fr 1fr
}

:root {
  --teal-deep: #0b2820;
  --teal-dark: #0b3b3a;
  --teal-mid: #12473a;
  --teal-light: #1a5c46;
  --teal-surface: #163d32;
  --brown-bg: #6c4f3d;
  --brown-dark: #4a3020;
  --gold: #d9a24a;
  --gold-light: #F0B840;
  --gold-dim: rgba(232, 160, 32, 0.15);
  --gold-border: rgba(232, 160, 32, 0.35);
  --white: #ffffff;
  --white-dark: #f6f6f2cc;
  --white-90: rgba(255, 255, 255, 0.90);
  --white-70: rgba(255, 255, 255, 0.70);
  --white-40: rgba(255, 255, 255, 0.40);
  --white-15: rgba(255, 255, 255, 0.10);
  --font-display: "Space Mono", monospace;
  --font-body: "Montserrat", sans-serif;
  --font-third: "Inter", sans-serif;
  --container: 1160px;
  --container: 1160px;
  --nav-h: 80px;
  --section-pad: clamp(4rem, 9vw, 8rem);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 100px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.18s;
  --dur-med: 0.35s;
  --dur-slow: 0.65s;
  --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.3)
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font-body);
  background: var(--teal-deep);
  color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased
}

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

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

ul {
  list-style: none
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem)
}

.section {
  padding: var(--section-pad) 0
}

.gold-text {
  color: var(--gold)
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: .75rem
}

.btn,
.hero__title {
  font-family: var(--font-body)
}

.eyebrow.gold-text {
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 400
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease)
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-size: .88rem;
  font-weight: 500;
  padding: .78em 1.7em;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-spring), box-shadow var(--dur-med) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
  letter-spacing: .02em
}

.btn:active {
  transform: scale(.97)
}

.btn--gold {
  font-weight: 600;
  padding: 6px 24px;
  border-radius: .5rem;
  color: #0b3b3a;
  align-items: center
}

.btn--outline {
  color: var(--white);
  border: 1.5px solid var(--white-40);
  border-radius: .5rem;
  font-size: 15px;
  font-weight: 600;
  background: var(--teal-mid)
}

.btn--outline:hover {
  border-color: var(--white);
  background: var(--white-15)
}

.btn--gold-outline {
  background: 0 0;
  color: var(--gold);
  border: 1.5px solid var(--gold-border);
  font-weight: 600
}

.btn--gold-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold)
}

.btn--gold-sm:hover,
.footer__newsletter button:hover {
  background: var(--gold-light)
}

.btn--gold-sm {
  background: var(--gold);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: .82rem;
  padding: .6em 1.3em;
  border-radius: 6px;
  box-shadow: 0 3px 14px rgba(232, 160, 32, .35)
}

.hero__eyebrow,
.nav__links a {
  color: var(--white-70);
  text-transform: uppercase
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--dur-med) var(--ease), backdrop-filter var(--dur-med) var(--ease)
}

.nav.scrolled {
  background: #0b2820 !important; /* Solid background */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .2)
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem
}

.nav__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform var(--dur-fast) var(--ease);
  position: relative;
  z-index: 102; /* Ensure logo is on top */
}

.footer__col ul a,
.nav__links a {
  transition: color var(--dur-fast) var(--ease)
}

.nav__logo:hover img {
  transform: scale(1.03)
}

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

.nav__links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  position: relative;
  color: var(--white-dark)
}

.nav__links a:hover {
  color: var(--gold)
}

.nav__cta {
  display: inline-flex
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 6px;
  position: relative;
  z-index: 102; /* Ensure toggle is on top of full-screen menu */
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 4px;
  transition: all var(--dur-med) var(--ease)
}

.nav__toggle.open span:first-child {
  transform: translateY(6.5px) rotate(45deg)
}

.nav__toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0
}

.nav__toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--teal-dark);
  padding: 160px 0 60px
}

.hero__bg,
.hero__overlay,
.hero__texture,
.hero__video {
  position: absolute
}

.hero__bg {
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0, rgba(26, 92, 70, .4) 0, transparent 60%), radial-gradient(ellipse 100% 80% at 20% 100%, rgba(26, 92, 46, .3) 0, transparent 50%);
  z-index: 0
}

.hero__video {
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translate(-50%, -50%);
  object-fit: cover
}

.hero__overlay {
  inset: 0;
  background: rgba(11, 40, 32, .55);
  z-index: -1
}

.hero__texture {
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .6;
  pointer-events: none;
  z-index: 1
}

.hero__content,
.split-section__img {
  position: relative
}

.hero__content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center
}

.hero__eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  margin-bottom: .5rem
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
  opacity: .6
}

.hero__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 1.25rem
}

.hero__sub {
  font-size: 20px;
  color: var(--white-dark);
  max-width: 684px;
  margin-bottom: 2.2rem;
  font-weight: 400
}

#home .btn--gold {
  font-weight: 600;
  padding: 12px 24px !important;
  background: var(--gold);
  color: #0b2820;
  border-radius: .5rem;
  font-size: 17px
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem
}

.booking-bar {
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 8px;
  max-width: 900px;
  width: min(900px, 95%);
  margin: 0 auto 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  color: #333;
  text-align: left
}

.booking-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 12px;
  transition: background .3s
}

.booking-bar__btn,
.booking-bar__field {
  border: none;
  font-family: var(--font-body);
  cursor: pointer
}

.booking-bar__item:hover {
  background: #d2caca
}

.booking-bar__item label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px
}

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

.booking-bar__field {
  font-size: 16px;
  font-weight: 600;
  color: #0b3b3a;
  background: 0 0;
  outline: 0;
  padding: 0;
  margin: 0
}

.booking-bar__field::-webkit-calendar-picker-indicator,
.booking-bar__field::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none
}

.booking-bar__select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%
}

.booking-bar__input svg {
  color: #333;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  pointer-events: none
}

.booking-bar__select+svg {
  width: 14px;
  height: 14px
}

.booking-bar__divider {
  width: 1px;
  height: 40px;
  background: #eee;
  margin-right: 20px
}

.booking-bar__btn {
  background: #0b3b3a;
  color: #fff;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 700;
  transition: background .3s;
  white-space: nowrap
}

.booking-bar__btn:hover {
  background: #12473a
}

@media (max-width:768px) {
  .booking-bar {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    align-items: stretch
  }

  .booking-bar__divider {
    display: none
  }

  .booking-bar__input {
    padding-right: 0
  }
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--white-40)
}

.hero__scroll-arrow {
  font-size: 1.5rem;
  color: var(--white-40);
  animation: 2s ease-in-out infinite bounce
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(6px)
  }
}

#experiences {
  background: url(../images/joe-chapin/zipline-canopy.webp) center/cover no-repeat fixed
}

.split-section {
  display: grid;
  min-height: 80vh
}

.split-section--reverse {
  direction: rtl
}

.split-section--reverse>* {
  direction: ltr
}

.split-section__img--surf {
  background: linear-gradient(to bottom, rgba(10, 25, 30, .5) 0, rgba(10, 25, 30, .2) 40%, rgba(10, 25, 30, .8) 100%), linear-gradient(145deg, #0a2030 0, #1a4060 30%, #0d3050 60%, #0a1520 100%)
}

.split-section__img--surf::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(100, 180, 220, .12) 0, transparent 55%)
}

.split-section__img-label {
  position: absolute;
  left: 1.5rem;
  font-size: .85rem;
  color: var(--white-70);
  font-style: italic;
  z-index: 1
}

.split-section__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem)
}

#experiences .btn--gold {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 12px 24px;
  background: var(--gold);
  color: #0b3b3a;
  border-radius: .5rem;
  width: fit-content;
  max-width: 100%
}

.split-section__text--right {
  background: var(--teal-mid)
}

.split-section__text h2 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem
}

.split-section__text p {
  font-size: .97rem;
  color: var(--white-70);
  margin-bottom: 1.8rem;
  max-width: 400px;
  font-weight: 300;
  line-height: 1.75
}

.fullbleed-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center
}

.fullbleed-section--wildlife {
  background: linear-gradient(to bottom, rgba(10, 25, 15, .45) 0, rgba(10, 25, 15, .35) 50%, rgba(10, 25, 15, .65) 100%), linear-gradient(155deg, #0b2010 0, #1a5025 20%, #0d1a0a 50%, #1a4a20 70%, #0d2010 100%);
  min-height: 60vh
}

.fullbleed-section--canopy {
  background: linear-gradient(to bottom, rgba(8, 20, 25, .45) 0, rgba(8, 20, 25, .25) 50%, rgba(8, 20, 25, .7) 100%), linear-gradient(165deg, #080e08 0, #0d2510 20%, #152a20 40%, #0a1e15 70%, #050a05 100%);
  min-height: 75vh
}

.fullbleed-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .5) 0, transparent 60%);
  pointer-events: none
}

.fullbleed-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem clamp(1.25rem, 5vw, 2.5rem)
}

.fullbleed-section__content--left {
  text-align: left
}

.amenities__title,
.amenity-card,
.cta-section,
.property-heading {
  text-align: center
}

.fullbleed-section__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 1rem
}

#condos h5,
#houses h5,
.property-section__card h3,
.tab-btn {
  font-family: var(--font-body)
}

.fullbleed-section__content--left h2 {
  margin: 0 0 1rem
}

.fullbleed-section__content p {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: var(--white-70);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 300;
  line-height: 1.8
}

.fullbleed-section__content--left p {
  margin: 0 0 2rem
}

.property-section {
  display: flex
}

.property-section__img {
  flex: 1;
  position: relative;
  overflow: hidden
}

.property-section__img--condos {
  background: url(../images/joe-chapin/condos-pool.webp) center/cover no-repeat fixed;
  padding: 80px 0
}

.property-section__img--houses {
  background: url(../images/joe-chapin/house-exterior.webp) center/cover no-repeat fixed;
  padding: 80px 0
}

.tht {
  width: 100%;
  max-width: 440px;
  margin: 0 auto
}

.property-section__card {
  width: 100%;
  max-width: 480px;
  background: #083b33;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  opacity: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.property-section__card--left {
  right: auto;
  left: 2.5rem;
  bottom: 3rem
}

.property-section__card h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: .65rem
}

.property-section__card p {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--font-third)
}

.property-tabs {
  display: none;
  gap: .3rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, .25);
  border-radius: var(--r-md);
  padding: .3rem
}

.tab-btn {
  flex: 1;
  background: 0 0;
  border: none;
  color: var(--white-70);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5em .8em;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease)
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--teal-mid);
  color: var(--white)
}

.tab-btn.active {
  background: rgba(255, 255, 255, .12)
}

.amenities .btn--outline,
.story .btn--outline {
  background-color: transparent
}

.tab-content {
  display: none
}

.tab-content.active {
  display: block
}

.property-heading {
  grid-column: 1/-1;
  width: 100%;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--white)
}

.box h4,
.tag {
  font-weight: 600
}

.amenity-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.5rem
}

.tag {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .3em .85em;
  border-radius: var(--r-sm);
  color: #ffffff96;
  background: #f6f6f238;
  margin-bottom: 8px;
  margin-right: 6px
}

#condos .btn--gold,
#houses .btn--gold {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 6px 24px;
  background: var(--gold);
  color: #0b3b3a;
  border-radius: .5rem;
  width: 100%
}

#condos h5,
#houses h5 {
  font-size: 27px;
  margin-bottom: 0
}

.box {
  background: #083b33;
  padding: 15px;
  border-radius: 12px;
  margin: 0 10px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column
}

.box img {
  border-radius: 15px;
  height: 200px;
  object-fit: cover;
  width: 100%
}

.box h4 {
  color: var(--white);
  line-height: 1.2;
  margin-top: 14px;
  font-size: 16px
}

.box .rooms {
  gap: 12px;
  display: flex;
  margin: 11px 0
}

.box .rooms span {
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
  font-size: 13px
}

.box p {
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-third);
  font-size: 14px
}

.amenities__title,
.amenity-card h3,
.story__text h2 {
  font-family: var(--font-body)
}

.story {
  background: var(--teal-dark)
}

.story__inner {
  display: grid;
  gap: clamp(3rem, 7vw, 2rem);
  align-items: stretch
}

.story__img-placeholder {
  width: 100%;
  height: 100%
}

.story__img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: rgba(0, 0, 0, .24) 0 3px 8px
}

.story__text h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem
}

.story__text p {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.8
}

.story__text .btn {
  margin-top: 1.5rem
}

.amenities {
  background: var(--white)
}

.amenities__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 3.5rem;
  color: var(--teal-dark)
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1058px;
  margin: 0 auto 2.5rem
}

.amenities .btn--outline {
  border: 1px solid var(--teal-dark);
  color: var(--teal-dark)
}

.amenities .btn--outline:hover {
  background-color: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white)
}

.amenity-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem
}

.amenity-card__icon svg {
  color: var(--gold)
}

.amenity-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: .5rem
}

.amenity-card p {
  font-size: 16px;
  color: var(--teal-dark);
  font-weight: 400;
  line-height: 1.65;
  font-family: var(--font-third)
}

.amenities__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem
}

.location--brown {
  background: var(--brown-bg)
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center
}

.location__text h2 {
  font-family: var(--font-body);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.2rem
}

.location__img-frame .tt p,
.location__text p {
  font-family: var(--font-third)
}

.location__distances,
.location__text p {
  margin-bottom: 2rem
}

.location__text p {
  font-size: 18px;
  color: var(--white-70);
  font-weight: 400;
  line-height: 1.5
}

.distance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 16px;
  color: var(--white-70);
  font-weight: var(--font-third);
  margin-top: 16px
}

.dist-val {
  font-weight: 600;
  color: var(--white);
  font-size: .9rem
}

.location__img-frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative
}

.location__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--teal-dark)
}

.location__img-placeholder img {
  width: 100%;
  height: 550px;
  object-fit: cover
}

.location__img-frame .tt {
  position: absolute;
  bottom: 21px;
  left: 21px
}

.cta-section {
  background: url(../images/joe-chapin/beach-closing.webp) center/cover no-repeat fixed;
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.cta-section__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .3) 0, rgba(0, 0, 0, .15) 100%)
}

.cta-section__content {
  position: relative;
  z-index: 1;
  padding: 5rem clamp(1.25rem, 5vw, 2.5rem)
}

.cta-section__content h2 {
  font-family: var(--font-body);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: .9rem
}

.cta-section__content p {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: var(--font-third)
}

.cta-section__content p:last-child {
  font-size: 11px;
  font-family: var(--font-display);
  color: var(--white-70)
}

.cta-section__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem
}

.cta-section__note {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 0 !important
}

.testimonials {
  background: #f9fafb;
  color: #333;
  padding: var(--section-pad) 0
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem
}

.testimonials__header h2 {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  color: #0b3b3a;
  font-weight: 800;
  line-height: 1.1
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem
}

.testimonial-card {
  background: #fff;
  padding: 2.2rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease)
}

.testimonial-card:hover {
  transform: translateY(-8px)
}

.testimonial-card__stars {
  color: #f1c40f;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  letter-spacing: 2px
}

.testimonial-card__quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 2rem;
  flex-grow: 1;
  font-weight: 400
}

.testimonial-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f3f4f6;
  padding-top: 1.5rem
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: #111827
}

.testimonial-card__date {
  font-family: var(--font-third);
  font-size: .88rem;
  color: #9ca3af
}

.footer {
  background: #0b3b3a;
  border-top: 1px solid rgba(255, 255, 255, .06)
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3.5rem
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-family: var(--font-display)
}

.footer__col ul a,
.footer__col--brand p,
.footer__newsletter-text {
  color: var(--white-70);
  font-family: var(--font-third)
}

.footer__logo {
  margin-bottom: 1rem
}

.footer__col--brand p {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 240px;
  margin-top: 30px
}

.footer__socials {
  display: flex;
  gap: .6rem
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease-spring)
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px)
}

.footer__col ul li {
  margin-bottom: .65rem
}

.footer__col ul a {
  font-size: 17px;
  font-weight: 400
}

.footer__col ul a:hover {
  color: var(--gold)
}

.footer__contact li {
  display: flex;
  gap: .75rem;
  font-size: .86rem;
  color: var(--white-70);
  margin-bottom: .85rem;
  font-weight: 300;
  align-items: flex-start;
  word-break: break-all
}

.footer__contact li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px
}

.footer__contact a:hover {
  color: var(--white)
}

.footer__newsletter-text {
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.6
}

.footer__newsletter {
  display: flex;
  overflow: hidden;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  transition: border-color var(--dur-fast) var(--ease)
}

.footer__newsletter:focus-within {
  border-color: var(--gold-border)
}

.footer__newsletter input {
  flex: 1;
  background: 0 0;
  border: none;
  outline: 0;
  padding: .7rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .86rem;
  font-weight: 300
}

.footer__newsletter input::placeholder {
  color: var(--white-40)
}

.footer__newsletter button {
  background: var(--gold);
  color: var(--teal-deep);
  border: none;
  padding: 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease)
}

.footer__bottom p,
.footer__legal a {
  font-size: .8rem;
  color: var(--white-40)
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 1.25rem 0
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem
}

.footer__legal {
  display: flex;
  gap: 1.5rem
}

.footer__legal a {
  transition: color var(--dur-fast) var(--ease)
}

.footer__legal a:hover {
  color: var(--white-70)
}

@media (max-width:960px) {
  .nav__cta {
    display: none
  }

  .split-section {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .split-section--reverse {
    direction: ltr
  }

  .split-section__img {
    min-height: 340px;
    order: -1
  }

  .split-section__text {
    padding: 3rem 1.5rem;
    text-align: center;
    min-height: auto
  }

  .split-section__text h2 {
    font-size: 2.2rem
  }

  .split-section__text p {
    margin: 0 auto 1.5rem
  }

  .property-section {
    flex-direction: column;
    min-height: auto;
    overflow: hidden
  }

  .property-section__img {
    min-height: auto;
    padding: 60px 0;
    background-attachment: scroll
  }

  .property-section__card {
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    width: 100%;
    max-width: 440px;
    margin: 2rem auto 0;
    border-radius: var(--r-lg)
  }

  .property-section__card--left {
    left: auto
  }

  .story__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center
  }

  .property-heading {
    margin-bottom: .5rem
  }

  .story__text h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.2
  }

  .story__text p {
    font-size: 16px;
    margin-bottom: .75rem
  }

  .story__img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto
  }

  .amenities__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
  }

  .footer__inner,
  .location__inner {
    grid-template-columns: 1fr
  }

  .location__img {
    max-width: 480px;
    margin: 0 auto;
    width: 100%
  }

  .footer__inner {
    gap: 2.5rem
  }

  .footer__col--brand {
    grid-column: span 1;
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start
  }

  .footer__col--brand p {
    margin: 20px 0 1.5rem;
    max-width: 100%
  }

  .footer__logo img,
  .nav__logo img {
    height: 50px
  }

  .footer__socials {
    justify-content: flex-start;
    margin-bottom: 0
  }

  .footer__col {
    text-align: left
  }

  .footer__contact li {
    justify-content: flex-start;
    text-align: left
  }

  :root {
    --nav-h: 80px
  }

  .nav__inner {
    padding: 0 1.5rem;
    height: var(--nav-h)
  }

  .nav__links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0b2820 !important; /* Force solid dark green */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 100; /* Just below toggle/logo */
    padding: var(--nav-h) 2rem 2rem;
    overflow-y: auto;
  }

  .nav__links.open,
  .nav__toggle {
    display: flex
  }

  .nav__links a {
    font-size: 1.2rem;
    letter-spacing: .12em
  }

  .hero__title {
    font-size: clamp(3rem, 8vw, 4.5rem)
  }
}

@media (max-width:640px) {

  .amenities__grid,
  .footer__inner,
  .testimonials__grid {
    grid-template-columns: 1fr
  }

  .nav__links a {
    font-size: 1.1rem
  }

  .hero__title {
    font-size: clamp(2.4rem, 11vw, 3.5rem)
  }

  .amenities__grid {
    gap: 2.5rem;
    max-width: 100%;
    margin-bottom: 3rem
  }

  .fullbleed-section__content {
    padding: 3.5rem 1.5rem
  }

  .testimonials__grid {
    gap: 1.5rem
  }

  .cta-section__btns {
    flex-direction: column;
    align-items: center
  }

  .footer__inner {
    gap: 2rem;
    padding-top: 2.5rem;
    text-align: left
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center
  }

  .fullbleed-section {
    min-height: 50vh
  }

  .fullbleed-section__content h2 {
    font-size: 2rem
  }
}

@media (max-width:420px) {
  .hero__cta {
    flex-direction: column;
    align-items: center
  }

  .property-section__card {
    padding: 1.5rem
  }

  .amenity-tags {
    gap: .35rem
  }

  .split-section__text {
    padding: 2rem 1.25rem
  }

  .booking-bar__btn {
    padding: 12px 24px;
    font-size: 15px
  }

  .nav__logo img {
    height: 40px
  }
}

@media (max-width:480px) {
  .section {
    padding: clamp(2rem, 5vw, 4rem) 0
  }

  .hero {
    padding: 140px 0 40px
  }
}