:root {
  --navy: oklch(0.22 0.10 275);
  --navy-deep: oklch(0.16 0.09 275);
  --brand-blue: oklch(0.66 0.18 240);
  --brand-blue-soft: oklch(0.94 0.04 240);
  --brand-lime: #64fa00;
  --brand-lime-soft: oklch(0.95 0.06 135);
  --brand-orange: oklch(0.72 0.18 50);
  --brand-purple: oklch(0.55 0.22 295);
  --brand-yellow: #f7ff38;
  --border: oklch(0.92 0.01 250);
  --muted-fg: oklch(0.45 0.03 250);
  --font-display: "Archivo Black", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
  /* Header + hero share one horizontal grid */
  --page-max: 80rem;
  --page-gutter: 1rem;
  --page-gutter-md: 2rem;
  /* Logo spans nav + hero: tall mark; bottom third overlaps into #home */
  --logo-full: 8.5rem;
  --logo-full-lg: 12.5rem;
  --logo-hero-overlap: calc(var(--logo-full) * 0.34);
  --logo-hero-overlap-lg: calc(var(--logo-full-lg) * 0.34);
  /* Vertically align nav + phone to ~2nd line of stacked logo (≈ mid band of wordmark) */
  --nav-row-half: 1.125rem;
  --nav-row-half-lg: 1.35rem;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 7.5rem;
}

#facilities {
  scroll-margin-top: 7.5rem;
}

@media (min-width: 1024px) {
  section[id] {
    scroll-margin-top: 9.5rem;
  }

  #facilities {
    scroll-margin-top: 9.5rem;
  }
}

body {
  font-family: var(--font-sans);
  background: #fff;
  color: oklch(0.145 0.05 265);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.fd {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
}

@media (min-width: 768px) {
  .wrap {
    padding: 0 var(--page-gutter-md);
  }
}

/* ── NAVBAR ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  overflow: visible;
}

.site-nav {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 0.75rem;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0.65rem var(--page-gutter) 0;
}

@media (min-width: 768px) {
  .site-nav {
    column-gap: 1.25rem;
    padding: 0.75rem var(--page-gutter-md) 0;
  }
}

.logo {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.logo-img {
  height: var(--logo-full);
  width: auto;
  max-height: none;
  display: block;
  border-radius: 0.375rem;
  /* Lower third of the mark sits in the hero (same navy), shared gutter */
  margin-bottom: calc(-1 * var(--logo-hero-overlap));
}

@media (min-width: 768px) {
  .logo-img {
    height: var(--logo-full-lg);
    margin-bottom: calc(-1 * var(--logo-hero-overlap-lg));
  }
}

/* Links + phone + menu: vertical centre lines up with ~2nd line of logo (not logo top) */
.nav-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: 0;
  padding-top: max(
    0.35rem,
    calc(var(--logo-full) * 0.5 - var(--nav-row-half))
  );
}

@media (min-width: 768px) {
  .nav-end {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    column-gap: 0.875rem;
    padding-top: max(
      0.35rem,
      calc(var(--logo-full-lg) * 0.5 - var(--nav-row-half-lg))
    );
  }

  .nav-end .menu-btn {
    grid-column: 2;
    justify-self: end;
  }

  .nav-end .nav-phone {
    grid-column: 3;
    justify-self: end;
  }
}

@media (min-width: 1024px) {
  .nav-end {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 1rem;
    width: 100%;
    padding-top: max(
      0.35rem,
      calc(var(--logo-full-lg) * 0.5 - var(--nav-row-half-lg))
    );
  }

  .nav-end .nav-links {
    grid-column: 2;
    justify-self: center;
  }

  .nav-end .nav-phone {
    grid-column: 3;
    justify-self: end;
  }

  .nav-end .menu-btn {
    display: none;
  }
}

.nav-links {
  display: none;
  list-style: none;
  gap: 1.4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  font-size: 0.97rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #fff;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 0.4rem;
}

.nav-links a:hover {
  color: var(--brand-lime);
}

.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: var(--brand-lime);
  border-radius: 9999px;
}

