:root {
  --font-title: "Sora", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-script: "Playwrite US Trad", cursive;
  --font-display: "Barlow Condensed", sans-serif;
  --color-navy: #062f46;
  --color-teal: #007f91;
  --color-aqua: #1bbfd4;
  --color-gold: #f6bd3d;
  --color-accent: #dff45f;
  --color-white: #ffffff;
  --color-muted: rgba(255, 255, 255, 0.72);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-white);
  background: var(--color-white);
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
.title-font {
  font-family: var(--font-title);
}

.script-font {
  font-family: var(--font-script);
}

a {
  text-decoration: none;
}

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

.site-shell,
.hero-section {
  min-height: 100vh;
  min-height: 100svh;
}

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #032633;
  isolation: isolate;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  padding: 42px clamp(34px, 5vw, 78px) 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-sticky {
  position: fixed;
  z-index: 1100;
  min-height: 84px;
  padding: 16px clamp(28px, 4vw, 64px);
  border-bottom: 1px solid #e5ebea;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  animation: sticky-header-in 0.32s ease both;
}

.site-header.is-sticky .navbar {
  width: min(100%, 1480px);
  margin: 0 auto;
}

@keyframes sticky-header-in {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.navbar {
  padding: 0;
}

.brand-logo {
  width: clamp(126px, 13vw, 176px);
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.24));
  transition: width 0.3s ease, filter 0.3s ease;
}

.site-header.is-sticky .brand-logo {
  width: 164px;
  filter: none;
}

.site-header.is-sticky .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-toggler {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  color: var(--color-white);
  place-items: center;
}

.navbar-toggler:focus,
.navbar-toggler:focus-visible {
  outline: 0;
  box-shadow: none;
}

.navbar-toggler i {
  font-size: 25px;
  line-height: 1;
}

.navbar-nav {
  gap: clamp(20px, 2.4vw, 34px);
}

.navbar .nav-link {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.15vw, 1.14rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--color-white);
}

.navbar .nav-link.active::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  content: "";
  background: var(--color-white);
}

.site-header.is-sticky .navbar .nav-link {
  display: inline-flex;
  min-height: 40px;
  padding: 10px 13px;
  color: #66777c;
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: none;
  align-items: center;
}

.site-header.is-sticky .navbar-nav {
  gap: 4px;
}

.site-header.is-sticky .navbar .nav-link:hover,
.site-header.is-sticky .navbar .nav-link.active {
  color: #0b2831;
}

.site-header.is-sticky .navbar .nav-link.active::after {
  right: 13px;
  bottom: 3px;
  left: 13px;
  width: auto;
  height: 2px;
  border-radius: 0;
  background: var(--color-accent);
  transform: none;
}

.menu-trigger {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-left: 24px;
  padding: 0;
  border: 0;
  color: var(--color-white);
  background: transparent;
  place-items: center;
}

.menu-trigger i {
  font-size: 2rem;
  line-height: 1;
}

.site-header.is-sticky .menu-trigger,
.site-header.is-sticky .navbar-toggler {
  color: #0b2831;
}

.site-header.is-sticky .menu-trigger {
  width: 42px;
  height: 42px;
  margin-left: 20px;
  border-radius: 50%;
  color: #0b2831;
  background: transparent;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header.is-sticky .menu-trigger:hover {
  color: #ffffff;
  background: #0b2831;
}

.site-header.is-sticky .menu-trigger i {
  font-size: 1.45rem;
}

.site-header.is-sticky .navbar-toggler {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #0b2831;
  background: var(--color-accent);
}

.site-header.is-sticky .navbar-toggler:hover {
  color: #ffffff;
  background: #0b2831;
}

.side-menu {
  --bs-offcanvas-zindex: 2000;
  z-index: 2000;
  width: min(460px, 100vw) !important;
  border-left: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: var(--color-white);
  background:
    linear-gradient(180deg, rgba(2, 41, 54, 0.96), rgba(1, 25, 35, 0.99)),
    url("../img/hero-pool-water.png") 38% center / cover;
}

.offcanvas-backdrop {
  z-index: 1990;
  background: rgba(0, 20, 29, 0.52);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.offcanvas-backdrop.show {
  opacity: 1;
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  padding: 30px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.side-menu-logo {
  display: block;
  width: 148px;
  height: auto;
}

.side-menu-close {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  color: var(--color-white);
  background: transparent;
  font-size: 1.9rem;
  place-items: center;
  transition: transform 0.25s ease;
}

.side-menu-close:hover {
  transform: rotate(90deg);
}

.side-menu-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  padding: 30px 34px 24px;
  overflow-y: auto;
}

.side-menu-nav {
  display: grid;
}

.side-menu-link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
}

.side-menu-link span {
  width: 20px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
}

.side-menu-link:hover,
.side-menu-link.active {
  padding-left: 8px;
  color: var(--color-white);
}

.side-menu-link.active span {
  color: var(--color-aqua);
}

.side-menu-info {
  display: grid;
  gap: 24px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.side-menu-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.side-menu-about p {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.7;
}

.side-menu-contact {
  display: grid;
  gap: 8px;
}

.side-menu-contact .side-menu-label {
  margin-bottom: 4px;
}

.side-menu-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
}

.side-menu-contact a:hover {
  color: var(--color-white);
}

.side-menu-contact i {
  color: var(--color-aqua);
  font-size: 1rem;
}

.side-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 30px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.64rem;
}

.side-menu-social {
  display: flex;
  gap: 8px;
}

.side-menu-social a {
  display: grid;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  place-items: center;
}

.side-menu-social a:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero-slider,
.hero-slider .splide__track,
.hero-slider .splide__list,
.hero-slide {
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
}

