:root {
  --navy: #10275A;
  --navy-950: #081A3C;
  --ocean: #0E4D92;
  --cyan: #3BC6D3;
  --cyan-dark: #1593A5;
  --off-white: #FAF1EA;
  --coral: #FF7A59;
  --white: #FFFFFF;
  --ink: #0A1D35;
  --muted: #5F6C7B;
  --line: rgba(16, 39, 90, 0.14);
  --shadow: 0 18px 42px rgba(8, 26, 60, 0.18);
  --radius: 8px;
  --container: 1180px;
  --header-height: 74px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", "Prompt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
  padding-bottom: 76px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--ocean);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--cyan-dark);
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

h1,
h2,
h3,
.eyebrow,
.button,
.desktop-nav,
.mobile-menu,
.tab-list {
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.15rem;
}

h4 {
  margin: 1rem 0 0.25rem;
  color: var(--navy);
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-size: 0.9rem;
  line-height: 1.2;
  text-transform: uppercase;
}

p {
  margin: 0;
}

p + p,
p + .section-actions {
  margin-top: 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

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

.narrow {
  width: min(100% - 32px, 820px);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--cyan);
  color: var(--navy);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(8, 26, 60, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
}

.brand img {
  width: 100%;
  aspect-ratio: 1200 / 316;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}

.desktop-nav a,
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a[aria-current="page"],
.desktop-nav a:hover,
.mobile-menu a[aria-current="page"],
.mobile-menu a:hover {
  color: var(--cyan);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
}

.header-phone .icon {
  color: var(--cyan);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(59, 198, 211, 0.45);
  border-radius: var(--radius);
  background: rgba(59, 198, 211, 0.12);
  color: var(--white);
  cursor: pointer;
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.language-toggle:hover,
.language-toggle[hreflang="en"] {
  background: var(--cyan);
  color: var(--navy);
}

.menu-toggle {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle .icon {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  padding: 0 16px 16px;
  background: var(--navy-950);
}

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

.mobile-menu a {
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__group {
  display: grid;
  gap: 0.1rem;
}

.mobile-menu__group p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0.78rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  opacity: 0;
  transition: transform 420ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:hover::after {
  opacity: 1;
  transform: translateX(360%) skewX(-18deg);
}

.button span,
.button .icon {
  position: relative;
  z-index: 1;
}

.button--primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(59, 198, 211, 0.28);
}

.button--primary:hover {
  background: #58D8E1;
  color: var(--navy);
}

.button--secondary {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.48);
}

.button--secondary:hover {
  color: var(--navy);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

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

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}

.home-hero {
  min-height: calc(100svh - var(--header-height) - 128px);
}

.page-hero {
  min-height: 430px;
}

.home-hero__image,
.page-hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.home-hero__image img,
.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__shade,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 26, 60, 0.96) 0%, rgba(8, 26, 60, 0.7) 44%, rgba(8, 26, 60, 0.18) 100%),
    linear-gradient(180deg, rgba(8, 26, 60, 0.08) 0%, rgba(8, 26, 60, 0.82) 100%);
}

.ocean-ambient {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.ocean-ray {
  position: absolute;
  top: -18%;
  width: 16rem;
  height: 135%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(59, 198, 211, 0.04) 58%, transparent);
  filter: blur(5px);
  opacity: 0.2;
  transform: rotate(15deg);
  animation: oceanRay 9s ease-in-out infinite alternate;
}

.ocean-ray--1 {
  left: 42%;
}

.ocean-ray--2 {
  left: 67%;
  width: 11rem;
  opacity: 0.14;
  animation-duration: 12s;
  animation-delay: -4s;
}

.ocean-bubble {
  --bubble-x: 0;
  position: absolute;
  bottom: -8%;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(250, 241, 234, 0.65);
  border-radius: 50%;
  box-shadow: inset -3px -3px 0 rgba(59, 198, 211, 0.12);
  opacity: 0;
  animation: bubbleRise 13s linear infinite;
}

