:root {
  --ink: #0e0e0e;
  --ink-soft: #4a5b6a;
  --navy: #4789b4;
  --navy-2: #529fd1;
  --ocean: #4789b4;
  --aqua: #5fbcf8;
  --aqua-soft: #b7d9ec;
  --sand: #f7f7f7;
  --sand-2: #e9f2f8;
  --cream: #f6fafd;
  --white: #ffffff;
  --coral: #dcf2a9;
  --coral-dark: #c0e47e;
  --line: rgba(14, 14, 14, 0.14);
  --line-light: rgba(255, 255, 255, 0.28);
  --shadow: 0 24px 60px rgba(71, 137, 180, 0.18);
  --shadow-soft: 0 14px 34px rgba(71, 137, 180, 0.12);
  --sans: "Archivo", "Inter", "PingFang TC", "Microsoft JhengHei", "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 11vw, 148px);
}

.section--cream {
  background: var(--sand);
}

.section--white {
  background: var(--white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy .eyebrow {
  color: var(--aqua-soft);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section--navy .section-head p:last-child,
.section--navy .board-body p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-head p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.split-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: end;
}

.split-head h2,
.section-head h2,
.about-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(2.15rem, 4.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 600;
}

em {
  font-style: normal;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: var(--white);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  font-size: 0.72rem;
  opacity: 0.72;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav > a:not(.nav-cta) {
  padding: 10px 13px;
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.92;
  border-radius: 4px;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.site-nav > a:not(.nav-cta):hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .site-nav > a:not(.nav-cta):hover {
  background: rgba(12, 20, 26, 0.06);
}

.nav-cta {
  margin-left: 12px;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 4px;
  background: var(--ink);
  color: var(--white) !important;
  transition: background-color 0.2s ease;
}

.nav-cta:hover {
  background: rgba(14, 14, 14, 0.85);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.lang-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.lang-btn {
  padding: 8px 9px;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 700;
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.nav-tools {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
  transition: transform 0.2s ease;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 4px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

.btn--sand {
  background: var(--sand);
  color: var(--ink);
}

.btn--sand:hover {
  background: var(--white);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy);
}

.btn--coral {
  background: var(--ink);
  color: var(--white);
}

.btn--coral:hover {
  background: rgba(14, 14, 14, 0.85);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(71, 137, 180, 0.28);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--white);
}

.btn--wide {
  width: 100%;
  margin-top: 26px;
}

/* Photo placeholders */
.photo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 68%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    linear-gradient(135deg, var(--navy-2) 0%, var(--ocean) 52%, var(--aqua) 100%);
  background-size: 34px 34px, 46px 46px, 100% 100%;
  color: rgba(255, 255, 255, 0.9);
  isolation: isolate;
}

.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), transparent 42%),
    repeating-linear-gradient(118deg, transparent 0 42px, rgba(255, 255, 255, 0.08) 42px 43px);
  z-index: -1;
}

.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.photo--loaded img {
  opacity: 1;
}

.photo__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 6px;
  text-align: center;
  padding: 18px;
  transition: opacity 0.3s ease;
}

.photo--loaded .photo__placeholder {
  opacity: 0;
  pointer-events: none;
}

.photo__placeholder svg {
  width: 30px;
  height: 30px;
  margin-bottom: 6px;
  opacity: 0.85;
}

.photo__placeholder span {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.photo__placeholder small {
  font-size: 0.82rem;
  opacity: 0.78;
  max-width: 240px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(71, 137, 180, 0.34) 0%, rgba(71, 137, 180, 0.12) 36%, rgba(30, 80, 115, 0.6) 76%, rgba(19, 60, 90, 0.88) 100%),
    linear-gradient(90deg, rgba(30, 80, 115, 0.44) 0%, transparent 62%);
}

.hero-content {
  padding-block: clamp(150px, 20vh, 220px) clamp(64px, 8vh, 104px);
}