.nav-phone {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--brand-lime);
  color: var(--navy-deep);
  border-radius: 9999px;
  padding: 0.5rem 1.1rem;
  min-height: 2.45rem;
  font-size: 0.84rem;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
  line-height: 1;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0.65rem 1.3rem rgba(0, 0, 0, 0.16);
}

.nav-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 0.95rem 1.9rem rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .nav-phone {
    display: inline-flex;
    font-size: 0.88rem;
    padding: 0.56rem 1.18rem;
  }
}

.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  color: #fff;
  border-radius: 9999px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.mobile-drawer {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy);
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer ul {
  list-style: none;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0.75rem var(--page-gutter);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 768px) {
  .mobile-drawer ul {
    padding-left: var(--page-gutter-md);
    padding-right: var(--page-gutter-md);
  }
}

.mobile-drawer a {
  display: block;
  border-radius: 0.375rem;
  padding: 0.75rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}

.mobile-drawer a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-lime);
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-lime);
  color: var(--navy-deep);
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

@media (max-width: 639px) {
  :root {
    --logo-full: 7.35rem;
    --logo-hero-overlap: calc(var(--logo-full) * 0.31);
  }

  .site-nav {
    padding-top: 0.55rem;
  }

  .nav-end {
    padding-top: max(
      0.25rem,
      calc(var(--logo-full) * 0.5 - var(--nav-row-half) - 0.1rem)
    );
  }

  .menu-btn {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero-inner {
    gap: 1.6rem;
    padding: calc(1.45rem + var(--logo-hero-overlap)) var(--page-gutter) 4.75rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-headline {
    gap: 0.25rem;
  }

  .hero-line {
    font-size: clamp(2.2rem, 12.8vw, 3.4rem);
  }

  .hero-line-pill {
    border-radius: 0.8rem;
    padding: 0.14em 0.18em 0.12em;
  }

  .hero-tagline {
    margin-top: 0.9rem;
    gap: 0.1rem;
  }

  .hero-tagline-lead,
  .hero-tagline-accent {
    font-size: 0.98rem;
  }

  .collage {
    max-width: 20rem;
  }

  .collage-grid {
    max-width: 100%;
    padding: 0.55rem;
    gap: 0.55rem;
  }

  .collage-badge {
    width: 7.3rem;
    height: 7.3rem;
    padding: 0.68rem 0.74rem 0.64rem;
  }

  .badge-top {
    font-size: 0.98rem;
  }

  .badge-bot {
    font-size: 0.64rem;
  }

  .decor[style*="left:-2.5rem"],
  .decor[style*="right:-7rem"] {
    opacity: 0.08 !important;
  }

  .sec-head {
    gap: 0.55rem;
  }

  .sec-title {
    font-size: 1.3rem;
    text-align: center;
  }

  .squig {
    width: 2rem;
  }

  .about-card,
  .contact-card,
  .fn-card,
  .feature-card {
    padding: 1.25rem;
  }

  .about-title,
  .contact-text,
  .facility-sub,
  .feature-text {
    max-width: 100%;
  }

  .facility-decor {
    right: 0.5rem;
    width: 6.25rem;
    height: 6.25rem;
  }

  .fc-grid {
    padding-top: 3rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-btn {
    width: 100%;
  }

  .contact-info-row {
    align-items: start;
  }

  .pr-block {
    padding: 1.1rem 1.1rem;
  }

  .pr-block-content {
    align-items: center;
    text-align: center;
  }

  .pr-cta {
    width: 100%;
    max-width: 16rem;
  }

  .ftr-row {
    gap: 0.55rem;
    padding-top: 0.85rem;
  }

  .ftr-row p {
    letter-spacing: 0.12em;
  }
}

/* ── HERO ───────────────────────────────────── */
#home {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-inner {
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2rem;
  /* Clear the logo tail that overlaps from the header into this section */
  padding: calc(1.9rem + var(--logo-hero-overlap)) var(--page-gutter) 5.5rem;
}

@media (min-width: 768px) {
  .hero-inner {
    gap: 2.4rem;
    padding: calc(2.85rem + var(--logo-hero-overlap-lg)) var(--page-gutter-md) 6.35rem;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(18.5rem, 0.92fr);
    gap: 1.75rem;
    align-items: center;
    padding: calc(4.35rem + var(--logo-hero-overlap-lg)) var(--page-gutter-md) 7rem;
  }
}

.hero-copy {
  position: relative;
  z-index: 10;
  max-width: min(100%, 40rem);
  width: 100%;
  padding-top: 0.4rem;
}

@media (min-width: 1024px) {
  .hero-copy {
    padding-top: 1.3rem;
    margin-left: 0.2rem;
    max-width: 47rem;
  }
}

.hero-headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.28rem;
}

.hero-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(3rem, 10.2vw, 4.8rem);
  line-height: 0.91;
  letter-spacing: -0.045em;
  color: #fff;
  white-space: nowrap;
}