.ocean-bubble--1 {
  left: 8%;
  animation-delay: -1s;
}

.ocean-bubble--2 {
  --bubble-x: 24px;
  left: 27%;
  width: 9px;
  height: 9px;
  animation-duration: 10s;
  animation-delay: -6s;
}

.ocean-bubble--3 {
  --bubble-x: -18px;
  left: 52%;
  width: 18px;
  height: 18px;
  animation-delay: -9s;
}

.ocean-bubble--4 {
  --bubble-x: 30px;
  left: 74%;
  width: 11px;
  height: 11px;
  animation-duration: 15s;
  animation-delay: -3s;
}

.ocean-bubble--5 {
  --bubble-x: -28px;
  left: 91%;
  width: 7px;
  height: 7px;
  animation-duration: 11s;
  animation-delay: -8s;
}

.ocean-fish {
  position: absolute;
  right: -5rem;
  width: 42px;
  height: 16px;
  opacity: 0.22;
  animation: fishDrift 22s linear infinite;
}

.ocean-fish::before,
.ocean-fish::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 241, 234, 0.82);
}

.ocean-fish::before {
  left: 0;
  width: 30px;
  height: 12px;
  border-radius: 50%;
}

.ocean-fish::after {
  right: 0;
  width: 13px;
  height: 13px;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.ocean-fish--1 {
  top: 24%;
  animation-delay: -7s;
}

.ocean-fish--2 {
  top: 63%;
  width: 32px;
  height: 13px;
  opacity: 0.16;
  animation-duration: 28s;
  animation-delay: -16s;
}

.home-hero__content,
.page-hero__content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 0 3.25rem;
  color: var(--white);
}

.home-hero__content {
  max-width: var(--container);
}

.page-hero__content {
  max-width: 940px;
  padding-block: 2.6rem 2.8rem;
}

.hero-logo {
  width: min(70vw, 360px);
  aspect-ratio: 1200 / 316;
  object-fit: contain;
  margin-bottom: 1.4rem;
}

.eyebrow {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.home-hero h1,
.page-hero h1 {
  color: var(--white);
}

.page-hero h1 {
  max-width: min(100%, 920px);
  font-size: clamp(2.15rem, 6.4vw, 3.15rem);
  line-height: 1;
}

.home-hero__headline {
  display: grid;
  gap: 1rem;
  width: 100%;
  align-items: center;
}

.home-hero__headline h1 {
  max-width: 760px;
}

.home-hero p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.home-hero .hero-proof,
.page-hero .hero-proof {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(59, 198, 211, 0.38);
  border-radius: var(--radius);
  background: rgba(8, 26, 60, 0.42);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-actions--headline {
  margin-top: 0;
}

.trust-strip {
  position: relative;
  overflow: hidden;
  background: var(--navy-950);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(59, 198, 211, 0.22), transparent 18%),
    radial-gradient(circle at 58% 30%, rgba(255, 255, 255, 0.12), transparent 16%),
    linear-gradient(90deg, transparent, rgba(59, 198, 211, 0.16), transparent);
  opacity: 0.5;
  transform: translateX(-28%);
  animation: currentSweep 18s linear infinite;
}

.trust-strip__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-strip .icon {
  color: var(--cyan);
}

.reef-swimmer-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.reef-swimmer {
  --reef-color: var(--cyan);
  --reef-accent: var(--coral);
  --swim-top: 50%;
  --swim-duration: 36s;
  --swim-delay: 0s;
  --swim-scale: 0.7;
  --swim-y: 0px;
  --swim-opacity: 0.16;
  position: absolute;
  top: var(--swim-top);
  right: 100%;
  width: 54px;
  height: 54px;
  opacity: 0;
  filter: drop-shadow(0 8px 14px rgba(8, 26, 60, 0.35));
  animation: reefCreatureSwim var(--swim-duration) linear infinite;
  animation-delay: var(--swim-delay);
}

.reef-swimmer .reef-life__icon {
  width: 100%;
  height: 100%;
}

.reef-swimmer--whale-shark,
.reef-swimmer--manta-ray {
  width: 78px;
  height: 78px;
}

.reef-swimmer--green-sea-turtle,
.reef-swimmer--hawksbill-turtle,
.reef-swimmer--leopard-shark {
  width: 66px;
  height: 66px;
}

.reef-swimmer--nudibranch,
.reef-swimmer--harlequin-shrimp,
.reef-swimmer--clownfish {
  width: 46px;
  height: 46px;
}

.creature-spotting {
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.creature-spotting__inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 0;
}

.creature-spotting .icon {
  flex: 0 0 auto;
  color: var(--cyan);
}

.creature-spotting p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.creature-spotting strong {
  color: var(--white);
}

.reef-life__icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--reef-color);
  filter: drop-shadow(0 6px 10px rgba(8, 26, 60, 0.22));
}