.hero-content h1 {
  margin: 14px 0 18px;
  max-width: 12ch;
  font-size: clamp(3.1rem, 9vw, 7.6rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-lede {
  margin: 0 0 30px;
  max-width: 560px;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
}

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

.hero-strip {
  margin-top: clamp(52px, 8vh, 88px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  padding-top: 22px;
}

.hero-strip div {
  padding-right: 18px;
}

.hero-strip strong {
  display: block;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.hero-strip span {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

/* Pool intro */
.pool-intro {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}

.pool-intro__logo {
  width: clamp(120px, 16vw, 210px);
  height: auto;
  margin-bottom: clamp(36px, 6vh, 64px);
}

.pool-intro__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-block: clamp(120px, 20vh, 210px) clamp(72px, 12vh, 130px);
}

.pool-intro__content {
  max-width: 900px;
}

.pool-intro__eyebrow {
  margin: 0 0 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ocean);
}

.pool-intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 600;
}

.pool-intro__copy {
  margin: 30px 0 0;
  max-width: 660px;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: var(--ink-soft);
}

.pool-intro__layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  gap: clamp(36px, 6vw, 88px);
  align-items: end;
}

.pool-intro__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(19, 60, 90, 0.2);
}

/* Why cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  background: var(--white);
  border-radius: 8px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}

.why-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ocean);
  margin-bottom: 26px;
}

.why-icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.why-card p {
  margin: 0;
  color: var(--ink-soft);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.guide-grid {
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-grid .product-card:last-child {
  grid-column: auto;
  max-width: none;
  margin-inline: 0;
  width: auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.product-card--featured {
  border: 2px solid var(--ocean);
  box-shadow: var(--shadow);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 4px;
  background: var(--coral);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 28px 28px 30px;
  flex: 1;
}

.product-body .product-tag {
  position: static;
  display: inline-block;
  align-self: flex-start;
  margin: 0 0 16px;
}

.product-body h3 {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.18;
}

.product-sub {
  margin: 8px 0 16px;
  color: var(--ocean);
  font-weight: 600;
  font-size: 0.98rem;
}

.product-for {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.product-for strong {
  color: var(--ink);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--sand);
  border: 1px solid var(--ocean);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 0.72em;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--ocean);
  border-bottom: 2px solid var(--ocean);
  transform: rotate(-45deg);
}

.price {
  margin: auto 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.price strong {
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price span {
  font-size: 0.9rem;
}

.product-body .btn {
  margin-top: 0;
  width: 100%;
}

.product-card--featured .product-body {
  padding-right: 27px;
  padding-left: 27px;
}

/* Boards */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.board-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  overflow: hidden;
}

.board-photo {
  aspect-ratio: 5 / 4;
}

.board-body {
  padding: 24px 26px 28px;
}

.level {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--coral);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.board-body h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.board-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--sand);
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
}

.service-photo {
  aspect-ratio: 16 / 10;
  min-height: 210px;
  max-height: 320px;
}

.service-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 24px 26px;
}

.service-body .eyebrow {
  color: var(--ocean);
}

.service-body h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(1.3rem, 1.8vw, 1.55rem);
  line-height: 1.18;
}

.service-body > p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.service-body .check-list {
  margin-bottom: 20px;
}

.service-body .check-list li {
  color: var(--ink);
}

.service-body .btn {
  margin-top: auto;
  width: 100%;
}

.check-list--inline {
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 8px 22px;
}

/* Club */
.club {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(150deg, #123c5c 0%, #1e628c 58%, #3d88ac 100%);
}

.club-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.club-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(19, 60, 90, 0.88) 0%, rgba(30, 80, 115, 0.58) 46%, rgba(71, 137, 180, 0.14) 100%),
    linear-gradient(180deg, rgba(19, 60, 90, 0.2), transparent 40%, rgba(19, 60, 90, 0.46));
}

.club-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding-block: clamp(90px, 14vh, 150px);
}

.club-copy .eyebrow {
  color: var(--aqua-soft);
}

.club-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1;
}

.club-copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.club-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.club-gallery__photo {
  aspect-ratio: 4 / 5;
  min-height: 180px;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(9, 30, 47, 0.28);
}

.club-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.club-card h3 {
  margin: 0 0 20px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.club-project-list {
  display: grid;
  margin: 0 0 28px;
}

.club-project {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.club-project:first-child {
  padding-top: 0;
  border-top: 0;
}

.club-project__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sand-2);
  color: var(--ocean);
}

