:root {
  --ink: #004f3b;
  --ink-2: #00684a;
  --muted: #004f3b;
  --line: rgba(0, 79, 59, 0.1);
  --paper: #ffffff;
  --soft: #f0fdf4;
  --navy: #00bc7d;
  --navy-2: #009966;
  --teal: #9ae600;
  --teal-2: #d0fae5;
  --gold: #9ae600;
  --gold-2: #e5ffb3;
  --deep-green: #002c22;
  --bg-mint: #f0fdf4;
  --radius: 24px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.9);
  --glass-blur: blur(20px);
  --glass-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg-mint);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(0, 188, 125, 0.04), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(154, 230, 0, 0.04), transparent 25%);
  background-attachment: fixed;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.55rem, 5vw, 5.5rem);
  font-weight: 900;
}

h2 {
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.65rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
  font-weight: 800;
}

p {
  margin: 0;
  color: var(--ink-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

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

.admin-header .nav {
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  font-weight: 900;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  max-width: 150px;
  color: var(--ink);
  line-height: 1.05;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.admin-nav {
  position: static;
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 18px;
  box-shadow: none;
  border: 0;
  padding: 0;
}

.admin-nav a {
  padding: 18px 0;
}

.admin-nav a::after {
  bottom: 10px;
}

.admin-actions {
  justify-content: flex-end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border: none;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.button:hover {
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--glass-blur);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button.gold {
  color: #000;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.icon-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-mint);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/assets/img/hero-bg.png') no-repeat center right / cover;
  opacity: 0.15; /* subtle background image */
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 188, 125, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 188, 125, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: center top;
  mask-image: radial-gradient(circle at center top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at center top, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 80%);
  pointer-events: none;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(170, 241, 232, 0.45) 45%, transparent 72%);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(167, 232, 223, 0.28);
  opacity: var(--opacity);
  animation:
    hero-float var(--duration) ease-in-out infinite,
    hero-twinkle calc(var(--duration) * 0.7) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes hero-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -18px, 0) scale(1.12);
  }
}

@keyframes hero-twinkle {
  0%,
  100% {
    opacity: calc(var(--opacity) * 0.7);
  }
  50% {
    opacity: 1;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
  min-height: 690px;
  padding: 76px 0 96px;
}

.hero h1,
.hero p,
.hero .eyebrow {
  color: #f8fafc;
}

.hero .lead {
  max-width: 650px;
  margin-top: 24px;
  color: #cbd5e1;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

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

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

.hero-card {
  align-self: end;
  padding: 30px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #fff;
}

.hero-card h2 {
  font-family: Inter, sans-serif;
  font-size: 1.35rem;
  color: #fff;
}

.hero-card p {
  color: #cbd5e1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.proof-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.proof-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

section {
  padding: 90px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-head p {
  max-width: 520px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.card {
  padding: 32px 32px 42px;
  background: rgba(255, 255, 255, 0.85);
  border: 4px solid var(--teal-2);
  border-radius: 48px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 188, 125, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.card .icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 188, 125, 0.3);
}
.card .icon svg {
  width: 28px;
  height: 28px;
}

.card p {
  margin-top: 12px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 900;
}

/* HERO BENTO GRID RESPONSIVENESS */
.hero-bento-grid {
  flex: 1;
  min-width: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.bento-card {
  border: none;
  border-radius: 48px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  transform: none !important;
}

.bento-card.emerald {
  background: var(--navy);
  color: white;
  box-shadow: 0 10px 40px rgba(0, 188, 125, 0.2);
}
.bento-card.white {
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.bento-card.lime {
  background: var(--teal);
  box-shadow: 0 10px 40px rgba(154, 230, 0, 0.2);
}
.bento-card.forest {
  background: var(--deep-green);
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 44, 34, 0.3);
  text-align: center;
}

.bento-badge {
  background: rgba(0,0,0,0.15);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.bento-link {
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 24px;
}
.bento-card.forest .bento-link {
  margin-top: 12px;
  display: block;
}

.bento-quote {
  background: rgba(0,0,0,0.05);
  padding: 16px;
  border-radius: 20px;
}
.bento-quote p {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink);
}
.bento-quote span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-2);
}

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.icon-circle.arrow-circle {
  width: 48px;
  height: 48px;
  background: white;
  color: var(--navy);
  font-size: 1.5rem;
}
.icon-circle.teal-circle {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: var(--teal);
  color: var(--ink);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero-bento-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .bento-card {
    border-radius: 20px;
    padding: 14px;
    min-height: 150px;
  }
  .bento-card h3 {
    font-size: 1.1rem !important;
    line-height: 1.2;
    margin-bottom: 6px !important;
  }
  .bento-card h2 {
    font-size: 2rem !important;
  }
  .bento-badge {
    font-size: 0.65rem;
    padding: 4px 6px;
    white-space: normal;
    line-height: 1.2;
  }
  .bento-link {
    font-size: 0.65rem;
    margin-top: auto;
  }
  .bento-quote {
    padding: 10px;
    border-radius: 12px;
  }
  .bento-quote p {
    font-size: 0.75rem;
    margin-bottom: 4px;
    line-height: 1.3;
  }
  .bento-quote span {
    font-size: 0.7rem;
  }
  .icon-circle.arrow-circle {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
    margin-top: auto;
  }
  .icon-circle.teal-circle {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .icon-circle.teal-circle svg {
    width: 18px;
    height: 18px;
  }
}


.band {
  background: var(--deep-green);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #f8fafc;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.reviews-main {
  padding-top: 56px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: start;
}

.reviews-content {
  display: grid;
  gap: 28px;
}

.reviews-section-head {
  margin-bottom: 0;
}

.reviews-section-head p:last-child {
  max-width: 460px;
}

.reviews-form-column {
  position: relative;
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px 28px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.review-stars {
  margin: 0;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.review-quote {
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 1.02rem;
  line-height: 1.8;
}

.review-meta {
  margin-top: auto;
  padding-top: 22px;
}

.review-meta h3 {
  font-size: 1.34rem;
}

.review-meta p {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.review-form-shell {
  position: sticky;
  top: 104px;
}

.review-form-head {
  margin-bottom: 24px;
}

.review-form-head h2 {
  font-family: Inter, sans-serif;
  font-size: 1.72rem;
}

.review-form-head p:last-child {
  margin-top: 10px;
  color: var(--muted);
}

.visual-panel {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  backdrop-filter: var(--glass-blur);
}

.visual-panel img {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: min(88%, 560px);
  max-height: 90%;
  object-fit: contain;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
}

.feature .check {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-2);
  border-radius: var(--radius);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  backdrop-filter: var(--glass-blur);
}

.product-card .media {
  display: grid;
  min-height: 220px;
  place-items: center;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.product-card img {
  width: 86%;
  height: 205px;
  object-fit: contain;
}

.product-card .content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-card p {
  margin-top: 10px;
}

.product-card .button {
  width: 100%;
  margin-top: auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 92px;
  background: var(--page-hero-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-hero::before, .page-hero::after { display: none; }

.page-hero::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 52%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 82px
    );
  opacity: 0.6;
}

.page-hero::after {
  inset: auto -6% -32% auto;
  width: min(44vw, 420px);
  height: min(44vw, 420px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  background: var(--page-hero-accent);
  transform: rotate(-10deg);
  box-shadow:
    0 30px 60px rgba(4, 16, 35, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero h1,
.page-hero h2,
.page-hero p,
.page-hero li,
.page-hero strong {
  color: #ffffff;
}

.page-hero .lead {
  max-width: 780px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.12rem;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

.page-hero .button.secondary {
  color: var(--page-hero-text);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-hero .button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.page-hero .hero-particles {
  opacity: 0.68;
}

.page-hero.page-hero-about {
  --page-hero-bg:
    linear-gradient(135deg, rgba(26, 53, 113, 0.96), rgba(17, 150, 138, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(120, 220, 255, 0.28), rgba(255, 211, 113, 0.16));
}

.page-hero.page-hero-services {
  --page-hero-bg:
    linear-gradient(135deg, rgba(30, 40, 101, 0.97), rgba(119, 66, 183, 0.88));
  --page-hero-accent:
    linear-gradient(135deg, rgba(255, 182, 108, 0.28), rgba(147, 229, 255, 0.18));
}

.page-hero.page-hero-legal {
  --page-hero-bg:
    linear-gradient(135deg, rgba(11, 37, 78, 0.98), rgba(0, 131, 143, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(255, 204, 101, 0.34), rgba(108, 245, 222, 0.16));
}

.page-hero.page-hero-equipment,
.page-hero.page-hero-product {
  --page-hero-bg:
    linear-gradient(135deg, rgba(7, 68, 97, 0.97), rgba(19, 134, 121, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(255, 210, 126, 0.3), rgba(123, 236, 255, 0.18));
}

.page-hero.page-hero-reviews {
  --page-hero-bg:
    linear-gradient(135deg, rgba(67, 36, 127, 0.96), rgba(0, 121, 145, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(255, 191, 129, 0.28), rgba(177, 238, 255, 0.18));
}

.page-hero.page-hero-contact {
  --page-hero-bg:
    linear-gradient(135deg, rgba(20, 47, 109, 0.97), rgba(181, 92, 85, 0.84));
  --page-hero-accent:
    linear-gradient(135deg, rgba(255, 199, 95, 0.32), rgba(153, 220, 255, 0.16));
}

.page-hero.page-hero-admin {
  --page-hero-bg:
    linear-gradient(135deg, rgba(17, 31, 68, 0.98), rgba(16, 102, 145, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(255, 198, 112, 0.3), rgba(111, 219, 255, 0.18));
}

.page-hero.page-hero-account {
  --page-hero-bg:
    linear-gradient(135deg, rgba(47, 28, 106, 0.97), rgba(20, 118, 122, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(255, 184, 131, 0.3), rgba(170, 236, 255, 0.18));
}

.page-hero.page-hero-privacy,
.page-hero.page-hero-terms {
  --page-hero-bg:
    linear-gradient(135deg, rgba(26, 45, 80, 0.97), rgba(67, 109, 151, 0.9));
  --page-hero-accent:
    linear-gradient(135deg, rgba(255, 209, 133, 0.24), rgba(130, 224, 214, 0.16));
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.product-image {
  display: grid;
  min-height: 540px;
  place-items: center;
  background: linear-gradient(135deg, #f1faf9, #fff4dd);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-image img {
  width: min(88%, 640px);
  max-height: 500px;
  object-fit: contain;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
}

.specs {
  display: grid;
  gap: 0;
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: var(--glass-blur);
}

.specs div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}

.specs dt,
.specs dd {
  margin: 0;
}

.specs dt {
  color: var(--muted);
  font-weight: 800;
}

.notice {
  padding: 18px;
  color: #664400;
  background: var(--gold-2);
  border: 1px solid #f4d393;
  border-radius: var(--radius);
  font-size: 0.94rem;
}

.form-shell {
  padding: 30px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(24px);
  color: var(--ink);
}

form {
  display: grid;
  gap: 14px;
}

.admin-list {
  display: grid;
  gap: 18px;
}

.admin-list-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.admin-list-media {
  width: 120px;
  height: 90px;
  object-fit: contain;
  background: var(--soft);
  border-radius: 8px;
}

.admin-inline-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 800;
}

select option {
  color: #000000 !important;
  background-color: #ffffff !important;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.footer {
  padding: 64px 0 34px;
  color: var(--ink-2);
  background: #f8fafc;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.9fr;
  gap: 40px;
}

.footer h3,
.footer strong {
  color: var(--ink);
}

.footer a,
.footer p {
  color: var(--ink-2);
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .icon-button {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions .button.secondary {
    display: none;
  }

  .admin-header .nav {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .admin-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    padding-top: 4px;
    overflow-x: auto;
  }

  .admin-actions {
    margin-left: auto;
  }

  .hero-inner,
  .split,
  .product-detail,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .grid.three,
  .grid.four,
  .product-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    padding: 84px 0 80px;
  }

  .page-hero::after {
    width: min(54vw, 300px);
    height: min(54vw, 300px);
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand span {
    display: none;
  }

  .nav-actions .button {
    display: none;
  }

  .admin-header .brand span {
    display: inline;
  }

  .admin-actions .button {
    display: inline-flex;
  }

  .hero-inner,
  section {
    padding: 60px 0;
  }

  .hero-actions .button,
  .product-card .button,
  .admin-inline-actions .button,
  .admin-inline-actions .button.secondary {
    width: 100%;
  }

  .page-hero {
    padding: 72px 0 66px;
  }

  .page-hero::before {
    opacity: 0.42;
  }

  .page-hero::after {
    right: -18%;
    bottom: -22%;
    width: 240px;
    height: 240px;
    border-radius: 24px;
  }

  .section-head,
  .footer-bottom {
    display: block;
  }

  .reviews-main {
    padding-top: 42px;
  }

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

  .review-card {
    min-height: 0;
  }

  .review-form-shell {
    position: static;
  }

  .section-head p {
    margin-top: 16px;
  }

  .grid.three,
  .grid.four,
  .product-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 360px;
  }

  .admin-list-item {
    grid-template-columns: 1fr;
  }

  .admin-list-media {
    width: 100%;
    height: 180px;
  }

  .specs div {
    grid-template-columns: 1fr;
  }
}

.band h2, .band p, .band .eyebrow {
  color: #f8fafc;
}
.band p.eyebrow {
  color: var(--teal-2);
}
.band .feature p, .band .feature-list p {
  color: #cbd5e1;
}

.band .form-shell {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  color: #fff;
}
.band .form-shell label {
  color: #cbd5e1;
}
.band .form-shell input, .band .form-shell select, .band .form-shell textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}
.band .form-shell select option {
  color: #000000 !important;
  background-color: #ffffff !important;
}
.band .form-shell input::placeholder, .band .form-shell textarea::placeholder {
  color: rgba(255,255,255,0.5);
}
.band .form-shell h2, .band .form-shell p {
  color: #fff;
}

.review-card p, .review-card h3 {
  color: var(--ink);
}
.review-quote {
  color: var(--ink-2) !important;
}