.reef-life__icon .reef-body,
.reef-life__icon .reef-tail,
.reef-life__icon .reef-shell {
  fill: var(--reef-color);
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 0.35;
}

.reef-life__icon .reef-accent,
.reef-life__icon .reef-tip {
  fill: var(--reef-accent);
  stroke: rgba(255, 255, 255, 0.36);
  stroke-width: 0.32;
}

.reef-life__icon .reef-stripe,
.reef-life__icon .reef-spine {
  fill: none;
  stroke: var(--reef-accent);
  stroke-width: 1.35;
  stroke-linecap: round;
}

.reef-life__icon .reef-dot {
  fill: var(--reef-accent);
  opacity: 0;
}

.reef-life__icon .reef-eye {
  fill: var(--white);
  stroke: var(--navy);
  stroke-width: 0.35;
}

.reef-life__icon .reef-pupil {
  fill: var(--navy);
}

.reef-life__icon .reef-smile {
  fill: none;
  stroke: var(--navy);
  stroke-width: 0.55;
  stroke-linecap: round;
}

.reef-life__icon .reef-dorsal,
.reef-life__icon .reef-fin {
  transform-origin: center;
}

.reef-life__icon .reef-spine {
  opacity: 0;
}

.reef-life__icon .reef-eel-body {
  fill: none;
  stroke: var(--reef-color);
  stroke-width: 4.1;
  stroke-linecap: round;
}

.reef-life__icon--whale-shark .reef-dot,
.reef-life__icon--leopard-shark .reef-dot,
.reef-life__icon--blue-spotted-stingray .reef-dot,
.reef-life__icon--nudibranch .reef-dot {
  opacity: 0.92;
}

.reef-life__icon--clownfish .reef-stripe,
.reef-life__icon--butterflyfish .reef-stripe {
  stroke-width: 1.65;
}

.reef-life__icon--lionfish .reef-spine {
  opacity: 0.95;
}

.reef-life__icon--barracuda .reef-body {
  transform: scaleX(1.08);
  transform-origin: center;
}

.reef-life__icon--manta-ray {
  transform: scale(1.08);
}

.section {
  padding: 4.25rem 0;
}

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

.section--life {
  position: relative;
  overflow: hidden;
}

.section--life::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(59, 198, 211, 0.12), transparent 16%),
    radial-gradient(circle at 88% 76%, rgba(14, 77, 146, 0.08), transparent 18%),
    linear-gradient(115deg, transparent 0 44%, rgba(59, 198, 211, 0.08) 48%, transparent 54%);
  opacity: 0.72;
  transform: translateX(-4%);
  animation: reefCurrent 18s ease-in-out infinite alternate;
}