.hero-line-accent {
  color: var(--brand-lime);
}

.hero-line-pill {
  display: inline-block;
  width: auto;
  max-width: none;
  padding: 0.18em 0.28em 0.14em 0.22em;
  border-radius: 1rem;
  background: var(--brand-blue);
  color: var(--navy-deep);
  letter-spacing: -0.035em;
}

.hero-tagline {
  margin-top: 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
}

.hero-tagline-lead,
.hero-tagline-accent {
  font-size: 1.18rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero-tagline-lead {
  color: #fff;
}

.hero-tagline-accent {
  color: var(--brand-lime);
}

@media (min-width: 1024px) {
  .hero-line {
    font-size: clamp(4.2rem, 5.35vw, 5.55rem);
  }

  .hero-tagline-lead,
  .hero-tagline-accent {
    font-size: 1.32rem;
  }

  .hero-line-pill {
    padding: 0.18em 0.32em 0.14em 0.24em;
  }
}

.collage {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: min(26rem, 100%);
  margin-inline: auto;
  isolation: isolate;
}

@media (min-width: 1024px) {
  .collage {
    justify-self: end;
    max-width: 23rem;
    margin-inline: 0;
    margin-top: 0;
  }
}

/* Square plate: calm frame, breathable gutter — image-led grid */
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.65rem;
  width: 100%;
  max-width: min(100%, 22rem);
  margin-inline: auto;
  aspect-ratio: 1;
  height: auto;
  padding: 0.65rem;
  border-radius: 1.125rem;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
}

@media (min-width: 640px) {
  .collage-grid {
    gap: 0.75rem;
    padding: 0.75rem;
    max-width: min(100%, 26rem);
    border-radius: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .collage-grid {
    max-width: 100%;
    width: 100%;
    gap: 0.6rem;
    padding: 0.6rem;
  }
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.12),
    0 14px 32px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1),
    box-shadow 0.35s ease,
    z-index 0s;
  z-index: 1;
}

.collage-img:hover {
  z-index: 4;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.15),
    0 20px 44px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Tighter polaroid tilt — structured, not chaotic */
.collage-img:nth-child(1) {
  transform: rotate(-2deg);
}
.collage-img:nth-child(2) {
  transform: rotate(2.25deg);
}
.collage-img:nth-child(3) {
  transform: rotate(2deg);
}
.collage-img:nth-child(4) {
  transform: rotate(-2.25deg);
}

.collage-img:nth-child(1):hover,
.collage-img:nth-child(2):hover,
.collage-img:nth-child(3):hover,
.collage-img:nth-child(4):hover {
  transform: rotate(0deg) scale(1.03);
}

.collage-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  width: 8.25rem;
  height: 8.25rem;
  border-radius: 9999px;
  background: radial-gradient(
    120% 120% at 30% 25%,
    oklch(0.72 0.16 240),
    var(--brand-blue) 55%,
    oklch(0.52 0.17 250) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 0.8rem 0.72rem;
  gap: 0.3rem;
  transform: translate(-50%, -50%) rotate(-2.5deg);
  border: 3px solid rgba(255, 255, 255, 0.96);
  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.12),
    0 14px 28px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.collage-badge::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: inherit;
  background: radial-gradient(
    115% 115% at 30% 20%,
    rgba(255, 255, 255, 0.12),
    transparent 52%
  );
  pointer-events: none;
}

