:root {
  --teal-900: #073b3a;
  --teal-800: #0f4f4d;
  --teal-700: #0f766e;
  --teal-500: #14b8a6;
  --mint-100: #d7fbef;
  --sand-50: #fff8ed;
  --sand-100: #fdecc8;
  --sand-300: #f5c46b;
  --amber-500: #f59e0b;
  --slate-950: #07131f;
  --slate-800: #172437;
  --slate-700: #314155;
  --slate-500: #64748b;
  --white: #ffffff;
  --off-white: #f7fbf9;
  --shadow-soft: 0 20px 60px rgba(7, 19, 31, 0.14);
  --shadow-card: 0 12px 30px rgba(7, 19, 31, 0.10);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--slate-800);
  background: var(--off-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
}

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

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

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--teal-800);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow-card);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 118, 110, 0.14);
  padding: 10px 0;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--teal-900);
}

.brand {
  min-width: 0;
  flex-shrink: 0;
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.22);
}

.brand span {
  display: grid;
  line-height: 1.2;
}

.brand em {
  color: var(--slate-500);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--slate-700);
  font-size: 0.94rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(20, 184, 166, 0.12);
  color: var(--teal-800);
  transform: translateY(-1px);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500));
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.28);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding-bottom: 12px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-card);
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--slate-800);
  background: var(--white);
  border: 1px solid rgba(15, 118, 110, 0.10);
  font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(20, 184, 166, 0.10);
  color: var(--teal-800);
}

.mobile-nav-cta {
  justify-content: center;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--teal-700), var(--teal-500)) !important;
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.24);
}

.nav-cta:hover,
.button:hover,
.scroll-top:hover,
.footer-top:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
  z-index: -3;
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 24%, rgba(245, 158, 11, 0.28), transparent 24%),
    linear-gradient(105deg, rgba(7, 59, 58, 0.94) 0%, rgba(7, 59, 58, 0.78) 42%, rgba(7, 59, 58, 0.26) 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 120px;
  background: linear-gradient(175deg, transparent 0 48%, var(--off-white) 49% 100%);
  z-index: -1;
}

.hero-content {
  padding: 110px 0 150px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-700);
  background: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.18);
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--mint-100);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

h1 {
  max-width: 880px;
  margin: 18px 0 22px;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-primary {
  color: var(--teal-900);
  background: linear-gradient(135deg, var(--sand-300), #fff0ad);
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.28);
}

.button-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.button-dark {
  color: var(--white);
  background: var(--teal-900);
  box-shadow: 0 14px 30px rgba(7, 59, 58, 0.24);
}

.button-outline {
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid rgba(15, 118, 110, 0.22);
}

.trust-bar {
  width: min(100%, 920px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.trust-bar div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.trust-bar strong {
  display: block;
  color: var(--sand-300);
  font-size: 1.35rem;
  line-height: 1.1;
}

.trust-bar span {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section-light {
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.11), transparent 28%),
    var(--off-white);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading-narrow {
  max-width: 700px;
}

.section-heading h2,
.content-block h2,
.location-card h2,
.booking-box h2,
.faq-heading h2 {
  margin: 14px 0 16px;
  color: var(--teal-900);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading p,
.content-block p,
.location-card p,
.booking-box p,
.faq-heading p {
  color: var(--slate-700);
  font-size: 1.06rem;
}

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

.feature-card,
.amenity-grid article,
.outdoor-card,
.location-card,
.booking-box,
.contact-grid a,
.faq-list details {
  border: 1px solid rgba(15, 118, 110, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -70px auto;
  width: 150px;
  height: 150px;
  background: rgba(20, 184, 166, 0.12);
  border-radius: 50%;
}

.feature-card-highlight {
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--white);
}

.feature-card-highlight p,
.feature-card-highlight h3 {
  color: var(--white);
}

.icon,
.amenity-grid span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--sand-100);
  font-size: 1.55rem;
}

.feature-card h3,
.outdoor-card h3 {
  color: var(--teal-900);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.feature-card p,
.outdoor-card p,
.amenity-grid p {
  margin: 0;
  color: var(--slate-700);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 64px;
}

.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--slate-700);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-700);
  font-size: 0.9rem;
  font-weight: 1000;
}