.hero-slider {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.hero-slide {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.hero-slide--pool {
  background-image: url("../img/hero-garden-classic.png");
}

.hero-slide--water {
  background-image: url("../img/hero-premium-quality.png");
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(
      180deg,
      rgba(1, 20, 29, 0.4) 0%,
      transparent 27%,
      rgba(1, 18, 27, 0.16) 67%,
      rgba(1, 18, 27, 0.5) 100%
    ),
    linear-gradient(
      90deg,
      rgba(1, 18, 27, 0.08) 0%,
      rgba(1, 18, 27, 0.08) 48%,
      rgba(1, 18, 27, 0.68) 72%,
      rgba(1, 18, 27, 0.86) 100%
    );
}

.hero-slide--water::before {
  background:
    linear-gradient(
      180deg,
      rgba(1, 20, 29, 0.25) 0%,
      transparent 30%,
      rgba(1, 18, 27, 0.42) 100%
    ),
    linear-gradient(
      90deg,
      rgba(1, 18, 27, 0.04) 0%,
      rgba(1, 18, 27, 0.18) 48%,
      rgba(1, 18, 27, 0.82) 100%
    );
}

.hero-slide-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  padding: 145px clamp(145px, 11vw, 220px) 126px clamp(34px, 5vw, 78px);
}

.hero-display {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: min(41vw, 650px);
}

.hero-eyebrow {
  display: block;
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.72rem, 0.8vw, 0.88rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.hero-statement {
  display: grid;
  justify-items: end;
  width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: clamp(5.6rem, 10.5vw, 11.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-align: right;
  text-transform: uppercase;
}

.hero-statement span {
  display: block;
  margin-top: -0.06em;
  padding-top: 0.06em;
  background: url("../img/hero-pool-water.png") center / cover;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: brightness(2.55) contrast(0.92) saturate(0.35);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
  white-space: nowrap;
}

.hero-slide--pool .hero-statement {
  font-size: clamp(4.8rem, 8.2vw, 9.2rem);
}

.hero-slide--water .hero-display {
  width: min(44vw, 720px);
}

.hero-slide--water .hero-statement {
  font-size: clamp(4.8rem, 8.2vw, 9.2rem);
}

.hero-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 30px 0 0;
  padding: 11px 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.66);
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    gap 0.2s ease,
    border-color 0.2s ease;
}

.hero-action:hover {
  gap: 20px;
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero-social {
  position: absolute;
  z-index: 20;
  top: 50%;
  right: clamp(28px, 3vw, 54px);
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.hero-social::before,
.hero-social::after {
  position: absolute;
  left: 50%;
  width: 1px;
  height: 104px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
}

.hero-social::before {
  bottom: calc(100% + 24px);
}

.hero-social::after {
  top: calc(100% + 24px);
}

.hero-social a {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 300;
  place-items: center;
  transition: 0.2s ease;
}

.hero-social a:hover {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-navy);
}

.hero-footer {
  position: absolute;
  z-index: 20;
  right: clamp(145px, 11vw, 220px);
  bottom: clamp(34px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-count {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--color-white);
  font-family: var(--font-title);
}

.hero-count strong {
  min-width: 2ch;
  font-size: clamp(1.55rem, 1.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
}

.hero-count span {
  color: var(--color-muted);
  font-size: clamp(0.78rem, 0.9vw, 1rem);
  font-weight: 500;
}

.hero-progress {
  position: relative;
  display: block;
  width: clamp(58px, 4.5vw, 84px);
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.hero-progress span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background: var(--color-white);
  transition: width 0.45s ease;
}

.hero-arrows {
  display: flex;
  gap: 2px;
}

.hero-arrow {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  font-size: 1rem;
  place-items: center;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.hero-arrow:hover {
  color: var(--color-white);
  transform: translateY(-2px);
}

.featured-products {
  padding: 108px clamp(28px, 5vw, 78px) 132px;
  color: #111a1d;
  background: #f2f4f3;
}

.featured-products-inner {
  width: min(100%, 1540px);
  margin: 0 auto;
}

.featured-products-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 64px;
  padding-bottom: 28px;
  border-bottom: 1px solid #d4dcda;
  text-align: center;
}

.featured-products-kicker {
  display: block;
  margin-bottom: 10px;
  color: #4f6c74;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.featured-products-heading h2 {
  margin: 0;
  color: #0c252e;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.featured-products-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border: 0;
  border-bottom: 1px solid #76898d;
  color: #1d343b;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 500;
  transition:
    gap 0.2s ease,
    border-color 0.2s ease;
}

.featured-products-link:hover {
  gap: 18px;
  border-color: #1d343b;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: minmax(320px, 420px);
  justify-content: center;
}

.classic-card {
  min-width: 0;
}

.classic-card-visual {
  position: relative;
  height: 340px;
  isolation: isolate;
}

.classic-card-visual::before,
.classic-card-visual::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 285px;
  border-radius: 8px 8px 0 0;
  content: "";
}

.classic-card-visual::before {
  z-index: -2;
  background: #b9e3ec;
  transition: background 0.35s ease;
}

.classic-card-visual::after {
  z-index: -1;
  background: url("../img/hero-pool-water.png") 38% center / cover;
  opacity: 0.17;
}

.classic-card-visual[data-variant="orange"]::before {
  background: #ecd2bc;
}

.classic-card-image {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 122%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 24px 20px rgba(18, 42, 48, 0.24));
  transform: translateX(-50%);
  transition:
    opacity 0.2s ease,
    transform 0.4s ease;
}

.classic-card:hover .classic-card-image {
  transform: translateX(-50%) translateY(-6px) scale(1.015);
}

.classic-card-shadow {
  position: absolute;
  z-index: 1;
  right: 13%;
  bottom: 27px;
  left: 13%;
  height: 22px;
  border-radius: 50%;
  background: rgba(12, 37, 46, 0.22);
  filter: blur(12px);
}

.classic-card-badge {
  position: absolute;
  z-index: 4;
  top: 73px;
  left: 16px;
  padding: 7px 10px;
  border-radius: 3px;
  color: #0c252e;
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.classic-card-view {
  position: absolute;
  z-index: 4;
  top: 68px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: #10191c;
  font-size: 1rem;
  place-items: center;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.classic-card-view:hover {
  color: #10191c;
  background: #ffffff;
}

.classic-card-content {
  position: relative;
  z-index: 3;
  min-height: 245px;
  padding: 25px 24px 23px;
  border-radius: 0 0 8px 8px;
  color: #ffffff;
  background: #10191c;
  box-shadow: 0 24px 48px rgba(13, 26, 30, 0.18);
}

.classic-card-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.classic-card-title > div > span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.classic-card-title h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 600;
}

.classic-card-code {
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
}

.classic-card-content > p {
  max-width: 330px;
  margin: 15px 0 22px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.65;
}

.classic-card-options {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.classic-option-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.classic-swatches {
  display: flex;
  gap: 7px;
}

.classic-swatch {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 4px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  place-items: center;
}

.classic-swatch.active {
  border-color: rgba(255, 255, 255, 0.82);
}

.classic-swatch-color {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.classic-swatch-color--blue {
  background: #16bde5;
}

.classic-swatch-color--orange {
  background: #ff7513;
}

.classic-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 4px;
  color: #10191c;
  background: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.classic-card-action:hover {
  color: #10191c;
  background: var(--color-accent);
}

.classic-modal {
  position: relative;
  width: min(1020px, calc(100% - 32px));
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}

.classic-modal-container {
  background: rgba(3, 20, 27, 0.58) !important;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.classic-modal .swal2-html-container {
  margin: 0;
  padding: 0;
}

.classic-modal .swal2-actions {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  width: 46%;
  margin: 0;
  padding: 20px 42px 28px;
  border-top: 0;
  background: #ffffff;
  justify-content: flex-start;
  gap: 8px;
}

.classic-modal .swal2-confirm,
.classic-modal .swal2-cancel {
  min-height: 46px;
  margin: 0;
  padding: 0 18px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.69rem;
  font-weight: 600;
  box-shadow: none !important;
}

.classic-modal .swal2-confirm {
  color: #102027;
  background: var(--color-accent);
}

.classic-modal .swal2-cancel {
  border: 1px solid #d7e0df;
  color: #334b52;
  background: #ffffff;
}

.classic-modal .swal2-confirm:hover {
  color: #ffffff;
  background: #071d25;
}

.classic-modal .swal2-cancel:hover {
  border-color: #071d25;
  color: #071d25;
}

.classic-modal .swal2-close {
  z-index: 8;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #52686e;
  background: #f1f5f4;
  font-size: 1.55rem;
  transition: color 180ms ease, background-color 180ms ease;
}

.classic-modal .swal2-close:hover {
  color: #ffffff;
  background: #071d25;
}

.classic-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  min-height: 560px;
  color: #162b31;
  text-align: left;
}

.classic-modal-visual {
  position: relative;
  overflow: hidden;
  background: #e5eef0;
}

.classic-modal-gallery,
.classic-modal-gallery .splide__track,
.classic-modal-gallery .splide__list,
.classic-modal-gallery .splide__slide {
  width: 100%;
  height: 100%;
}

.classic-modal-gallery-slide {
  display: grid;
  padding: 44px;
  background: var(--modal-bg, #e5eef0);
  place-items: center;
}

.classic-modal-gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(18, 42, 48, 0.14));
}

.classic-modal-gallery .splide__arrow {
  width: 40px;
  height: 40px;
  border: 0;
  color: #102027;
  background: #ffffff;
  opacity: 1;
}

.classic-modal-gallery .splide__arrow--prev {
  left: 18px;
}

.classic-modal-gallery .splide__arrow--next {
  right: 18px;
}

.classic-modal-gallery .splide__arrow i {
  font-size: 1rem;
}

.classic-modal-gallery .splide__pagination {
  bottom: 20px;
  gap: 6px;
}

.classic-modal-gallery .splide__pagination__page {
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 0;
  background: rgba(16, 32, 39, 0.28);
  opacity: 1;
  transform: none;
}

.classic-modal-gallery .splide__pagination__page.is-active {
  width: 36px;
  background: #102027;
  transform: none;
}

.classic-modal-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 48px 42px 110px;
  background: #ffffff;
}

.classic-modal-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #18343c;
  background: var(--color-accent);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
}

.classic-modal-content h3 {
  margin: 16px 0 12px;
  color: #0c252e;
  font-family: var(--font-title);
  font-size: 2.15rem;
  font-weight: 700;
}

.classic-modal-content > p {
  margin: 0;
  color: #687c81;
  font-size: 0.8rem;
  line-height: 1.7;
}

.classic-modal-option {
  margin-top: 24px;
}

.classic-modal-option:first-of-type {
  margin-top: 26px;
}

.classic-modal-option-head {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.classic-modal-option-head > span {
  color: #5e7177;
  font-size: 0.65rem;
  font-weight: 600;
}

.classic-modal-option-head > strong {
  color: #18343c;
  font-size: 0.63rem;
  font-weight: 600;
}

.classic-modal-swatches,
.classic-modal-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.classic-modal-swatch,
.classic-modal-size {
  min-height: 36px;
  border: 1px solid #d7dfde;
  border-radius: 999px;
  color: #50656b;
  background: #ffffff;
  font-size: 0.64rem;
}

.classic-modal-swatch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
}

.classic-modal-swatch i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.classic-modal-swatch[data-variant="blue"] i {
  background: #16bde5;
}

.classic-modal-swatch[data-variant="orange"] i {
  background: #ff7513;
}

.classic-modal-size {
  padding: 0 11px;
}

.classic-modal-swatch.active,
.classic-modal-size.active {
  border-color: var(--color-accent);
  color: #102027;
  background: var(--color-accent);
}

/* Compact product showcase */
.featured-products {
  padding: 104px clamp(20px, 3.2vw, 56px) 124px;
  background: #ffffff;
}

.featured-products-inner {
  width: min(100%, 1580px);
}

.featured-products-heading {
  gap: 5px;
  margin-bottom: 34px;
  padding-bottom: 0;
  border-bottom: 0;
}

.featured-products-kicker {
  margin-bottom: 7px;
  color: #648087;
  font-size: 0.62rem;
}

.featured-products-heading h2 {
  color: #0b191d;
  font-size: 2.65rem;
}

.featured-products-link {
  padding: 5px 0;
  border-bottom: 0;
  color: #18282d;
  font-size: 0.76rem;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.product-showcase-card {
  --card-surface: #b8dfe7;
  position: relative;
  min-width: 0;
  height: 430px;
  isolation: isolate;
  transition: transform 0.35s ease;
}

.product-showcase-card:hover {
  z-index: 3;
  transform: translateY(-5px);
}

.product-showcase-card::before,
.product-showcase-card::after {
  position: absolute;
  z-index: -2;
  top: 120px;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 6px;
  content: "";
}

.product-showcase-card::before {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.24), transparent 48%),
    var(--card-surface);
  box-shadow: 0 18px 34px rgba(20, 39, 44, 0.1);
}

.product-showcase-card::after {
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      transparent 26%,
      rgba(7, 20, 25, 0.1) 54%,
      rgba(7, 18, 23, 0.93) 100%
    ),
    url("../img/hero-pool-water.png") center / cover;
  opacity: 0.68;
}