.collage-badge::after {
  content: "";
  position: absolute;
  inset: 0.34rem;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
  opacity: 0.92;
}

@media (min-width: 640px) {
  .collage-badge {
    width: 9.75rem;
    height: 9.75rem;
    padding: 0.9rem 0.92rem 0.84rem;
    transform: translate(-50%, -50%) rotate(-2deg);
  }
}

@media (min-width: 1024px) {
  .collage-badge {
    width: 8.35rem;
    height: 8.35rem;
    padding: 0.72rem 0.78rem 0.7rem;
  }
}

.badge-top {
  display: block;
  width: 100%;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--brand-yellow);
  line-height: 0.96;
  letter-spacing: 0.14em;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}

@media (min-width: 640px) {
  .badge-top {
    font-size: 1.28rem;
    letter-spacing: 0.16em;
  }
}

@media (min-width: 1024px) {
  .badge-top {
    font-size: 1.36rem;
  }
}

.badge-bot {
  display: block;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.97);
  line-height: 1.18;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .badge-bot {
    font-size: 0.8rem;
    letter-spacing: 0.09em;
  }
}

@media (min-width: 1024px) {
  .badge-bot {
    font-size: 0.84rem;
  }
}

/* Confetti decorations */
.decor {
  position: absolute;
  pointer-events: none;
}

.hero-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  pointer-events: none;
}

.hero-divider svg {
  width: 100%;
  height: 3rem;
  display: block;
}

@media (min-width: 768px) {
  .hero-divider svg { height: 5rem; }
}

/* ── PERFECT FOR ─────────────────────────────── */
#perfect-for {
  background: #fff;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  #perfect-for { padding: 4rem 0; }
}

.sec-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.sec-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy-deep);
}

@media (min-width: 640px) {
  .sec-title { font-size: 1.875rem; }
}

.squig {
  width: 2.5rem;
  height: 0.75rem;
}

.perfect-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2.5rem;
  column-gap: 1rem;
}

@media (min-width: 768px) {
  .perfect-grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 0;
  }
}

.perfect-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .perfect-item { border-right: 1px solid var(--border); }
  .perfect-item:last-child { border-right: none; }
}

.pf-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pf-icon svg {
  width: 2.25rem;
  height: 2.25rem;
}

.pf-label {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--navy-deep);
}

@media (min-width: 640px) {
  .pf-label { font-size: 1rem; }
}

.bg-blue   { background: var(--brand-blue); }
.bg-lime   { background: var(--brand-lime); }
.bg-orange { background: var(--brand-orange); }
.bg-purple { background: var(--brand-purple); }

/* ── ABOUT ───────────────────────────────────── */
#about {
  background:
    radial-gradient(circle at top right, rgba(100, 250, 0, 0.08), transparent 22rem),
    #fff;
  padding: 0 0 3rem;
}

@media (min-width: 768px) {
  #about {
    padding: 0 0 4rem;
  }
}

.about-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(57, 150, 231, 0.08), rgba(100, 250, 0, 0.06));
  border: 1px solid rgba(19, 24, 84, 0.08);
  box-shadow: 0 1rem 2.5rem rgba(14, 23, 67, 0.08);
}

@media (min-width: 768px) {
  .about-card {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2rem;
    padding: 2rem;
  }
}

.about-copy {
  text-align: center;
  width: 100%;
}

.about-head {
  gap: 0.9rem;
}

.about-kicker {
  color: var(--navy-deep);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

@media (min-width: 640px) {
  .about-kicker {
    font-size: 1.9rem;
  }
}

.about-title {
  margin-top: 0.7rem;
  max-width: 100%;
  margin-inline: auto;
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--muted-fg);
}

@media (min-width: 640px) {
  .about-title {
    font-size: 1.3rem;
  }
}