.mini-cta {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(245, 196, 107, 0.22));
  border: 1px solid rgba(15, 118, 110, 0.16);
}

.mini-cta strong {
  color: var(--teal-900);
}

.mini-cta a {
  width: fit-content;
  color: var(--teal-700);
  font-weight: 900;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack::before {
  content: "";
  position: absolute;
  inset: 52px 54px auto auto;
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, var(--sand-300), var(--mint-100));
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.75;
}

.stack-main,
.stack-small {
  position: absolute;
  object-fit: cover;
  border: 10px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.stack-main {
  inset: 40px auto auto 18px;
  width: min(74%, 450px);
  aspect-ratio: 1 / 1;
  border-radius: 38px;
}

.stack-small {
  width: 190px;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
}

.stack-one {
  top: 0;
  right: 8px;
}

.stack-two {
  right: 48px;
  bottom: 26px;
}

.section-wave {
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
}

.section-wave::before,
.section-wave::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.section-wave::before {
  width: 360px;
  height: 360px;
  left: -140px;
  top: -120px;
}

.section-wave::after {
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -150px;
}

.section-wave .section-heading h2,
.section-wave .section-heading p {
  color: var(--white);
}

.section-wave .eyebrow {
  color: var(--mint-100);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.amenity-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, 1fr);
}

.amenity-grid article {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
}

.amenity-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-900);
  font-size: 1.16rem;
}

.outdoor-panel {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 18px;
}

.outdoor-card {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.large-card {
  grid-row: span 2;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 59, 58, 0.88), rgba(15, 118, 110, 0.82)),
    url("assets/pool.jpeg") center / cover;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.large-card h3,
.large-card p {
  color: var(--white);
}

.location-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(245, 196, 107, 0.25), transparent 28%),
    linear-gradient(180deg, var(--white), var(--sand-50));
}

.location-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--white);
}

.location-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.12);
}

.map-pin {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 24px;
  background: var(--sand-100);
  font-size: 2rem;
}

.distance-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.distance-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.distance-list strong {
  color: var(--teal-700);
  font-size: 1.25rem;
}

.distance-list span {
  color: var(--slate-700);
  font-weight: 800;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.tag-cloud span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(15, 118, 110, 0.14);
  color: var(--teal-900);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(7, 19, 31, 0.06);
}

.booking-section {
  background: linear-gradient(135deg, var(--teal-900), #0b5f5c);
}

.booking-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 95% 0%, rgba(245, 196, 107, 0.26), transparent 25%),
    rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-xl);
}

.booking-actions {
  max-width: 390px;
  justify-content: flex-end;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.contact-grid a {
  display: grid;
  gap: 2px;
  padding: 22px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.contact-grid span {
  font-size: 1.65rem;
}

.contact-grid small {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.faq-heading {
  margin: 0;
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--teal-900);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--teal-700);
  font-size: 1.35rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--slate-700);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 10% 0%, rgba(20, 184, 166, 0.22), transparent 26%),
    var(--slate-950);
  padding: 72px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.9fr;
  gap: 34px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 16px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer address {
  font-style: normal;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--sand-300);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.footer-top,
.scroll-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--teal-900);
  background: var(--sand-300);
  font-weight: 1000;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

.footer-top {
  min-height: 44px;
  padding: 10px 16px;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  width: 52px;
  height: 52px;
  font-size: 1.35rem;
}

@media (max-width: 1060px) {
  .benefit-grid,
  .outdoor-panel {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .split-layout,
  .reverse,
  .faq-layout,
  .booking-box {
    grid-template-columns: 1fr;
  }

  .booking-actions {
    max-width: none;
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand em {
    display: none;
  }

  .hero {
    min-height: 790px;
  }

  .hero-content {
    padding: 84px 0 126px;
  }

  h1 {
    letter-spacing: -0.05em;
  }

  .trust-bar,
  .benefit-grid,
  .amenity-grid,
  .outdoor-panel,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .image-stack {
    min-height: 410px;
  }

  .stack-main {
    width: 72%;
    left: 0;
  }

  .stack-small {
    width: 145px;
    border-width: 7px;
  }

  .stack-one {
    right: 0;
  }

  .stack-two {
    right: 18px;
  }

  .booking-box,
  .location-card {
    padding: 26px;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}