:root {
  --navy-950: #061b34;
  --navy-900: #082849;
  --navy-800: #0b3762;
  --ocean-600: #058fc6;
  --ocean-500: #08a8df;
  --aqua-300: #6dd9ec;
  --aqua-100: #dff8fb;
  --mist: #f2f8fa;
  --sand: #f5f1e8;
  --white: #ffffff;
  --ink: #10283d;
  --muted: #5c7181;
  --line: #dce8ec;
  --success: #087b67;
  --danger: #a53c3c;
  --shadow-sm: 0 10px 30px rgba(6, 34, 58, 0.08);
  --shadow-lg: 0 28px 70px rgba(3, 28, 52, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(8, 168, 223, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  color: var(--white);
  background: var(--navy-950);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

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

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 66px 0;
}

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

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(8, 168, 223, 0.24), transparent 31%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--ocean-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--aqua-300);
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.8rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.section-dark h2,
.section-dark h3,
.hero h1 {
  color: var(--white);
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.section-dark .lead {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.section-heading > div:first-child {
  max-width: 760px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--ocean-500), var(--ocean-600));
  box-shadow: 0 12px 30px rgba(5, 143, 198, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(5, 143, 198, 0.38);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.btn-outline {
  border-color: var(--line);
  color: var(--navy-900);
  background: var(--white);
}

.btn-arrow::after {
  content: "→";
  font-size: 1.15em;
  transition: transform 0.2s ease;
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.solid {
  border-color: rgba(8, 40, 73, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 35px rgba(5, 29, 50, 0.08);
  backdrop-filter: blur(18px);
}

.site-header:not(.is-scrolled):not(.solid) .nav-link {
  color: var(--white);
}

.site-header:not(.is-scrolled):not(.solid) .lang-toggle {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(5, 30, 53, 0.25);
}

.nav-shell {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  width: 82px;
  height: 66px;
  align-items: center;
  overflow: hidden;
  padding: 3px;
  border-radius: 7px;
  background: var(--white);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.nav-link {
  position: relative;
  padding: 10px 0;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 680;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ocean-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.lang-toggle {
  display: inline-flex;
  min-width: 68px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.menu-toggle {
  z-index: 102;
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy-950);
  background: var(--white);
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
}

.menu-lines::before { top: -6px; }
.menu-lines::after { top: 6px; }
.nav-open .menu-lines { background: transparent; }
.nav-open .menu-lines::before { top: 0; transform: rotate(45deg); }
.nav-open .menu-lines::after { top: 0; transform: rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 20, 39, 0.9) 0%, rgba(3, 20, 39, 0.64) 45%, rgba(3, 20, 39, 0.18) 76%),
    linear-gradient(0deg, rgba(3, 20, 39, 0.76), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
  padding-top: 180px;
  padding-bottom: 90px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
}

.hero-note::before {
  width: 42px;
  height: 1px;
  content: "";
  background: var(--aqua-300);
}

.wave-divider {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: -55px;
  width: 55%;
  height: 105px;
  border-radius: 50% 0 0 0;
  background: var(--white);
  transform: rotate(-3deg);
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -25px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(220, 232, 236, 0.85);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.trust-item {
  padding: 28px 30px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--ocean-600);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.cards-3,
.cards-4,
.project-grid,
.pool-grid {
  display: grid;
  gap: 22px;
}

.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.feature-card,
.pool-card,
.project-card,
.info-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.pool-card:hover,
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(5, 37, 61, 0.13);
}

.feature-card {
  padding: 30px;
}

.feature-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--ocean-600);
  background: var(--aqua-100);
  font-size: 0.78rem;
  font-weight: 850;
}

.feature-card p:last-child,
.pool-card p:last-child,
.project-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.split.reverse > :first-child {
  order: 2;
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  top: -18px;
  right: -18px;
  width: 56%;
  height: 54%;
  border-radius: var(--radius-lg);
  content: "";
  background: var(--aqua-100);
}

.image-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: rgba(5, 35, 61, 0.72);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
}

.check-list,
.plain-list {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: var(--white);
  content: "✓";
  background: var(--ocean-500);
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 21px;
  text-align: center;
}

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

.category-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-md);
  color: var(--white);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover img {
  transform: scale(1.04);
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 24, 44, 0.9), rgba(3, 24, 44, 0.04) 68%);
}

.category-copy {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
}

.category-copy h3 {
  margin-bottom: 5px;
  color: var(--white);
}