.about-text {
  margin-top: 1rem;
  max-width: 100%;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.7;
  color: oklch(0.28 0.03 255);
}

.about-points {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .about-points {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-point {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(19, 24, 84, 0.08);
}

.about-point-label {
  color: var(--brand-lime);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.about-point-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--navy-deep);
}

/* ── SERVICES ────────────────────────────────── */
#services {
  background: #fff;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  #services { padding-bottom: 4rem; }
}

.svc-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.svc-card {
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s;
}

.svc-card:hover { transform: translateY(-4px); }

.svc-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  min-height: 3rem;
}

.svc-icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}

.pool-num {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #111;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 2px solid #fff;
}

.svc-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.2;
}

@media (min-width: 640px) {
  .svc-title { font-size: 0.875rem; }
}

@media (min-width: 1024px) {
  .svc-title { font-size: 0.9rem; }
}

.svc-img-wrap { overflow: hidden; }

.svc-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 640px) {
  .svc-img-wrap img { height: 200px; }
}

@media (min-width: 1024px) {
  .svc-img-wrap img { height: 190px; }
}

.board-pill {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}

.facilities-head {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .facilities-head {
    margin-top: 3rem;
  }
}

.board-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.625rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  outline: 1px solid var(--border);
}

.board-inner img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.board-inner span {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: var(--navy-deep);
}

/* ── FUNCTION & CONTACT ──────────────────────── */
.facilities-section {
  background: #fff;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .facilities-section { padding-bottom: 4rem; }
}

.fc-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  padding-top: 3.5rem;
}

@media (min-width: 1024px) {
  .fc-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 4.25rem;
  }
}

.facility-decor {
  position: absolute;
  top: 0;
  right: 1rem;
  width: 7rem;
  height: 7rem;
  pointer-events: none;
  opacity: 0.92;
}

@media (min-width: 768px) {
  .facility-decor {
    width: 8.25rem;
    height: 8.25rem;
    right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .facility-decor {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 9rem;
    height: 9rem;
  }
}

.fn-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(57, 150, 231, 0.18), rgba(57, 150, 231, 0.11));
  padding: 1.5rem;
  border: 1px solid rgba(57, 150, 231, 0.16);
  box-shadow: 0 1rem 2.5rem rgba(14, 23, 67, 0.08);
}

@media (min-width: 768px) {
  .fn-card { padding: 2rem; }
}

.fn-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brand-blue);
  letter-spacing: 0.03em;
}

@media (min-width: 640px) {
  .fn-card h3 { font-size: 1.4rem; }
}

.facility-sub {
  margin-top: 0.8rem;
  max-width: 35rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: oklch(0.28 0.03 255);
}

.fn-list {
  list-style: none;
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.fn-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(19, 24, 84, 0.06);
}

.fn-list svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-lime);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.fn-list span {
  display: grid;
  gap: 0.28rem;
  color: var(--navy-deep);
}

.fn-list strong {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
}

.fn-list small {
  font-size: 0.92rem;
  line-height: 1.45;
  color: oklch(0.34 0.03 255);
}

@media (min-width: 640px) {
  .fn-list strong {
    font-size: 0.98rem;
  }
}

.feature-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(100, 250, 0, 0.12), rgba(236, 252, 83, 0.18));
  padding: 1.5rem;
  border: 1px solid rgba(100, 250, 0, 0.14);
  box-shadow: 0 1rem 2.5rem rgba(14, 23, 67, 0.08);
}

@media (min-width: 768px) {
  .feature-card { padding: 2rem; }
}

.feature-eyebrow {
  color: var(--brand-lime);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

@media (min-width: 640px) {
  .feature-eyebrow {
    font-size: 1.4rem;
  }
}

.feature-text {
  margin-top: 0.8rem;
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: oklch(0.28 0.03 255);
}

.feature-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 24, 84, 0.06);
}

.feature-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 9999px;
  margin-top: 0.32rem;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.55);
}

.feature-item strong {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
}

.feature-item p {
  margin-top: 0.22rem;
  font-size: 0.92rem;
  line-height: 1.45;
  color: oklch(0.34 0.03 255);
}