.club-project__icon svg {
  width: 24px;
  height: 24px;
}

.club-project strong {
  font-size: 1.08rem;
  line-height: 1.2;
}

.club-project small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.club-project__price {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  white-space: nowrap;
}

.club-card .btn {
  width: 100%;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.about-photo {
  aspect-ratio: 4 / 5;
  max-height: 640px;
  border-radius: 8px;
}

.about-copy h2 {
  margin-bottom: 22px;
}

.about-copy > p:not(.eyebrow):not(.about-note) {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.about-note {
  font-size: 1.3rem;
  color: var(--ocean);
  margin: 0 0 30px;
}

/* FAQ */
.faq-wrap {
  max-width: 880px;
}

.faq-wrap .section-head {
  text-align: center;
}

.faq-wrap .section-head p:last-child {
  max-width: 480px;
  margin: 18px auto 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 6px;
  text-align: left;
  font-size: 1.12rem;
  font-weight: 600;
}

.faq-question svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: var(--ink-soft);
  padding: 0 6px;
}

.faq-item.is-open .faq-answer > p {
  padding: 0 6px 26px;
}

/* CTA */
.cta {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(100px, 14vw, 170px);
  text-align: center;
}

.cta .eyebrow {
  color: var(--aqua-soft);
}

.cta h2 {
  margin: 12px 0 12px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 1;
}

.cta-inner > p:not(.eyebrow) {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.cta .hero-actions {
  justify-content: center;
}

/* Footer */
.site-footer {
  background: #13445e;
  color: rgba(255, 255, 255, 0.86);
  padding-top: 70px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 44px;
  padding-bottom: 54px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer-brand p {
  margin: 0;
  line-height: 1.5;
}

.footer-brand strong {
  font-size: 1.05rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  align-content: start;
}

.footer-nav a {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact > p {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--white);
}

.footer-wa svg {
  width: 22px;
  height: 22px;
  color: #4cd07d;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 22px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.56);
}

.footer-bottom p {
  margin: 0;
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation: none !important;
  }
}

/* Responsive */
@media (max-width: 1280px) {
  .brand-text small {
    display: none;
  }

  .header-inner {
    gap: 14px;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 9px 9px;
    font-size: 0.86rem;
  }

  .nav-cta {
    margin-left: 6px;
    padding: 10px 13px;
    font-size: 0.84rem;
  }
}

@media (max-width: 1020px) {
  .split-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-grid,
  .card-grid,
  .board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:last-child {
    grid-column: 1 / -1;
    max-width: 560px;
    margin-inline: auto;
    width: 100%;
  }

  .club-content {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .pool-intro__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pool-intro__photo {
    max-width: 640px;
  }
}

@media (max-width: 820px) {
  .header-tools {
    display: none;
  }

  .nav-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 12px 14px 2px;
    border-top: 1px solid var(--line);
    margin-top: 10px;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    z-index: 59;
    display: grid;
    gap: 4px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 13px 14px;
    border-radius: 6px;
  }

  .site-nav > a:not(.nav-cta):hover {
    background: var(--sand);
  }

  .nav-cta {
    margin: 8px 0 0;
    justify-self: stretch;
    text-align: center;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .hero-strip div {
    padding-right: 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-height: 520px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .brand-text {
    display: none;
  }

  .lang-btn {
    padding: 8px 7px;
  }

  .currency-btn {
    padding: 8px 8px;
  }

  .product-grid,
  .card-grid,
  .board-grid {
    grid-template-columns: 1fr;
  }

  .product-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .hero-content h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-strip {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    gap: 18px;
  }

  .service-body {
    padding: 22px 20px 24px;
  }

  .check-list--inline {
    grid-template-columns: 1fr;
  }

  .booking-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .club {
    min-height: 0;
  }

  .club-content {
    padding-block: 90px 70px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

/* Wave pool rates */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rate-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 26px 28px 30px;
}

.rate-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-light);
}

.rate-card__head h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.rate-card__head .level {
  margin: 0;
  flex: none;
  white-space: nowrap;
}

.rate-list {
  display: grid;
  gap: 12px;
}

.rate-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rate-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.rate-line__label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  min-width: 0;
  overflow-wrap: anywhere;
}

.rate-line__label small {
  display: block;
  margin-top: 2px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
}

.rate-line strong {
  flex: none;
  text-align: right;
  white-space: nowrap;
  font-size: 1rem;
  color: var(--white);
}

.rate-card--included {
  background: var(--sand);
  color: var(--ink);
  border-color: transparent;
}

.rate-card--included h3,
.rate-card--included .check-list li {
  color: var(--ink);
}

.rate-card--included .rate-card__head {
  border-bottom-color: var(--line);
}

.rate-card--included .check-list {
  margin-bottom: 0;
}

.rates-note {
  margin: 22px 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
}

.rates-note strong {
  color: var(--white);
}

.booking-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.booking-note__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  color: var(--ink);
}

.booking-note__icon svg {
  width: 22px;
  height: 22px;
}

.booking-note strong {
  display: block;
  font-size: 0.98rem;
}

.booking-note p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

/* Stay */
.stay-perks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 34px;
}