.product-showcase-card--square {
  --card-surface: #8fd4e4;
}

.product-showcase-card--jacuzzi {
  --card-surface: #51646c;
}

.product-showcase-card--icebath {
  --card-surface: #71858d;
}

.product-showcase-media {
  position: absolute;
  inset: 0;
}

.product-showcase-media img {
  position: absolute;
  z-index: 2;
  top: 34px;
  left: 50%;
  width: 88%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 19px 17px rgba(8, 27, 33, 0.24));
  transform: translateX(-50%);
  transition: transform 0.4s ease;
}

.product-showcase-card:hover .product-showcase-media img {
  transform: translateX(-50%) translateY(-7px) scale(1.015);
}

.product-showcase-card--square .product-showcase-media img {
  top: 38px;
  width: 86%;
}

.product-showcase-card--jacuzzi .product-showcase-media img {
  top: 34px;
  width: 86%;
}

.product-showcase-card--icebath .product-showcase-media img {
  top: 42px;
  width: 82%;
}

.product-showcase-view {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #10191c;
  background: #ffffff;
  place-items: center;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.product-showcase-view:hover {
  color: #10191c;
  background: var(--color-accent);
}

.product-showcase-content {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: #ffffff;
}

.product-showcase-content h3 {
  margin: 0 0 3px;
  font-family: var(--font-title);
  font-size: 1.08rem;
  font-weight: 600;
}

.product-showcase-content p {
  min-height: 34px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 300;
  line-height: 1.45;
}

.product-showcase-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 16px;
}

.product-color-preview {
  display: flex;
  align-items: center;
  gap: 3px;
}

.product-color-option {
  display: grid;
  width: 18px;
  height: 18px;
  padding: 3px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  place-items: center;
}

.product-color-option.active {
  border-color: rgba(255, 255, 255, 0.9);
}

.product-color-option i {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--swatch);
}

.product-showcase-actions {
  grid-column: 2;
  display: flex;
  gap: 6px;
  align-items: center;
}

.product-showcase-buy {
  min-width: 108px;
  min-height: 34px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #10191c;
  background: #ffffff;
  font-size: 0.68rem;
  font-weight: 500;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.product-showcase-buy:hover {
  color: #10191c;
  background: var(--color-accent);
}

.classic-modal-measure {
  margin: 24px 0 0;
  padding-top: 16px;
  border-top: 1px solid #e2e8e7;
  color: #687c81;
  background: transparent;
  font-size: 0.68rem;
  line-height: 1.55;
}

.accessories-section {
  padding: 68px clamp(20px, 3.2vw, 56px) 88px;
  color: #111b1f;
  background: #ffffff;
}

.accessories-inner {
  width: min(100%, 1580px);
  margin: 0 auto;
}

.accessories-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.accessories-heading > span {
  display: block;
  margin-bottom: 10px;
  color: #648087;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.accessories-heading h2 {
  margin: 0;
  color: #0b191d;
  font-family: var(--font-title);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1;
}

.accessories-heading p {
  margin: 12px auto 0;
  color: #708086;
  font-size: 0.86rem;
  line-height: 1.6;
}

.accessories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.accessory-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border: 1px solid #dfe6e5;
  border-radius: 6px;
  background: #f5f8f8;
  isolation: isolate;
}

.accessory-card--ladder {
  background: #f5f8f8;
}

.accessory-card--filter {
  background: #f5f8f8;
}

.accessory-card::before,
.accessory-card::after {
  position: absolute;
  content: "";
}

.accessory-card::before {
  z-index: -2;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54%;
  background:
    linear-gradient(180deg, rgba(245, 248, 248, 0), rgba(245, 248, 248, 0.78)),
    url("../img/hero-pool-water.png") center / cover;
  opacity: 0.12;
}

.accessory-card::after {
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #0b7382;
}

.accessory-card-copy {
  position: relative;
  z-index: 3;
  padding: 27px 28px 0;
}

.accessory-card-index {
  display: block;
  margin-bottom: 14px;
  color: #147d8c;
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.accessory-card-copy h3 {
  max-width: 350px;
  margin: 0 0 9px;
  color: #111b1f;
  font-family: var(--font-title);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.16;
}

.accessory-card-copy p {
  max-width: 330px;
  margin: 0;
  color: #718087;
  font-size: 0.76rem;
  line-height: 1.55;
}

.accessory-card-spec {
  display: inline-block;
  margin-top: 16px;
  color: #354b52;
  font-size: 0.65rem;
  font-weight: 500;
}

.accessory-card-visual {
  position: absolute;
  z-index: 1;
  top: 154px;
  right: 24px;
  bottom: 46px;
  left: 24px;
  display: grid;
  place-items: center;
}

.accessory-card-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 18px rgba(23, 35, 39, 0.12));
  transition: transform 0.45s ease;
}