.section--life::after {
  content: "";
  position: absolute;
  top: 16%;
  right: -4rem;
  width: 52px;
  height: 18px;
  opacity: 0.14;
  background:
    radial-gradient(ellipse at 34% 50%, var(--navy) 0 50%, transparent 51%),
    linear-gradient(135deg, transparent 0 50%, var(--navy) 51% 78%, transparent 79%);
  clip-path: polygon(0 50%, 16% 18%, 72% 18%, 100% 0, 86% 50%, 100% 100%, 72% 82%, 16% 82%);
  animation: reefLifeDrift 26s linear infinite;
}

.section--life--left::after {
  top: 72%;
  animation-delay: -13s;
}

.section--life--right::before {
  transform: translateX(4%);
  animation-delay: -8s;
}

.section--life > .container {
  position: relative;
  z-index: 1;
}

.section--deep {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 77, 146, 0.9), rgba(8, 26, 60, 1)),
    var(--navy);
  color: var(--white);
}

.section--deep::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at 18% 28%, rgba(59, 198, 211, 0.18), transparent 15%),
    radial-gradient(circle at 78% 66%, rgba(250, 241, 234, 0.12), transparent 17%),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 255, 255, 0.05) 44px 47px, transparent 50px 96px);
  opacity: 0.45;
  transform: rotate(1deg);
  animation: causticDrift 20s ease-in-out infinite alternate;
}

.section--deep > .container {
  position: relative;
  z-index: 1;
}

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

.section--deep p,
.section--deep li {
  color: rgba(255, 255, 255, 0.86);
}

.section__head {
  position: relative;
  max-width: 820px;
  margin-bottom: 1.6rem;
}

.section__head::after {
  content: "";
  display: block;
  width: min(220px, 62vw);
  height: 3px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), rgba(59, 198, 211, 0.08), var(--coral));
  background-size: 220% 100%;
  animation: currentLine 7s ease-in-out infinite;
}

.section__head p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 0.8rem;
}

.section--deep .section__head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards--compact {
  grid-template-columns: 1fr;
}

.card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(8, 26, 60, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card--link {
  text-decoration: none;
}

.card--link:hover {
  transform: translateY(-3px);
  color: var(--ink);
  border-color: rgba(59, 198, 211, 0.7);
  box-shadow: var(--shadow);
}

.card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(59, 198, 211, 0.12);
  color: var(--ocean);
}

.card h3 {
  color: var(--navy);
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.path-selector,
.pillar-panels,
.product-grid,
.schedule-grid,
.site-grid,
.community-grid,
.resource-grid,
.proof-grid,
.fact-grid,
.price-cards {
  display: grid;
  gap: 1rem;
}

.path-card,
.pillar-panel,
.product-card,
.schedule-card,
.site-card,
.community-card,
.resource-card,
.proof-card,
.price-card,
.conversion-panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(8, 26, 60, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.path-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.75rem;
  align-items: start;
  min-height: 100%;
  padding: 1rem;
  text-decoration: none;
}

.path-card:hover,
.product-card:hover,
.schedule-card:hover,
.site-card:hover,
.community-card:hover,
.resource-card:hover,
.proof-card:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 198, 211, 0.52);
  box-shadow: 0 14px 34px rgba(8, 26, 60, 0.12);
}

.path-card .icon,
.proof-card .icon {
  transition: transform 180ms ease;
}

.path-card:hover .icon,
.proof-card:hover .icon {
  transform: translateY(-2px) rotate(-4deg);
}

.path-card .icon {
  width: 28px;
  height: 28px;
  color: var(--cyan-dark);
}

.path-card strong {
  color: var(--navy);
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.path-card span {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.92rem;
}

.pillar-panel {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  text-decoration: none;
  isolation: isolate;
}

.pillar-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 26, 60, 0.08), rgba(8, 26, 60, 0.88));
}

.pillar-panel picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.pillar-panel picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-panel span {
  color: var(--white);
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.pillar-panel p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.product-card {
  overflow: hidden;
}

.product-card picture,
.gallery-grid picture {
  display: block;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--navy);
  transition: transform 420ms ease;
}