.category-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.testimonial {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.testimonial-mark {
  display: block;
  height: 38px;
  color: var(--aqua-300);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.9;
}

.testimonial blockquote {
  margin: 16px 0 24px;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 650;
  line-height: 1.35;
}

.testimonial cite {
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 50px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 95% 15%, rgba(109, 217, 236, 0.28), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.cta-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 178px 0 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(8, 168, 223, 0.28), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.page-hero::after {
  position: absolute;
  right: -10%;
  bottom: -95px;
  width: 55%;
  height: 160px;
  border: 2px solid rgba(109, 217, 236, 0.25);
  border-radius: 50%;
  content: "";
  transform: rotate(-8deg);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.12rem;
}

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

.stat-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ocean-600);
  font-size: 2rem;
  line-height: 1;
}

.timeline {
  display: grid;
  margin-top: 46px;
  grid-template-columns: repeat(4, 1fr);
}

.timeline-step {
  position: relative;
  padding: 54px 24px 0 0;
}

.timeline-step::before {
  position: absolute;
  top: 17px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--line);
}

.timeline-step::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 5px solid var(--white);
  border-radius: 50%;
  content: "";
  background: var(--ocean-500);
  box-shadow: 0 0 0 1px var(--ocean-500);
}

.timeline-step span {
  color: var(--ocean-600);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--ocean-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--navy-900);
  background: var(--aqua-100);
}

.pool-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.filter-btn {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 720;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: var(--ocean-500);
  color: var(--white);
  background: var(--ocean-600);
}

.pool-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pool-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 26px;
}

.pool-card[hidden] {
  display: none;
}

.pool-type {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--ocean-600);
  background: var(--aqua-100);
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pool-card h3 {
  margin-bottom: 8px;
}

.pool-size {
  margin-bottom: 20px;
  color: var(--navy-800);
  font-size: 1.02rem;
  font-weight: 780;
}

.pool-card .pool-detail {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.pool-card-gallery {
  position: relative;
  min-height: 0;
  padding: 0;
}

.pool-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--mist);
}

.pool-card-content {
  display: flex;
  min-height: 290px;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.pool-card-gallery .pool-type {
  margin-bottom: 18px;
}

.pool-gallery-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--ocean-600);
  font-size: 0.82rem;
  font-weight: 820;
}

.pool-gallery-action::after {
  content: "→";
  transition: transform 0.2s ease;
}

.pool-card-gallery:hover .pool-gallery-action::after {
  transform: translateX(4px);
}

.pool-card-hitarea {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
}

.pool-card-hitarea:focus-visible {
  outline: 4px solid var(--ocean-500);
  outline-offset: 4px;
}

body.gallery-open {
  overflow: hidden;
}

.pool-gallery-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  align-items: center;
  padding: 20px;
}

.pool-gallery-modal[hidden] {
  display: none;
}

.pool-gallery-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 18, 35, 0.88);
  cursor: pointer;
}

.pool-gallery-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, 100%);
  max-height: calc(100dvh - 40px);
  margin: 0 auto;
  overflow: auto;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
}

.pool-gallery-close {
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3, 24, 44, 0.72);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}

.pool-gallery-media {
  position: relative;
  display: flex;
  min-height: 580px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-950);
}

.pool-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 40px);
  object-fit: contain;
}

.pool-gallery-nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3, 24, 44, 0.65);
  cursor: pointer;
  font-size: 1.8rem;
  transform: translateY(-50%);
}

.pool-gallery-prev { left: 16px; }
.pool-gallery-next { right: 16px; }

.pool-gallery-counter {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 50%;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 24, 44, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
  transform: translateX(-50%);
}

.pool-gallery-info {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 48px);
}

.pool-gallery-info h2 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.pool-gallery-size {
  margin-bottom: 20px;
  color: var(--navy-800);
  font-weight: 800;
}

.pool-gallery-description {
  color: var(--muted);
}