@media (min-width: 640px) {
  .feature-item strong {
    font-size: 0.98rem;
  }
}

.feature-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 24, 84, 0.08);
}

.feature-note span {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--brand-orange);
}

.feature-note p {
  margin-top: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--navy-deep);
}

/* ── CONTACT ──────────────────────────────────── */
.contact-section {
  background:
    radial-gradient(circle at top left, rgba(57, 150, 231, 0.09), transparent 26rem),
    #fff;
  padding: 0 0 3.5rem;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 0 0 4.5rem;
  }
}

.contact-shell {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 1024px) {
  .contact-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 1.5rem;
  }
}

.contact-card {
  border-radius: 1.4rem;
  padding: 1.5rem;
  border: 1px solid rgba(19, 24, 84, 0.08);
  box-shadow: 0 1rem 2.5rem rgba(14, 23, 67, 0.08);
}

@media (min-width: 768px) {
  .contact-card {
    padding: 2rem;
  }
}

.contact-details-card {
  background: linear-gradient(180deg, rgba(57, 150, 231, 0.12), rgba(57, 150, 231, 0.05));
}

.contact-form-card {
  background: linear-gradient(180deg, rgba(100, 250, 0, 0.11), rgba(255, 255, 255, 0.96));
}

.contact-kicker,
.contact-form-title {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.contact-kicker {
  color: var(--brand-blue);
}

.contact-form-title {
  color: var(--brand-lime);
}

@media (min-width: 640px) {
  .contact-kicker,
  .contact-form-title {
    font-size: 1.4rem;
  }
}

.contact-text {
  margin-top: 0.8rem;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: oklch(0.28 0.03 255);
}

.contact-info {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.85rem;
}

.contact-info-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(19, 24, 84, 0.06);
}