.product-card:hover img,
.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.product-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.product-card__body p:not(.eyebrow),
.schedule-card p,
.site-card p,
.community-card p,
.resource-card p,
.proof-card p,
.price-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.product-facts,
.conversion-panel dl,
.fact-grid {
  margin: 0;
}

.product-facts,
.conversion-panel dl {
  display: grid;
  gap: 0.5rem;
}

.product-facts div,
.conversion-panel dl div,
.fact-grid div {
  padding: 0.7rem;
  border-radius: var(--radius);
  background: rgba(59, 198, 211, 0.1);
}

dt {
  color: var(--ocean);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

dd {
  margin: 0.15rem 0 0;
  color: var(--navy);
  font-weight: 800;
}

.card-actions,
.mini-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.card-actions {
  margin-top: 0.2rem;
}

.mini-actions a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0.42rem 0.56rem;
  background: rgba(59, 198, 211, 0.12);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.schedule-card,
.site-card,
.resource-card,
.proof-card,
.price-card {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 1rem;
}

.community-card {
  overflow: hidden;
}

.community-card picture,
.community-card img {
  display: block;
  width: 100%;
}

.community-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.community-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.community-card h3 {
  font-size: 1rem;
}

.community-card__body p {
  margin: 0;
}

.section--deep .schedule-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.section--deep .schedule-card h3,
.section--deep .schedule-card strong,
.section--deep .schedule-card p {
  color: var(--white);
}

.schedule-card strong,
.price-card strong {
  color: var(--coral);
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.proof-card .icon {
  width: 30px;
  height: 30px;
  color: var(--cyan-dark);
}

.timeline {
  counter-reset: none;
  display: grid;
  gap: 0.7rem;
  list-style: none;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1.75rem;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(59, 198, 211, 0.08), var(--cyan), rgba(255, 122, 89, 0.36), rgba(59, 198, 211, 0.08));
  background-size: 100% 220%;
  opacity: 0.58;
  animation: timelineCurrent 7s ease-in-out infinite;
}

.timeline li {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.timeline span {
  position: relative;
  overflow: hidden;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cyan);
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-weight: 800;
  box-shadow: 0 0 0 5px rgba(59, 198, 211, 0.14);
}

.timeline span::after {
  content: "";
  position: absolute;
  inset: -45%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.42), transparent 62%);
  transform: translateX(-90%) rotate(12deg);
  animation: markerGlint 5.5s ease-in-out infinite;
}

.timeline p {
  color: var(--muted);
}

.detail-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.conversion-panel {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
}

.conversion-panel h2 {
  font-size: 1.65rem;
}

.conversion-panel p:not(.eyebrow) {
  color: var(--muted);
}

.mobile-page-action {
  position: sticky;
  top: var(--header-height);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.7rem 16px;
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(8, 26, 60, 0.18);
}