.pool-gallery-colours {
  margin: 20px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.pool-gallery-thumbs {
  display: flex;
  gap: 9px;
  margin: 24px 0;
  overflow-x: auto;
  padding: 3px;
}

.pool-gallery-thumb {
  width: 76px;
  height: 58px;
  flex: 0 0 auto;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: var(--mist);
  cursor: pointer;
}

.pool-gallery-thumb.active {
  border-color: var(--ocean-500);
}

.pool-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pool-gallery-enquire {
  width: 100%;
  margin-top: auto;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.swatch-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.swatch {
  height: 110px;
  margin-bottom: 16px;
  border: 1px solid rgba(6, 27, 52, 0.08);
  border-radius: var(--radius-sm);
}

.swatch-white { background: linear-gradient(135deg, #fffef5, #e9eadf); }
.swatch-pool { background: linear-gradient(135deg, #8bdff5, #55afd5); }
.swatch-night { background: linear-gradient(135deg, #167cb9, #054d8f); }

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

.project-card {
  cursor: pointer;
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-copy {
  padding: 24px 26px 27px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 13px;
}

.tag {
  display: inline-flex;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--ocean-600);
  background: var(--aqua-100);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.04em;
}

.project-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}

.project-card.featured img {
  height: 100%;
  aspect-ratio: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(36px, 7vw, 90px);
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
  border-color: var(--ocean-500);
  transform: translateX(3px);
}

.contact-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ocean-600);
  background: var(--aqua-100);
  font-weight: 850;
}

.contact-link small {
  display: block;
  color: var(--muted);
}

.contact-form {
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-900);
  font-size: 0.84rem;
  font-weight: 730;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #cbdde3;
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ocean-500);
  outline: none;
  box-shadow: 0 0 0 4px rgba(8, 168, 223, 0.12);
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--ocean-600);
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.form-status.show { display: block; }
.form-status.success { color: var(--success); background: #e5f7f2; }
.form-status.warning { color: #73520c; background: #fff5d9; }
.form-status.error { color: var(--danger); background: #fff0f0; }

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-footer {
  margin-top: 96px;
  padding: 68px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 70px;
  padding-bottom: 50px;
}

.footer-brand {
  display: inline-flex;
  width: 230px;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

.footer-intro {
  max-width: 470px;
}

.footer-title {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a:hover {
  color: var(--aqua-300);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: #1e9b61;
  box-shadow: 0 12px 28px rgba(7, 45, 31, 0.26);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: -0.02em;
}

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

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

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

@media (max-width: 1040px) {
  .site-nav { gap: 18px; }
  .nav-link { font-size: 0.82rem; }
  .header-cta { display: none; }
  .cards-4, .category-cards { grid-template-columns: repeat(2, 1fr); }
  .pool-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 72px 0; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .menu-toggle { display: inline-flex; }
  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 120px 28px 40px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-open .site-nav { opacity: 1; pointer-events: auto; transform: none; }
  .nav-open .site-nav .nav-link { color: var(--navy-900) !important; }
  .site-nav .nav-link { width: 100%; padding: 12px 0; font-size: 1.38rem; }
  .site-nav .nav-link::after { display: none; }
  .site-nav .header-actions { margin-top: 20px; }
  .hero { min-height: 720px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3, 20, 39, 0.89), rgba(3, 20, 39, 0.4)), linear-gradient(0deg, rgba(3, 20, 39, 0.8), transparent 55%); }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: initial; }
  .cards-3 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .cta-band { grid-template-columns: 1fr; padding: 38px; }
  .project-card.featured { grid-template-columns: 1fr; }
  .project-card.featured img { aspect-ratio: 16 / 10; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .pool-gallery-dialog { grid-template-columns: 1fr; }
  .pool-gallery-media { min-height: 0; aspect-ratio: 4 / 3; }
  .pool-gallery-image { max-height: 52vh; }
  .pool-gallery-info { padding: 28px; }
  .pool-gallery-close { position: fixed; top: 30px; right: 30px; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-shell { min-height: 76px; }
  .brand { width: 72px; height: 58px; }
  .hero { min-height: 690px; }
  .hero-content { padding-top: 135px; padding-bottom: 72px; }
  .hero h1 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-strip { margin-top: 0; padding-top: 22px; }
  .cards-4, .category-cards, .pool-grid, .project-grid, .stats-grid, .color-swatches { grid-template-columns: 1fr; }
  .category-card { min-height: 330px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-step { padding-top: 38px; }
  .page-hero { padding: 138px 0 70px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-form { border-radius: var(--radius-md); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-whatsapp { right: 15px; bottom: 15px; width: 52px; height: 52px; }
  .pool-card-content { min-height: 270px; }
  .pool-gallery-modal { align-items: end; padding: 0; }
  .pool-gallery-dialog { width: 100%; max-height: 96dvh; border-radius: 24px 24px 0 0; }
  .pool-gallery-media { aspect-ratio: 1 / 1; }
  .pool-gallery-info { padding: 25px 20px 30px; }
  .pool-gallery-close { top: 16px; right: 16px; }
  .pool-gallery-nav { width: 42px; height: 42px; }
}