.stay-perk {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stay-perk span {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.stay-perk small {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.room-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.room-photo {
  aspect-ratio: 16 / 10;
  min-height: 230px;
}

.room-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 28px 28px;
  flex: 1;
}

.room-body .eyebrow {
  color: var(--ocean);
}

.room-body h3 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1.18;
}

.room-body > p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.room-features {
  margin-bottom: 20px;
}

.room-price {
  width: 100%;
  margin: auto 0 22px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.room-price span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.room-price strong {
  color: var(--ink);
  font-size: 1.85rem;
}

.room-card .btn {
  width: 100%;
}

.stay-note {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-soft);
}

.stay-note strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.stay-note p {
  margin: 0;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .stay-perks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

@media (max-width: 620px) {
  .stay-perks {
    grid-template-columns: 1fr;
  }

  .room-body {
    padding: 22px 20px 24px;
  }

  .club-gallery {
    grid-template-columns: 1fr;
  }

  .club-gallery__photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

/* Estimate panel */
.estimate-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.7fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sand);
}

.estimate-panel__copy {
  align-self: center;
}

.estimate-panel__copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.estimate-panel__copy p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.estimate-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.estimate-control {
  display: grid;
  gap: 8px;
}

.estimate-control--wide {
  grid-column: span 2;
}

.estimate-control > span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stepper {
  display: inline-grid;
  grid-template-columns: 40px 48px 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.stepper-btn {
  width: 40px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.15rem;
  transition: background-color 0.2s ease;
}

.stepper-btn:hover {
  background: var(--sand-2);
}

.stepper-value {
  display: grid;
  place-items: center;
  border-inline: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 700;
}

.estimate-result {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 2px 8px;
  grid-column: span 2;
  min-width: 200px;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.estimate-result span {
  grid-column: 1 / -1;
  color: var(--aqua-soft);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-result strong {
  font-size: 1.7rem;
}

.estimate-result small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.estimate-controls .btn {
  min-height: 44px;
  padding: 10px 16px;
}

.segmented {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.seg-btn {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.seg-btn.is-active {
  border-color: var(--ocean);
  background: var(--ocean);
  color: var(--white);
}

[hidden] {
  display: none !important;
}

/* Currency toggle */
.currency-toggle {
  display: inline-flex;
  margin-left: 0;
  overflow: hidden;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.currency-btn {
  padding: 8px 10px;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
}

.currency-btn.is-active {
  background: var(--ink);
  color: var(--white);
}

/* Package cards */
.package-card {
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.package-card.is-selected {
  border-color: var(--ocean);
  box-shadow: var(--shadow);
}

@media (max-width: 1020px) {
  .estimate-panel {
    grid-template-columns: 1fr;
  }

  .estimate-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .estimate-result {
    min-width: 0;
  }

  .estimate-controls .btn {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .estimate-controls {
    grid-template-columns: 1fr;
  }

  .estimate-control--wide,
  .estimate-result,
  .estimate-controls .btn {
    grid-column: 1 / -1;
  }

  .stepper {
    width: 100%;
    grid-template-columns: 1fr 48px 1fr;
  }

  .stepper-btn {
    width: 100%;
  }
}