.mobile-page-action span {
  min-width: 0;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-page-action a {
  flex: 0 0 auto;
  border-radius: var(--radius);
  padding: 0.45rem 0.7rem;
  background: var(--cyan);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  margin-top: auto;
  color: var(--cyan-dark);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.split-grid,
.contact-grid,
.media-panel__grid,
.footer__grid {
  display: grid;
  gap: 1.25rem;
}

.split-grid > *,
.contact-grid > *,
.media-panel__grid > *,
.footer__grid > *,
.tabs,
.tab-panel,
.table-wrap,
.tab-list {
  min-width: 0;
}

.callout,
.glass-panel,
.contact-panel,
.inquiry-form {
  border-radius: var(--radius);
  padding: 1.25rem;
}

.callout {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.callout h3,
.callout p,
.callout li,
.callout h4 {
  color: var(--white);
}

.callout--coral {
  background: var(--coral);
  color: var(--navy);
}

.callout--coral h3,
.callout--coral p {
  color: var(--navy);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.glass-panel--light {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(8, 26, 60, 0.08);
}

.glass-panel--light h3,
.glass-panel--light p,
.glass-panel--light li {
  color: var(--ink);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(59, 198, 211, 0.16);
}

.pathway {
  counter-reset: path;
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.pathway li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 58px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 700;
}

.pathway span {
  color: var(--cyan-dark);
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-weight: 800;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.pill-list li {
  border: 1px solid rgba(59, 198, 211, 0.42);
  border-radius: var(--radius);
  padding: 0.42rem 0.68rem;
  background: rgba(59, 198, 211, 0.1);
  color: inherit;
  font-size: 0.85rem;
  font-weight: 700;
}

.media-panel {
  background: var(--white);
}

.media-panel__image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.media-panel__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

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

.media-panel__content {
  align-self: center;
}

.media-panel__content p {
  margin-top: 1rem;
  color: var(--muted);
}

.stat-grid {
  display: grid;
  gap: 1rem;
}

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

.stat-card strong {
  display: block;
  color: var(--navy);
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  color: var(--muted);
  margin-top: 0.5rem;
}

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

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.final-cta__inner {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 26, 60, 0.06);
}

.price-cards {
  margin-top: 1rem;
}

.pricing-table-wrap {
  display: none;
}

.price-card {
  grid-template-columns: minmax(0, 1fr);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

caption {
  text-align: left;
  padding: 1rem;
  color: var(--muted);
  font-weight: 700;
}

th,
td {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: var(--navy);
  color: var(--white);
  border-top: 0;
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
}

tbody th {
  color: var(--navy);
}

tbody tr:nth-child(even) {
  background: rgba(16, 39, 90, 0.035);
}

.note,
.small {
  color: var(--muted);
  font-size: 0.9rem;
}

.note {
  margin-top: 1rem;
}

.info-band {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(59, 198, 211, 0.14);
  color: var(--navy);
  border: 1px solid rgba(59, 198, 211, 0.35);
  margin-bottom: 1.4rem;
}

.info-band .icon {
  margin-top: 0.25rem;
  color: var(--cyan-dark);
}

.info-band--coral {
  background: rgba(255, 122, 89, 0.14);
  border-color: rgba(255, 122, 89, 0.38);
}

.info-band--coral .icon {
  color: var(--coral);
}

.tabs {
  display: grid;
  gap: 1rem;
  max-width: 100%;
}

.tab-list {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  max-width: 100%;
  padding-bottom: 0.35rem;
}

.tab-list button {
  min-height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  padding: 0.68rem 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.tab-list button.is-active,
.tab-list button:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}

.tab-panel {
  display: none;
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h2 {
  margin-bottom: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--navy);
  font-weight: 800;
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  text-transform: uppercase;
}

details p {
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(8, 26, 60, 0.08);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 0.8rem 1rem;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.contact-panel,
.inquiry-form {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(8, 26, 60, 0.06);
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin-top: 1rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem;
  border-radius: var(--radius);
  background: rgba(59, 198, 211, 0.1);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}

.contact-list .icon {
  color: var(--cyan-dark);
}

.map-placeholder {
  min-height: 190px;
  margin-top: 1rem;
  border-radius: var(--radius);
  border: 1px dashed rgba(16, 39, 90, 0.28);
  background:
    linear-gradient(135deg, rgba(59, 198, 211, 0.14), rgba(255, 122, 89, 0.1)),
    var(--off-white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: var(--navy);
}

.map-placeholder .icon {
  width: 34px;
  height: 34px;
  color: var(--ocean);
  margin-inline: auto;
  margin-bottom: 0.5rem;
}

.inquiry-form {
  display: grid;
  gap: 0.9rem;
}

.inquiry-form h2 {
  margin-bottom: 0;
}

fieldset {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

legend {
  padding-inline: 0.35rem;
  color: var(--navy);
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 39, 90, 0.22);
  border-radius: var(--radius);
  padding: 0.72rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  resize: vertical;
}

.inquiry-form button {
  justify-self: start;
  cursor: pointer;
  font: inherit;
  font-family: "Montserrat", "Kanit", system-ui, sans-serif;
}

.policy h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.policy h2:first-child {
  margin-top: 0;
}

.policy p {
  color: var(--muted);
  margin-top: 0.75rem;
}

.site-footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
}

.site-footer h2 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer__logo {
  width: 220px;
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

html.is-thai body,
body.is-thai {
  font-family: "Prompt", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html.is-thai h1,
html.is-thai h2,
html.is-thai h3,
html.is-thai h4,
html.is-thai .eyebrow,
html.is-thai .button,
html.is-thai .desktop-nav,
html.is-thai .mobile-menu,
html.is-thai .tab-list,
body.is-thai h1,
body.is-thai h2,
body.is-thai h3,
body.is-thai h4,
body.is-thai .eyebrow,
body.is-thai .button,
body.is-thai .desktop-nav,
body.is-thai .mobile-menu,
body.is-thai .tab-list {
  font-family: "Kanit", "Montserrat", system-ui, sans-serif;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-list a:hover {
  color: var(--cyan);
}

.footer__bottom {
  display: grid;
  gap: 0.45rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 950;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 28px rgba(8, 26, 60, 0.12);
}

.mobile-cta a {
  min-height: 68px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.2rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 800;
}

.mobile-cta .icon {
  color: var(--cyan-dark);
  width: 22px;
  height: 22px;
}

@keyframes bubbleRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.72);
  }
  14% {
    opacity: 0.58;
  }
  82% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--bubble-x), -118vh, 0) scale(1.18);
  }
}

@keyframes fishDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  12%,
  34% {
    opacity: 0.1;
  }
  52%,
  100% {
    opacity: 0;
  }
  100% {
    transform: translate3d(-112vw, -18px, 0);
  }
}

@keyframes reefCreatureSwim {
  0% {
    opacity: 0;
    transform: translate3d(-12vw, 0, 0) scale(var(--swim-scale)) rotate(-2deg);
  }
  8% {
    opacity: 0;
  }
  12%,
  18% {
    opacity: var(--swim-opacity);
  }
  26% {
    opacity: 0;
    transform: translate3d(42vw, calc(var(--swim-y) * 0.45), 0) scale(var(--swim-scale)) rotate(2deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(118vw, var(--swim-y), 0) scale(var(--swim-scale)) rotate(-1deg);
  }
}

@keyframes oceanRay {
  from {
    transform: translateX(-18px) rotate(13deg);
  }
  to {
    transform: translateX(22px) rotate(17deg);
  }
}

@keyframes currentSweep {
  from {
    transform: translateX(-35%);
  }
  to {
    transform: translateX(35%);
  }
}

@keyframes causticDrift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(1deg);
  }
  to {
    transform: translate3d(2%, 1%, 0) rotate(-1deg);
  }
}

@keyframes currentLine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes reefCurrent {
  from {
    transform: translate3d(-3%, 0, 0);
  }
  to {
    transform: translate3d(3%, 0, 0);
  }
}

@keyframes reefLifeDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  14%,
  72% {
    opacity: 0.14;
  }
  100% {
    opacity: 0;
    transform: translate3d(-112vw, 18px, 0);
  }
}