.contact-info-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 9999px;
  background: var(--brand-lime);
  color: var(--navy-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.contact-info-copy {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.contact-info-copy strong {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
}

.contact-info-copy span {
  font-size: 0.98rem;
  color: oklch(0.28 0.03 255);
  overflow-wrap: anywhere;
}

.contact-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.8rem 1.1rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 0.8rem 1.6rem rgba(14, 23, 67, 0.1);
}

.contact-btn:hover,
.contact-submit:hover {
  transform: translateY(-1px);
}

.contact-btn svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.contact-btn-primary {
  background: var(--brand-orange);
  color: #fff;
}

.contact-btn-secondary {
  background: var(--brand-lime);
  color: var(--navy-deep);
}

.contact-form {
  margin-top: 1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-field {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.9rem;
}

.contact-field span {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
  text-transform: uppercase;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(19, 24, 84, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--navy-deep);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(57, 150, 231, 0.45);
  box-shadow: 0 0 0 0.2rem rgba(57, 150, 231, 0.12);
}

.contact-field textarea {
  resize: vertical;
  min-height: 8.5rem;
}

.contact-submit {
  margin-top: 1rem;
  width: 100%;
  border: 0;
  border-radius: 1rem;
  background: var(--brand-orange);
  color: #fff;
  padding: 1rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.96rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-shadow: 0 0.8rem 1.6rem rgba(14, 23, 67, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-submit svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-map-card {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(57, 150, 231, 0.08), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(19, 24, 84, 0.08);
  box-shadow: 0 1rem 2.5rem rgba(14, 23, 67, 0.08);
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-map-card {
    margin-top: 1.5rem;
    gap: 1.25rem;
    padding: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .contact-map-card {
    grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 1.1fr);
    align-items: stretch;
  }
}

.contact-map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.4rem 0.2rem;
  min-width: 0;
}

.contact-map-head {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.contact-map-kicker {
  color: var(--brand-blue);
}

.contact-map-address {
  margin-top: 0.6rem;
  max-width: 26rem;
  font-size: 1rem;
  line-height: 1.65;
  color: oklch(0.28 0.03 255);
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2.9rem;
  margin-top: 1rem;
  padding: 0.78rem 1.15rem;
  border-radius: 9999px;
  background: var(--navy-deep);
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  box-shadow: 0 0.8rem 1.6rem rgba(14, 23, 67, 0.12);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-map-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 1rem 2rem rgba(14, 23, 67, 0.18);
}

.contact-map-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: 16rem;
  aspect-ratio: 4 / 3;
  border-radius: 1.2rem;
  border: 1px solid rgba(19, 24, 84, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

@media (max-width: 639px) {
  .contact-map-card {
    padding: 0.85rem;
    gap: 0.85rem;
  }

  .contact-map-copy {
    padding: 0.15rem 0;
  }

  .contact-map-head {
    justify-content: center;
  }

  .contact-map-head .squig {
    width: 2rem;
  }

  .contact-map-kicker {
    font-size: 1.35rem;
    text-align: center;
    width: 100%;
  }

  .contact-map-address {
    font-size: 0.95rem;
    text-align: center;
    max-width: none;
  }

  .contact-map-link {
    width: 100%;
    max-width: 100%;
    margin-top: 0.85rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }

  .contact-map-frame {
    min-height: 14rem;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
  }
}

@media (max-width: 399px) {
  .contact-map-head .squig {
    display: none;
  }
}

/* ── PRICING ──────────────────────────────────── */
.pricing-sec {
  background: var(--navy-deep);
  padding: 2.25rem 0 0;
}

.pricing-strip {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  color: #fff;
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
}

@media (min-width: 768px) {
  .pricing-strip { grid-template-columns: 1fr 1fr 1fr; }
}

.pr-block {
  text-align: center;
  padding: 1.35rem 1.5rem;
}

@media (min-width: 768px) {
  .pr-block { border-right: 1px solid rgba(255, 255, 255, 0.15); }
  .pr-block:last-of-type { border-right: none; }
}

.pr-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.96);
}

@media (min-width: 640px) {
  .pr-label { font-size: 1.125rem; }
}

.pr-badge {
  display: inline-block;
  margin-top: 0.5rem;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: #fff;
  box-shadow: 0 0.65rem 1.4rem rgba(0, 0, 0, 0.18);
}

.pr-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-block-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pr-block-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.pr-block-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-lime);
  color: var(--navy-deep);
  padding: 0.5rem 1.25rem;
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 0.65rem auto 0;
  border-radius: 999px;
  box-shadow: 0 0.65rem 1.4rem rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
  .pr-cta { margin-top: 0.7rem; }
}

.pr-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
}

.pr-cta-txt {
  font-family: var(--font-display);
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .pr-cta-txt { font-size: 0.875rem; }
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  padding: 1rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ftr-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  text-align: center;
  padding: 1rem 1rem 0;
}

.ftr-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--brand-lime);
  flex-shrink: 0;
}

.ftr-row p {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 640px) {
  .ftr-row p { font-size: 0.875rem; }
}

.ftr-copy {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 9999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(9, 35, 24, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.26);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 1.25rem 2.4rem rgba(9, 35, 24, 0.34);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 3px;
}

.whatsapp-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float-icon svg {
  width: 2.1rem;
  height: 2.1rem;
}

@media (max-width: 639px) {
  .contact-section {
    padding-bottom: 4.5rem;
  }

  .site-footer {
    padding-bottom: 5.25rem;
  }

  .whatsapp-float {
    right: max(0.85rem, env(safe-area-inset-right, 0px));
    bottom: max(0.85rem, env(safe-area-inset-bottom, 0px));
    width: 3.5rem;
    height: 3.5rem;
    box-shadow: 0 0.65rem 1.35rem rgba(9, 35, 24, 0.32);
  }

  .whatsapp-float-icon svg {
    width: 1.85rem;
    height: 1.85rem;
  }
}

@media (min-width: 640px) {
  .contact-map-frame {
    min-height: 20rem;
    aspect-ratio: auto;
  }
}

.ps-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-notice {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}

.contact-form-notice--success {
  background: var(--brand-lime-soft);
  color: var(--navy-deep);
}

.contact-form-notice--error {
  background: #fff5f5;
  color: #9b1c1c;
}