.accessory-card:hover .accessory-card-visual img {
  transform: translateY(-7px) scale(1.025);
}

.accessory-card--pump .accessory-card-visual img {
  width: 108%;
  max-width: none;
}

.accessory-card--ladder .accessory-card-visual {
  top: 146px;
  bottom: 42px;
}

.accessory-card--ladder .accessory-card-visual img {
  width: auto;
  height: 100%;
}

.accessory-card--filter .accessory-card-visual img {
  width: 68%;
}

.accessory-card-action {
  position: absolute;
  z-index: 4;
  bottom: 21px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #14272d;
  font-size: 0.69rem;
  font-weight: 600;
  transition:
    gap 0.2s ease,
    color 0.2s ease;
}

.accessory-card-action:hover {
  gap: 12px;
  color: var(--color-accent);
}

/* Alternating accessory stories */
.accessories-inner {
  width: min(100%, 1320px);
}

.accessories-heading {
  margin-bottom: 26px;
}

.accessories-grid {
  display: block;
}

.accessory-card,
.accessory-card--ladder,
.accessory-card--filter {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 0;
  height: 360px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.accessory-card + .accessory-card {
  margin-top: 12px;
  border-top: 0;
}

.accessory-card::before,
.accessory-card::after {
  display: none;
}

.accessory-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  min-height: 0;
  height: 360px;
  padding: 32px clamp(40px, 5vw, 70px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.accessory-card-index {
  margin-bottom: 24px;
  color: #6f858b;
  font-size: 0.62rem;
}

.accessory-card-copy h3 {
  max-width: 470px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  font-weight: 600;
  line-height: 1.08;
}

.accessory-card-copy p {
  max-width: 420px;
  color: #697a80;
  font-size: 0.95rem;
  line-height: 1.65;
}

.accessory-card-spec {
  position: relative;
  margin-top: 22px;
  padding-left: 14px;
  color: #294047;
  font-size: 0.78rem;
  font-weight: 500;
}

.accessory-card-spec::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: #0b8798;
  transform: translateY(-50%);
}

.accessory-card-visual,
.accessory-card--ladder .accessory-card-visual {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: grid;
  min-width: 0;
  min-height: 0;
  height: 360px;
  padding: 28px;
  background: transparent;
  place-items: center;
}

.accessory-card--ladder .accessory-card-copy {
  order: 2;
}

.accessory-card--ladder .accessory-card-visual {
  order: 1;
}

.accessory-card-visual img,
.accessory-card--pump .accessory-card-visual img {
  width: min(78%, 500px);
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.accessory-card--ladder .accessory-card-visual img {
  width: auto;
  height: 300px;
  max-height: 300px;
}

.accessory-card--filter .accessory-card-visual img {
  width: min(60%, 340px);
}

.accessory-card-action {
  position: static;
  display: inline-flex;
  min-width: 132px;
  min-height: 44px;
  margin-top: 28px;
  padding: 12px 20px;
  border: 1px solid #071d25;
  border-radius: 4px;
  color: #ffffff;
  background: #071d25;
  font-size: 0.76rem;
  font-weight: 600;
  justify-content: center;
  transition: color 0.2s ease, background-color 0.2s ease, gap 0.2s ease;
}

.accessory-card-action:hover {
  gap: 10px;
  color: #071d25;
  background: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
  .hero-action,
  .hero-arrow,
  .hero-progress span,
  .classic-card-image,
  .product-showcase-card,
  .product-showcase-media img,
  .accessory-card-visual img {
    transition: none;
  }
}

/* Compact accessory slider */
.accessories-section {
  padding: 72px clamp(28px, 6vw, 96px) 88px;
  color: #071d25;
  background: #ffffff;
}

.accessories-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.accessories-heading {
  display: flex;
  position: relative;
  margin-bottom: 20px;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
}

.accessories-heading > div:first-child > span,
.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: #44727e;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.accessories-heading h2 {
  margin: 0;
  font-size: 2.65rem;
}

.accessories-heading-link {
  margin-top: 8px;
  justify-content: center;
}

.accessories-heading p {
  margin: 10px auto 0;
  font-size: 0.9rem;
}

.accessory-slider-nav {
  display: flex;
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.accessory-slider-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid #d6e0e2;
  border-radius: 50%;
  color: #071d25;
  background: #ffffff;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.accessory-slider-arrow--prev {
  left: 0;
}

.accessory-slider-arrow--next {
  right: 0;
}

.accessory-slider-arrow:hover {
  border-color: #071d25;
  color: #ffffff;
  background: #071d25;
}

.accessory-slider-arrow i {
  font-size: 1rem;
}

.accessories-slider {
  padding-bottom: 26px;
}

.accessories-slider .splide__track {
  overflow: hidden;
}

.accessories-slider .splide__pagination {
  bottom: 0;
  right: 0;
  left: 0;
  justify-content: center;
  padding: 0;
  gap: 6px;
}

.accessories-slider .splide__pagination__page {
  width: 26px;
  height: 2px;
  margin: 0;
  border-radius: 0;
  background: #cbd6d8;
  opacity: 1;
  transform: none;
}

.accessories-slider .splide__pagination__page.is-active {
  width: 48px;
  background: #071d25;
  transform: none;
}

.accessories-slider .accessory-card,
.accessories-slider .accessory-card--ladder,
.accessories-slider .accessory-card--filter {
  display: grid;
  width: 100%;
  height: 390px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.accessories-slider .accessory-card-copy,
.accessories-slider .accessory-card-visual,
.accessories-slider .accessory-card--ladder .accessory-card-visual {
  height: 390px;
  min-height: 0;
}

.accessories-slider .accessory-card-copy,
.accessories-slider .accessory-card--ladder .accessory-card-copy {
  order: 1;
  width: min(100%, 480px);
  margin: 0 auto;
  padding: 34px 0;
}

.accessories-slider .accessory-card-visual,
.accessories-slider .accessory-card--ladder .accessory-card-visual {
  order: 2;
  padding: 24px;
}

.accessories-slider .accessory-card-copy h3 {
  max-width: 540px;
  font-size: clamp(2.2rem, 3.5vw, 3.45rem);
}

.accessories-slider .accessory-card-copy p {
  font-size: 1rem;
}

.accessories-slider .accessory-card-visual img,
.accessories-slider .accessory-card--pump .accessory-card-visual img {
  width: min(78%, 560px);
  max-height: 330px;
}

.accessories-slider .accessory-card--ladder .accessory-card-visual img {
  width: auto;
  height: 320px;
  max-height: 320px;
}

.accessories-slider .accessory-card--filter .accessory-card-visual img {
  width: min(54%, 380px);
}

.accessory-card-action {
  min-width: 138px;
  border-color: #d7e0e2;
  border-radius: 999px;
  color: #071d25;
  background: #ffffff;
  box-shadow: none;
}

.accessory-card-action:hover {
  border-color: #071d25;
  color: #ffffff;
  background: #071d25;
}

/* About */
.about-section {
  padding: 96px clamp(28px, 6vw, 96px);
  color: #071d25;
  background: #ffffff;
}

.about-inner {
  display: grid;
  width: min(100%, 1440px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

.about-copy {
  padding-left: clamp(0px, 2vw, 32px);
}

.about-copy h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.2vw, 4.5rem);
  font-weight: 600;
  line-height: 1.08;
}

.about-copy > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: #60757c;
  font-size: 0.98rem;
  line-height: 1.85;
}

.about-values {
  display: grid;
  margin-top: 34px;
  padding: 24px 0;
  border-top: 1px solid #dfe6e8;
  border-bottom: 1px solid #dfe6e8;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-values div {
  display: grid;
  gap: 8px;
}

.about-values strong {
  color: #178da0;
  font-size: 0.68rem;
  font-weight: 600;
}

.about-values span {
  color: #243b43;
  font-size: 0.73rem;
  line-height: 1.5;
}

.about-action {
  display: inline-flex;
  margin-top: 30px;
  color: #071d25;
  font-size: 0.78rem;
  font-weight: 600;
  align-items: center;
  gap: 10px;
}

.about-action::after {
  width: 52px;
  height: 1px;
  margin-left: 4px;
  content: "";
  background: #071d25;
}

.about-visual {
  height: clamp(500px, 50vw, 690px);
  margin: 0;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

/* Contact */
.contact-section {
  padding: 104px clamp(28px, 7vw, 120px) 112px;
  color: #071d25;
  background: #f7f9f9;
}

.contact-inner {
  display: grid;
  width: min(100%, 1320px);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(64px, 9vw, 140px);
}

.contact-intro h2 {
  max-width: 570px;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.contact-intro > p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #667a80;
  font-size: 0.94rem;
  line-height: 1.75;
}

.contact-direct {
  display: grid;
  margin-top: 40px;
  gap: 18px;
}

.contact-direct a {
  display: flex;
  color: #132b33;
  font-size: 0.8rem;
  align-items: center;
  gap: 14px;
}

.contact-direct i {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid #d3dfe1;
  border-radius: 50%;
  font-size: 0.95rem;
  place-items: center;
}

.contact-direct span {
  display: grid;
  gap: 3px;
}

.contact-direct small {
  color: #819196;
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 26px;
}

.contact-form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form-row {
  display: grid;
  gap: 9px;
}

.contact-form-row label {
  color: #526970;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.contact-form-row input,
.contact-form-row select,
.contact-form-row textarea {
  width: 100%;
  padding: 7px 0 13px;
  border: 0;
  border-bottom: 1px solid #bfcdd0;
  border-radius: 0;
  outline: 0;
  color: #071d25;
  background: transparent;
  font: 400 0.92rem var(--font-body);
  transition: border-color 0.2s ease;
}

.contact-form-row textarea {
  min-height: 104px;
  resize: vertical;
}

.contact-form-row input:focus,
.contact-form-row select:focus,
.contact-form-row textarea:focus {
  border-color: var(--color-accent);
}

.contact-submit {
  display: inline-flex;
  width: fit-content;
  min-height: 50px;
  margin-top: 4px;
  padding: 13px 25px;
  border: 1px solid #071d25;
  border-radius: 999px;
  color: #ffffff;
  background: #071d25;
  font: 600 0.76rem var(--font-body);
  align-items: center;
  gap: 12px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.contact-submit:hover {
  color: #071d25;
  background: transparent;
}

/* Footer */
.site-footer {
  padding: 70px clamp(28px, 6vw, 96px) 24px;
  color: #ffffff;
  background: #061c24;
}

.footer-inner {
  display: grid;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-bottom: 58px;
  grid-template-columns: minmax(260px, 1.6fr) 0.7fr 1fr auto;
  gap: clamp(38px, 6vw, 92px);
}

.footer-brand img {
  width: 158px;
}

.footer-brand p {
  max-width: 390px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.8;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-nav > span,
.footer-contact > span {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.76rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-contact p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  place-items: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
  color: #061c24;
  background: #ffffff;
}

.footer-bottom {
  display: flex;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.72);
  align-items: center;
  gap: 8px;
}

/* About: quiet, product-led editorial layout */
.about-section {
  padding: 108px clamp(28px, 6vw, 96px) 116px;
  background: #ffffff;
}

.about-inner {
  display: block;
  width: min(100%, 1320px);
}

.about-heading {
  display: grid;
  padding-bottom: 38px;
  border-bottom: 1px solid #dce5e7;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  align-items: end;
  gap: 40px;
}

.about-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.about-heading h2 {
  margin: 0;
  color: #071d25;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
}

.about-heading p {
  max-width: 410px;
  margin: 0;
  color: #5f747b;
  font-size: 0.95rem;
  line-height: 1.7;
}

.about-layout {
  display: grid;
  padding-top: 54px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(48px, 8vw, 142px);
}

.about-statement {
  max-width: 440px;
}

.about-statement p {
  margin: 0;
  color: #61757b;
  font-size: 0.94rem;
  line-height: 1.85;
}

.about-statement .about-lead {
  margin-bottom: 20px;
  color: #152f38;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.55;
}

.about-contact-link {
  display: inline-flex;
  margin-top: 30px;
  color: #071d25;
  font-size: 0.78rem;
  font-weight: 600;
  align-items: center;
  gap: 11px;
}

.about-contact-link::after {
  width: 46px;
  height: 1px;
  content: "";
  background: #071d25;
}

.about-location {
  display: flex;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #dce5e7;
  color: #6f8287;
  font-size: 0.68rem;
  gap: 22px;
}

.about-location span + span::before {
  margin-right: 22px;
  content: "/";
  color: #a5b3b6;
}

.about-product-visual {
  display: grid;
  min-height: 420px;
  margin: 0;
  place-items: center;
}

.about-product-visual img {
  display: block;
  width: min(100%, 670px);
  max-height: 410px;
  object-fit: contain;
}

.about-product-visual figcaption {
  margin-top: -8px;
  color: #71858b;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* About: a single editorial product scene instead of a conventional promo block. */
.about-section {
  overflow: hidden;
  padding: 110px 28px 118px;
  background: #fff;
}

.about-inner {
  display: block;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.about-intro {
  display: grid;
  padding-bottom: 32px;
  border-bottom: 1px solid #dbe4e6;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: end;
  gap: 48px;
}

.about-intro .section-kicker {
  grid-column: 1 / -1;
}

.about-intro h2 {
  max-width: 720px;
  margin: 0;
  color: #0a2028;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.85rem, 4.8vw, 4.85rem);
  font-weight: 650;
  line-height: 1.03;
  letter-spacing: 0;
}

.about-intro > div {
  padding-bottom: 4px;
}

.about-intro p {
  max-width: 455px;
  margin: 0;
  color: #506871;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-intro .about-contact-link {
  margin-top: 24px;
}

.about-water-scene {
  position: relative;
  height: clamp(420px, 42vw, 560px);
  margin: 48px 0 0;
  overflow: hidden;
  isolation: isolate;
  background: #d8f0f2;
}

.about-water-scene::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.about-water-texture {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) brightness(1.06);
}

.about-scene-copy {
  position: absolute;
  z-index: 2;
  top: clamp(34px, 5vw, 68px);
  left: clamp(28px, 5.1vw, 76px);
  width: min(255px, 28%);
  color: #092832;
}

.about-scene-copy span,
.about-water-scene figcaption {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-scene-copy p {
  margin: 15px 0 0;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.55;
}

.about-scene-product {
  position: absolute;
  z-index: 1;
  right: clamp(-34px, 1.5vw, 24px);
  bottom: clamp(-38px, -2vw, -10px);
  width: min(65%, 820px);
  height: auto;
}

.about-water-scene figcaption {
  position: absolute;
  z-index: 2;
  bottom: 35px;
  left: clamp(28px, 5.1vw, 76px);
  margin: 0;
  color: #143841;
}

.about-closing {
  display: flex;
  padding-top: 20px;
  color: #4d6870;
  font-size: 0.78rem;
  line-height: 1.5;
  justify-content: space-between;
  gap: 24px;
}

.about-closing p {
  max-width: 450px;
  margin: 0;
}

.about-closing span {
  color: #0e2b34;
  font-weight: 650;
  white-space: nowrap;
}

/* Editorial about showcase */
.about-section {
  padding: 118px 28px 122px;
}

.about-intro {
  display: flex;
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  text-align: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
}

.about-intro .section-kicker {
  margin-bottom: 13px;
}

.about-intro h2 {
  max-width: none;
  font-size: clamp(2.6rem, 4.1vw, 4.35rem);
  font-weight: 650;
  line-height: 1.04;
}

.about-intro > p {
  max-width: 500px;
  margin: 19px auto 0;
  color: #5f747b;
  font-size: 1rem;
  line-height: 1.65;
}

.about-intro .about-contact-link {
  margin-top: 22px;
}

.about-showcase {
  position: relative;
  display: grid;
  min-height: 425px;
  margin: 46px auto 0;
  grid-template-columns: 1fr minmax(340px, 430px) 1fr;
  align-items: center;
}

.about-feature-product {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  height: 392px;
  margin: 0 auto;
  overflow: hidden;
  background: #d8f0f2;
}

.about-feature-water,
.about-feature-water img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-feature-water img {
  object-fit: cover;
  filter: saturate(0.76) brightness(1.08);
}

.about-feature-water::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}

.about-feature-product-image {
  position: absolute;
  z-index: 1;
  bottom: -23px;
  left: 50%;
  width: 136%;
  max-width: none;
  transform: translateX(-50%);
}

.about-feature-product figcaption {
  position: absolute;
  z-index: 2;
  top: 23px;
  left: 24px;
  margin: 0;
  color: #0a2b35;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-note {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  min-height: 184px;
  padding: 28px;
  overflow: hidden;
  color: #0a2028;
  background-color: #f3f7f7;
  background-repeat: no-repeat;
  background-position: right -42px bottom -55px;
  background-size: 205px auto;
}

.about-note::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.7);
}

.about-note > * {
  position: relative;
  z-index: 1;
}

.about-note--left {
  justify-self: end;
  margin-right: -24px;
  background-image: url("../img/products/ipoolgoSquare.png");
}

.about-note--right {
  justify-self: start;
  margin-left: -24px;
  background-image: url("../img/products/ipoolgo-Jakuzi.png");
}

.about-note span {
  display: block;
  margin-bottom: 21px;
  color: #0a8da8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about-note strong {
  display: block;
  max-width: 165px;
  font-size: 1rem;
  line-height: 1.25;
}

.about-note p {
  max-width: 175px;
  margin: 8px 0 0;
  color: #526c74;
  font-size: 0.76rem;
  line-height: 1.45;
}

/* Compact layered about gallery */
.about-section {
  padding: 88px 28px 88px;
  background: #fff;
}

.about-inner {
  width: min(100%, 1320px);
}

.about-intro {
  max-width: 680px;
}

.about-badge,
.featured-products-kicker,
.accessories-heading > div:first-child > .about-badge {
  display: inline-flex;
  min-height: 23px;
  margin-bottom: 13px;
  padding: 4px 11px;
  border-radius: 999px;
  color: #18343c;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-items: center;
  background: #dff45f;
}

.about-intro h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 3.5vw, 3.65rem);
  font-weight: 650;
  line-height: 1.04;
}

.about-intro > p {
  max-width: 530px;
  margin-top: 14px;
  color: #61757c;
  font-size: 0.91rem;
  line-height: 1.55;
}

.about-actions {
  display: flex;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-primary-link,
.about-secondary-link {
  display: inline-flex;
  min-height: 40px;
  padding: 0 19px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  align-items: center;
  justify-content: center;
}

.about-primary-link {
  color: #fff;
  background: #071e27;
}

.about-secondary-link {
  color: #18343c;
  background: #f1f5f5;
}

/* Premium contact area */
.contact-section {
  padding: 104px 28px 112px;
  color: #071d25;
  background: #fff;
}

.contact-inner {
  display: block;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(54px, 7vw, 104px);
}

.contact-intro h3 {
  max-width: 420px;
  margin: 20px 0 0;
  color: #0a2028;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 2.6vw, 2.75rem);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-intro > p {
  max-width: 410px;
  margin: 18px 0 0;
  color: #677b81;
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-direct {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid #e1e8e9;
  gap: 0;
}

.contact-direct a {
  display: grid;
  min-height: 76px;
  padding: 14px 2px;
  border-bottom: 1px solid #e1e8e9;
  color: #102a33;
  grid-template-columns: 26px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 13px;
  transition: color 180ms ease;
}

.contact-direct a:hover {
  color: #078aa1;
}

.contact-direct .contact-direct-icon {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  font-size: 1.08rem;
}

.contact-direct .contact-direct-arrow {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: #819196;
  font-size: 0.9rem;
}

.contact-direct span {
  display: grid;
  min-width: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  gap: 3px;
}

.contact-direct small {
  color: #839298;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  padding: 4px 0 4px clamp(42px, 5vw, 76px);
  border-left: 1px solid #dce5e6;
  border-radius: 0;
  background: transparent;
  gap: 28px;
}

.contact-form-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
}

.contact-form-row {
  display: grid;
  gap: 4px;
}

.contact-form-row label {
  color: #62767c;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-row input,
.contact-form-row select,
.contact-form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cfdadb;
  border-radius: 0;
  outline: 0;
  color: #0a2028;
  background: transparent;
  font: 400 0.88rem var(--font-body);
  transition: border-color 180ms ease;
}

.contact-form-row input,
.contact-form-row select {
  height: 56px;
  padding: 0 2px;
}

.contact-form-row textarea {
  min-height: 126px;
  padding: 14px 2px;
  resize: vertical;
}

.contact-form-row input::placeholder,
.contact-form-row textarea::placeholder {
  color: #9aa8ac;
}

.contact-form-row input:focus,
.contact-form-row select:focus,
.contact-form-row textarea:focus {
  border-color: var(--color-accent);
  box-shadow: none;
}

.contact-form-footer {
  display: flex;
  margin-top: 4px;
  padding-top: 4px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-form-footer small {
  max-width: 310px;
  color: #7b8d92;
  font-size: 0.62rem;
  line-height: 1.5;
}

.contact-submit {
  min-height: 48px;
  margin: 0;
  padding: 0 22px;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: #102027;
  background: var(--color-accent);
  font: 600 0.72rem var(--font-body);
  white-space: nowrap;
}

.contact-submit:hover {
  border-color: #071d25;
  color: #fff;
  background: #071d25;
}

@media (max-width: 900px) {
  .contact-section {
    padding: 82px 24px 90px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .contact-intro h3,
  .contact-intro > p {
    max-width: 620px;
  }

  .contact-form {
    padding: 48px 0 0;
    border-top: 1px solid #dce5e6;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .contact-section {
    padding-right: 18px;
    padding-left: 18px;
  }

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

  .contact-form-split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}

/* Modern utility footer */
.site-footer {
  padding: 0;
  color: #fff;
  background: #041b23;
}

.footer-shell {
  width: 100%;
  margin: 0 auto;
}

.footer-cta {
  display: grid;
  padding: 62px max(28px, calc((100% - 1440px) / 2));
  border-bottom: 0;
  color: #0b2026;
  background: var(--color-accent);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
}

.footer-kicker {
  display: block;
  margin-bottom: 14px;
  color: #23363b;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #071d25;
  font-family: var(--font-title);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.footer-cta h2 strong {
  display: block;
  font-weight: 750;
}

.footer-cta-copy p {
  max-width: 630px;
  margin: 18px 0 0;
  color: #34484d;
  font-size: 0.8rem;
  line-height: 1.65;
}

.footer-cta-actions {
  display: flex;
  padding-bottom: 6px;
  align-items: center;
  gap: 10px;
}

.footer-action {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(7, 29, 37, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.footer-action--primary {
  border-color: #071d25;
  color: #fff;
  background: #071d25;
}

.footer-action--primary:hover {
  border-color: #fff;
  color: #071d25;
  background: #fff;
}

.footer-action--secondary {
  color: #071d25;
  background: transparent;
}

.footer-action--secondary:hover {
  border-color: #071d25;
  color: #fff;
  background: #071d25;
}

.footer-main {
  display: grid;
  width: min(calc(100% - 56px), 1440px);
  margin: 0 auto;
  padding: 68px 0 72px;
  grid-template-columns: minmax(270px, 1.45fr) minmax(120px, 0.55fr) minmax(240px, 1fr) minmax(200px, 0.8fr);
  align-items: start;
  gap: clamp(38px, 5vw, 76px);
}

.footer-brand img {
  display: block;
  width: 168px;
}

.footer-brand p {
  max-width: 390px;
  margin: 23px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  line-height: 1.75;
}

.footer-status {
  display: inline-flex;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  align-items: center;
  gap: 9px;
}

.footer-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #dff45f;
  box-shadow: 0 0 0 4px rgba(223, 244, 95, 0.1);
}

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

.footer-column > span {
  margin-bottom: 22px;
  color: var(--color-accent);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav {
  gap: 0;
}

.footer-nav a {
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-contact {
  gap: 0;
}

.footer-contact > a {
  display: flex;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  line-height: 1.6;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact > a:hover {
  color: #fff;
}

.footer-contact > a > i {
  margin-top: 2px;
  color: var(--color-accent);
  font-size: 0.92rem;
}

.footer-follow p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.71rem;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  margin-top: 22px;
  gap: 8px;
}

.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.78);
  place-items: center;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.footer-social a:hover {
  border-color: var(--color-accent);
  color: #061c24;
  background: var(--color-accent);
}

.footer-bottom {
  display: flex;
  width: min(calc(100% - 56px), 1440px);
  margin: 0 auto;
  padding: 24px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-bottom a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.72);
  align-items: center;
  gap: 8px;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .footer-cta {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-cta h2 {
    font-size: 3.1rem;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 64px;
  }
}

@media (max-width: 680px) {
  .footer-cta {
    padding: 48px 20px 52px;
  }

  .footer-cta h2 {
    font-size: 2.35rem;
  }

  .footer-cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .footer-action {
    width: 100%;
  }

  .footer-main {
    width: min(calc(100% - 40px), 1440px);
    padding: 54px 0 58px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    width: min(calc(100% - 40px), 1440px);
    padding: 22px 0 26px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-meta {
    width: 100%;
    justify-content: space-between;
    gap: 18px;
  }
}

/* iPoolGo inner pages */
.front-inner-page .site-header {
  color: #071d25;
  background: #fff;
  border-bottom: 1px solid rgba(7, 29, 37, 0.08);
}

.ip-page {
  color: #071d25;
  background: #fff;
}

.ip-page-shell {
  width: min(100% - 56px, 1440px);
  margin: 0 auto;
}

.ip-page .about-badge {
  display: inline-flex;
  min-height: 26px;
  padding: 0 13px;
  border-radius: 999px;
  color: #071d25;
  background: #dff45f;
  font-family: Sora, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  align-items: center;
}

.ip-section-number {
  display: inline-block;
  margin-bottom: 22px;
  color: #00879a;
  font-family: Sora, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.ip-contact-hero,
.ip-about-hero {
  padding: 190px 0 72px;
}

.ip-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
}

.ip-contact-copy {
  max-width: 760px;
}

.ip-contact-copy h1,
.ip-about-head h1,
.ip-about-story-copy h2,
.ip-about-flow-head h2,
.ip-about-cta h2 {
  margin: 24px 0 0;
  font-family: Sora, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.ip-contact-copy h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 6vw, 6.8rem);
}

.ip-contact-copy p,
.ip-about-head p,
.ip-about-rich,
.ip-about-cta p {
  color: #62757d;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.8;
}

.ip-contact-copy p {
  max-width: 620px;
  margin: 28px 0 0;
}

.ip-contact-quick {
  display: grid;
  gap: 12px;
}

.ip-contact-quick a,
.ip-contact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  color: #071d25;
  text-decoration: none;
  align-items: center;
}

.ip-contact-quick i,
.ip-contact-list i {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #071d25;
  background: #f3f7f7;
  place-items: center;
}

.ip-contact-quick span,
.ip-contact-list span {
  display: grid;
  gap: 3px;
  font-size: .92rem;
  font-weight: 600;
}

.ip-contact-quick small,
.ip-contact-list small {
  color: #7b8b91;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ip-contact-main {
  padding: 56px 0 104px;
}

.ip-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 140px);
  align-items: start;
}

.ip-contact-info h2,
.ip-form-title h2 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2rem, 3.5vw, 4.1rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.ip-contact-info p {
  margin: 22px 0 0;
  color: #62757d;
  font-size: 1rem;
  line-height: 1.8;
}

.ip-contact-list {
  display: grid;
  gap: 24px;
  margin: 42px 0 0;
  padding: 38px 0 0;
  border-top: 1px solid #e3ebeb;
  list-style: none;
}

.ip-contact-form-panel {
  padding-top: 6px;
}

.ip-form-alert {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e3ebeb;
  font-weight: 600;
}

.ip-form-alert--success i { color: #00879a; }
.ip-form-alert--error i { color: #c23b30; }

.ip-form-title {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
  align-items: end;
}

.ip-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.ip-form-grid label,
.ip-contact-consent {
  display: grid;
  gap: 10px;
}

.ip-form-grid label.wide {
  grid-column: 1 / -1;
}

.ip-form-grid label > span {
  color: #071d25;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.ip-form-grid input,
.ip-form-grid select,
.ip-form-grid textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ccd8d9;
  border-radius: 0;
  padding: 15px 0;
  color: #071d25;
  background: transparent;
  font: inherit;
  outline: 0;
}

.ip-form-grid textarea {
  min-height: 150px;
  resize: vertical;
}

.ip-form-grid input:focus,
.ip-form-grid select:focus,
.ip-form-grid textarea:focus {
  border-color: #071d25;
}

.ip-form-grid small,
.ip-field-error {
  color: #c23b30;
  font-size: .74rem;
}

.ip-contact-consent {
  grid-template-columns: 18px 1fr;
  margin-top: 22px;
  color: #6c7f85;
  font-size: .84rem;
  line-height: 1.6;
  align-items: start;
}

.ip-contact-consent input {
  margin-top: 4px;
}

.ip-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  align-items: center;
}

.ip-form-actions a,
.ip-form-actions button,
.ip-about-actions a,
.ip-about-cta a {
  display: inline-flex;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: #071d25;
  background: #f2f6f6;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  align-items: center;
  gap: 9px;
}

.ip-form-actions button,
.ip-about-actions a:first-child,
.ip-about-cta a {
  color: #fff;
  background: #071d25;
}

.ip-contact-map {
  padding: 16px 0 112px;
}

.ip-contact-map .ip-page-shell {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: stretch;
}

.ip-map-copy h2 {
  margin: 22px 0 0;
  font-family: Sora, sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
}

.ip-map-copy p {
  margin: 18px 0 0;
  color: #62757d;
  line-height: 1.75;
}

.ip-map-frame {
  overflow: hidden;
  min-height: 360px;
  border-radius: 8px;
}

.ip-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.ip-about-head {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.ip-about-head h1 {
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.ip-about-head p {
  max-width: 680px;
  margin: 26px auto 0;
}

.ip-about-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.ip-about-stage {
  position: relative;
  display: grid;
  min-height: 460px;
  margin-top: 72px;
  place-items: center;
}

.ip-about-main-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(100%, 460px);
  margin: 0;
  border: 1px solid #dbe5e6;
  border-radius: 8px;
  background: #fff;
}

.ip-about-main-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / .95;
  object-fit: cover;
}

.ip-about-main-card figcaption {
  padding: 22px 24px 24px;
}

.ip-about-main-card figcaption span {
  display: block;
  color: #00879a;
  font-family: Sora, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ip-about-main-card figcaption strong {
  display: block;
  margin-top: 8px;
  font-family: Sora, sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
}

.ip-about-card {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  width: min(26vw, 320px);
  min-width: 220px;
  border: 1px solid #dfe8e8;
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
}

.ip-about-card--left {
  left: 11%;
  bottom: 54px;
}

.ip-about-card--right {
  right: 8%;
  bottom: 54px;
}

.ip-about-card img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: contain;
  background: #f6f9f9;
}

.ip-about-card strong,
.ip-about-card span {
  display: block;
  padding: 0 18px;
}

.ip-about-card strong {
  margin-top: 14px;
  font-family: Sora, sans-serif;
}

.ip-about-card span {
  padding-bottom: 18px;
  color: #6a7d83;
  font-size: .82rem;
}

.ip-about-story {
  padding: 76px 0 96px;
}

.ip-about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
}

.ip-about-story-copy h2 {
  margin-top: 0;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
}

.ip-about-rich {
  margin-top: 28px;
}

.ip-about-rich p {
  margin: 0 0 18px;
}

.ip-about-photo {
  margin: 0;
}

.ip-about-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
}

.ip-about-flow {
  padding: 34px 0 104px;
}

.ip-about-flow-head {
  max-width: 680px;
  margin: 0 auto 46px;
  text-align: center;
}

.ip-about-flow-head h2 {
  font-size: clamp(2.2rem, 4vw, 4.8rem);
}

.ip-about-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #dfe8e8;
  border-bottom: 1px solid #dfe8e8;
}

.ip-about-flow-grid article {
  min-height: 260px;
  padding: 34px 34px 38px;
  border-right: 1px solid #dfe8e8;
}

.ip-about-flow-grid article:last-child {
  border-right: 0;
}

.ip-about-flow-grid article > span {
  color: #8ba0a5;
  font-family: Sora, sans-serif;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.ip-about-flow-grid i {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 46px 0 22px;
  border-radius: 50%;
  color: #071d25;
  background: #dff45f;
  place-items: center;
}

.ip-about-flow-grid h3 {
  margin: 0;
  font-family: Sora, sans-serif;
  font-size: 1.16rem;
}

.ip-about-flow-grid p {
  margin: 12px 0 0;
  color: #62757d;
  line-height: 1.7;
}

.ip-about-cta {
  padding: 32px 0 118px;
  text-align: center;
}

.ip-about-cta .ip-page-shell {
  max-width: 860px;
}

.ip-about-cta h2 {
  font-size: clamp(2.6rem, 5vw, 5.7rem);
}

.ip-about-cta p {
  max-width: 620px;
  margin: 24px auto 0;
}

.ip-about-cta a {
  margin-top: 32px;
}

@media (max-width: 991.98px) {
  .ip-contact-hero,
  .ip-about-hero {
    padding-top: 150px;
  }

  .ip-contact-hero-grid,
  .ip-contact-layout,
  .ip-contact-map .ip-page-shell,
  .ip-about-story-grid {
    grid-template-columns: 1fr;
  }

  .ip-contact-quick {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ip-about-card {
    position: static;
    width: min(100%, 320px);
  }

  .ip-about-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ip-about-main-card {
    order: -1;
  }

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

  .ip-about-flow-grid article {
    border-right: 0;
    border-bottom: 1px solid #dfe8e8;
  }

  .ip-about-flow-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .ip-page-shell {
    width: min(100% - 32px, 1440px);
  }

  .ip-contact-copy h1,
  .ip-about-head h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .ip-contact-quick,
  .ip-form-grid {
    grid-template-columns: 1fr;
  }

  .ip-form-title {
    display: block;
  }

  .ip-form-title h2,
  .ip-contact-info h2 {
    font-size: 2.15rem;
  }

  .ip-about-actions,
  .ip-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ip-about-actions a,
  .ip-form-actions a,
  .ip-form-actions button,
  .ip-about-cta a {
    justify-content: center;
  }
}
n/* Inner page refinement */
body.front-inner-page .site-header {
  color: #071d25;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(7, 29, 37, .08);
  box-shadow: none;
}

body.front-inner-page .site-header .nav-link,
body.front-inner-page .site-header .navbar-toggler,
body.front-inner-page .site-header .menu-trigger {
  color: #071d25;
}

body.front-inner-page .site-header .nav-link.active::after {
  background: #dff45f;
}

body.front-inner-page .site-header .menu-trigger,
body.front-inner-page .site-header .navbar-toggler {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.ip-contact-page--clean,
.ip-about-page--clean {
  overflow: hidden;
}

.ip-contact-page--clean .ip-clean-hero,
.ip-about-page--clean .ip-clean-hero {
  padding: 170px 0 68px;
  text-align: center;
}

.ip-clean-hero .ip-page-shell {
  max-width: 920px;
}

.ip-clean-hero h1 {
  margin: 24px auto 0;
  color: #071d25;
  font-family: Sora, sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

.ip-clean-hero p {
  max-width: 640px;
  margin: 24px auto 0;
  color: #62757d;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.75;
}

.ip-clean-contact {
  padding: 34px 0 98px;
}

.ip-clean-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 118px);
  align-items: start;
}

.ip-clean-contact-info h2,
.ip-clean-form h2,
.ip-clean-map-head h2,
.ip-clean-about-story h2,
.ip-clean-about-points h2,
.ip-clean-about-cta h2 {
  margin: 0;
  color: #071d25;
  font-family: Sora, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.ip-clean-contact-info h2,
.ip-clean-form h2 {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
}

.ip-clean-contact-info p {
  margin: 22px 0 0;
  color: #62757d;
  font-size: 1rem;
  line-height: 1.75;
}

.ip-clean-channels {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid #e1e9e9;
}

.ip-clean-channels a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 15px;
  color: #071d25;
  text-decoration: none;
  align-items: center;
}

.ip-clean-channels i {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #071d25;
  background: #f2f6f6;
  place-items: center;
}

.ip-clean-channels span {
  display: grid;
  gap: 3px;
  font-size: .92rem;
  font-weight: 700;
}

.ip-clean-channels small {
  color: #819196;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ip-clean-form-wrap {
  padding-top: 2px;
}

.ip-clean-form h2 {
  margin-bottom: 32px;
}

.ip-clean-map {
  padding: 0 0 112px;
}

.ip-clean-map .ip-page-shell {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
}

.ip-clean-map-head h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.ip-clean-about-showcase {
  padding: 0 0 76px;
}

.ip-clean-about-wide {
  overflow: hidden;
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 8px;
}

.ip-clean-about-wide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.ip-clean-about-story,
.ip-clean-about-split {
  padding: 38px 0 88px;
}

.ip-clean-about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.ip-clean-about-story h2,
.ip-clean-about-points h2,
.ip-clean-about-cta h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.6rem);
}

.ip-about-rich {
  margin: 0;
}

.ip-about-rich p {
  margin: 0 0 18px;
  color: #62757d;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.85;
}

.ip-clean-about-split figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
}

.ip-clean-about-split figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.ip-clean-about-points ul {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.ip-clean-about-points li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  color: #071d25;
  font-size: 1rem;
  font-weight: 700;
  align-items: start;
}

.ip-clean-about-points li span {
  color: #00879a;
  font-family: Sora, sans-serif;
  font-size: .75rem;
  font-weight: 800;
}

.ip-clean-about-cta {
  padding: 18px 0 116px;
  text-align: center;
}

.ip-clean-about-cta .ip-page-shell {
  max-width: 780px;
}

.ip-clean-about-cta a {
  display: inline-flex;
  min-height: 48px;
  margin-top: 28px;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: #071d25;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  align-items: center;
  gap: 9px;
}

@media (max-width: 991.98px) {
  .ip-clean-contact-grid,
  .ip-clean-map .ip-page-shell,
  .ip-clean-about-grid {
    grid-template-columns: 1fr;
  }

  .ip-clean-map {
    padding-bottom: 84px;
  }
}

@media (max-width: 767.98px) {
  .ip-contact-page--clean .ip-clean-hero,
  .ip-about-page--clean .ip-clean-hero {
    padding: 136px 0 46px;
  }

  .ip-clean-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .ip-clean-contact,
  .ip-clean-about-story,
  .ip-clean-about-split {
    padding-bottom: 70px;
  }
}