@keyframes timelineCurrent {
  0%,
  100% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
}

@keyframes markerGlint {
  0%,
  68%,
  100% {
    transform: translateX(-90%) rotate(12deg);
  }
  82% {
    transform: translateX(90%) rotate(12deg);
  }
}

@media (max-width: 559px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero__content {
    min-height: auto;
    padding: 1.9rem 0 2rem;
  }

  .home-hero h1 {
    font-size: 2.65rem;
  }

  .home-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .home-hero .hero-proof {
    font-size: 0.82rem;
  }

  .hero-actions {
    gap: 0.65rem;
    margin-top: 1.15rem;
  }

  .hero-actions--headline {
    margin-top: 0.2rem;
  }

  .home-hero .button {
    min-height: 44px;
    padding: 0.68rem 0.86rem;
  }

  .ocean-ray--2,
  .ocean-fish--2,
  .ocean-bubble--3,
  .ocean-bubble--5 {
    display: none;
  }

  .reef-swimmer {
    --swim-opacity: 0.11 !important;
    width: 36px;
    height: 36px;
  }

  .reef-swimmer--whale-shark,
  .reef-swimmer--manta-ray {
    width: 48px;
    height: 48px;
  }

  .reef-swimmer--green-sea-turtle,
  .reef-swimmer--hawksbill-turtle,
  .reef-swimmer--leopard-shark {
    width: 42px;
    height: 42px;
  }

  .creature-spotting__inner {
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  .creature-spotting p {
    font-size: 0.82rem;
  }

  .ocean-ray {
    opacity: 0.11;
  }

  .section--life::after {
    display: none;
  }
}

@media (min-width: 560px) {
  .trust-strip__grid,
  .cards--compact,
  .stat-grid,
  .gallery-grid,
  .path-selector,
  .product-grid,
  .schedule-grid,
  .site-grid,
  .community-grid,
  .resource-grid,
  .proof-grid,
  .price-cards,
  .fact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 5rem;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 4.25vw, 3.45rem);
  }

  h2 {
    font-size: 2.8rem;
  }

  .page-hero__content {
    padding-block: 2.9rem;
  }

  .home-hero {
    min-height: calc(100svh - var(--header-height) - 136px);
  }

  .home-hero__content {
    padding-block: clamp(2.4rem, 6vh, 3.35rem);
  }

  .home-hero__headline {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 270px);
    gap: clamp(1rem, 3vw, 2.25rem);
    max-width: min(100%, 1120px);
  }

  .home-hero__headline h1 {
    max-width: none;
  }

  .hero-actions--headline {
    display: grid;
    align-self: center;
    justify-self: end;
    width: min(100%, 270px);
    gap: 0.7rem;
  }

  .hero-actions--headline .button {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding-inline: 0.9rem;
  }

  .trust-strip__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .split-grid,
  .media-panel__grid,
  .final-cta__inner,
  .detail-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-panels {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .pillar-panel {
    min-height: 380px;
  }

  .product-grid--featured,
  .schedule-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-table-wrap {
    display: block;
  }

  .price-cards {
    display: none;
  }

  .media-panel--reverse .media-panel__image {
    order: 2;
  }

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

@media (min-width: 1020px) {
  body {
    padding-bottom: 0;
  }

  h1 {
    font-size: 5.8rem;
  }

  .page-hero h1 {
    font-size: clamp(2.85rem, 3.25vw, 3.65rem);
  }

  .container {
    width: min(100% - 48px, var(--container));
  }

  .brand {
    width: 156px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.72rem;
  }

  .desktop-nav a {
    font-size: 0.68rem;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu,
  .mobile-menu.is-open {
    display: none;
  }

  .header-phone {
    display: none;
  }

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

  .cards--compact {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .path-selector {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .community-grid,
  .site-grid,
  .resource-grid,
  .proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-grid,
  .resource-grid,
  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .conversion-panel {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
  }

  .mobile-page-action {
    display: none;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    grid-template-columns: 1fr 1.35fr;
    align-items: start;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 1180px) {
  .brand {
    width: 198px;
  }

  .header-phone {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ocean-bubble,
  .ocean-fish,
  .reef-swimmer {
    display: none;
  }

  .ocean-ray,
  .trust-strip::before,
  .section--deep::before,
  .section--life::before,
  .timeline::before,
  .timeline span::after {
    animation: none !important;
    opacity: 0.12;
  }

  .section--life::after {
    display: none;
  }
}
