/* =========================================================================
   EB POOLS — Design System
   Producent kunststof zwembaden · Wetteren, Oost-Vlaanderen
   Palette: graduated brand blues + pool-aqua + travertine on a cool pale ground
   Type:    Space Grotesk (display) · Manrope (body) · Space Mono (labels/data)
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --sky:        #eef4f5;   /* primary light ground (cool, aqua-tinted) */
  --sky-2:      #ffffff;   /* raised surfaces */
  --sky-3:      #e3edee;   /* sunken / hairline tint */
  --ink:        #06202c;   /* deep ocean ink — text + dark sections */
  --ink-2:      #0a2f40;   /* lighter ocean for gradients */
  --ink-3:      #103a4d;
  --deep:       #006ba1;   /* brand deep blue (from logo) */
  --mid:        #2696c0;   /* brand mid blue (from logo) */
  --aqua:       #1fc4dd;   /* bright pool accent */
  --aqua-2:     #6fe3ef;   /* light aqua sheen */
  --sand:       #e7d8c1;   /* warm travertine neutral */
  --sand-deep:  #cdb892;

  /* Text roles */
  --text:       #06202c;
  --text-soft:  #3c5763;   /* slate body on light */
  --text-mute:  #6c8590;
  --on-dark:    #e8f3f5;
  --on-dark-soft:#9fc0cb;

  /* Type */
  --f-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --f-body:    "Manrope", "Helvetica Neue", Arial, sans-serif;
  --f-mono:    "Space Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Scale — smaller, tighter, more professional */
  --step--1: clamp(0.68rem, 0.67rem + 0.06vw, 0.75rem);
  --step-0:  clamp(0.78rem, 0.75rem + 0.1vw,  0.875rem);
  --step-1:  clamp(0.875rem, 0.82rem + 0.22vw, 1.05rem);
  --step-2:  clamp(1.0rem,   0.9rem + 0.45vw,  1.25rem);
  --step-3:  clamp(1.15rem,  0.95rem + 0.95vw, 1.65rem);
  --step-4:  clamp(1.4rem,   1.0rem + 1.8vw,   2.6rem);

  /* Layout */
  --maxw:   960px;
  --gutter: clamp(1.25rem, 3.5vw, 2rem);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  /* Effects */
  --shadow-sm: 0 2px 10px rgba(6,32,44,.06);
  --shadow:    0 18px 50px -18px rgba(6,32,44,.28);
  --shadow-lg: 0 40px 90px -30px rgba(6,32,44,.45);
  --ring: 0 0 0 3px rgba(31,196,221,.45);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--text);
  background: var(--sky);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--aqua); outline-offset: 3px; box-shadow: none; border-radius: 4px; }
@media (forced-colors: active) { :focus-visible { outline: 3px solid Highlight; } }

::selection { background: var(--aqua); color: var(--ink); }

/* skip link — visible only on keyboard focus */
.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  transform: translateY(calc(-100% - 24px));
  background: var(--ink); color: #fff;
  padding: 0.75em 1.2em; border-radius: 10px; font-weight: 700;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: 1480px; }
.section { padding-block: clamp(2.5rem, 5vw, 6rem); position: relative; background: var(--sky-3); }
.section--tight { padding-block: clamp(1.5rem, 3vw, 4rem); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark .lead, .section--dark p,
.contact .lead, .contact p,
.pagehead .lead, .pagehead p,
.stats .lead, .stats p { color: var(--on-dark-soft); }

/* ---------- Typography components ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-size: var(--step--1);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #00567f;          /* darker brand blue → AA contrast on light ground */
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-weight: 800;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  flex: none;
  background: linear-gradient(90deg, var(--aqua), var(--mid));
}
.eyebrow--light { color: var(--aqua-2); }
.eyebrow--center { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 600; line-height: 1.04; letter-spacing: -0.02em; color: inherit; }
.display { font-size: var(--step-4); font-weight: 700; letter-spacing: -0.03em; }
.h2 { font-size: var(--step-3); }
.h3 { font-size: var(--step-2); }
.lead { font-size: var(--step-1); color: var(--text-soft); line-height: 1.55; font-weight: 500; }
.balance { text-wrap: balance; }

.section-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .h2 { margin-top: 0.6rem; }
.section-head.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--deep);
  --fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.55em 1.1em;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: 0.01em;
  color: var(--fg);
  background: var(--bg);
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .4s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .4s var(--ease); }
.btn::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--mid), var(--aqua));
  transform: translateX(-101%);
  transition: transform .5s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(0,107,161,.6); }
.btn:hover::before { transform: translateX(0); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary { --bg: linear-gradient(120deg, var(--deep), var(--mid)); }
.btn--accent { --bg: var(--aqua); --fg: var(--ink); }
.btn--accent::before { background: linear-gradient(120deg, #fff, var(--aqua-2)); }
.btn--ghost {
  --fg: var(--ink);
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(6,32,44,.22);
}
.btn--ghost::before { background: var(--ink); }
.btn--ghost:hover { --fg: #fff; box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn--on-dark { --fg: var(--ink); background: var(--on-dark); }
.btn--on-dark.btn--ghost { --fg: var(--on-dark); background: transparent; box-shadow: inset 0 0 0 1.5px rgba(232,243,245,.3); }
.btn--on-dark.btn--ghost::before { background: var(--on-dark); }
.btn--on-dark.btn--ghost:hover { --fg: var(--ink); }

.btn--lg { padding: 0.65em 1.4em; font-size: var(--step-0); }

/* ghost button placed over a photo — keeps white label on a controlled dark backing */
.btn--on-photo {
  --fg: #fff;
  background: rgba(6,32,44,.4);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.55);
}
.btn--on-photo::before { background: rgba(6,32,44,.85); }
.btn--on-photo:hover { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.85); }

.text-link {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; color: var(--deep);
  font-size: var(--step--1);
  letter-spacing: 0.02em;
}
.text-link svg { width: 1em; height: 1em; transition: transform .35s var(--ease); }
.text-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.text-link:hover::after { transform: scaleX(1); }
.text-link:hover svg { transform: translateX(5px); }

/* =========================================================================
   NAV — transparent on hero, clean white when scrolled
   ========================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: 0.4rem var(--gutter);
  background: transparent;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
/* Scrolled: clean white bar */
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: 0 1px 16px rgba(0,0,0,.08);
}
.nav__logo { display: flex; align-items: center; z-index: 2; }
/* Default (over hero): white logo */
.nav__logo img { height: 20px; width: auto; filter: brightness(0) invert(1); transition: filter .3s; }
/* Scrolled (white bar): show original logo colours */
.nav.scrolled .nav__logo img { filter: none; }

.nav__menu { display: flex; align-items: center; gap: clamp(0.4rem, 1vw, 1.4rem); }
.nav__link {
  position: relative;
  font-weight: 600;
  font-size: clamp(0.75rem, 0.68rem + 0.3vw, 0.86rem);
  color: rgba(255,255,255,.9);
  padding: 0.25em 0;
  transition: color .3s, opacity .25s;
}
/* Scrolled: dark text */
.nav.scrolled .nav__link { color: var(--text-soft); }
.nav__link:hover { opacity: 0.7; }
.nav__link::after {
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1.5px;
  background: var(--aqua);
  transition: right .35s var(--ease);
}
.nav__link:hover::after { right: 0; }

/* dropdown */
.nav__item { position: relative; }
.nav__item--has-menu > .nav__link { display: inline-flex; align-items: center; gap: 0.3em; }
.nav__item--has-menu > .nav__link svg { width: 0.65em; height: 0.65em; transition: transform .3s; }
.nav__item--has-menu:hover > .nav__link svg { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 6px);
  background: var(--sky-2);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 0.4rem;
  min-width: 200px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s, transform .3s, visibility .3s;
}
.nav__item--has-menu:hover .nav__dropdown,
.nav__item--has-menu:focus-within .nav__dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav__dropdown a {
  display: block; padding: 0.5rem 0.8rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600; color: var(--text-soft);
  transition: background .2s, color .2s;
}
.nav__dropdown a:hover { background: var(--sky); color: var(--deep); }

.nav__cta { display: flex; align-items: center; gap: 0.75rem; z-index: 2; }
.nav__burger {
  display: none; width: 38px; height: 38px; border-radius: 8px;
  position: relative; background: rgba(255,255,255,.15); color: #fff;
  transition: background .3s, color .3s;
}
/* Scrolled burger: dark on white */
.nav.scrolled .nav__burger { background: var(--sky-3); color: var(--text); }
.nav__burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: currentColor; transition: transform .4s var(--ease), opacity .3s; }
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 19px; }
.nav__burger span:nth-child(3) { top: 24px; }
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* mobile drawer */
.nav__drawer {
  position: fixed; inset: 0; z-index: 99;
  background: linear-gradient(160deg, var(--ink), var(--ink-2));
  color: var(--on-dark);
  padding: 5rem var(--gutter) 2.5rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
}
body.menu-open .nav__drawer { transform: translateY(0); }
.nav__drawer a { font-family: var(--f-display); font-size: clamp(0.9rem, 3vw, 1.25rem); font-weight: 600; padding: 0.35rem 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.nav__drawer a:last-of-type { border-bottom: none; }
.nav__drawer .btn { align-self: flex-start; margin-top: 1.2rem; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -3; }
.hero__img {
  width: 100%; height: 120%;
  object-fit: cover;
  object-position: center 38%;
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,32,44,.62) 0%, rgba(6,32,44,0) 28%, rgba(6,32,44,0) 38%, rgba(6,32,44,.82) 100%),
    radial-gradient(110% 90% at 12% 120%, rgba(5,22,30,.78), transparent 58%);
}
/* moving caustics shimmer */
.hero__caustics {
  position: absolute; inset: -20%; z-index: -2;
  background:
    radial-gradient(40% 30% at 30% 30%, rgba(111,227,239,.16), transparent 60%),
    radial-gradient(35% 25% at 70% 60%, rgba(31,196,221,.14), transparent 60%),
    radial-gradient(30% 22% at 50% 80%, rgba(255,255,255,.10), transparent 60%);
  mix-blend-mode: screen;
  animation: caustics 18s ease-in-out infinite alternate;
}
@keyframes caustics {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.04); }
}

.hero__wordmark { display: none; }

.hero__content {
  position: relative; z-index: 1;
  margin-top: auto;
  padding-top: clamp(1rem, 3vh, 2rem);
  padding-bottom: clamp(2.5rem, 6vh, 5rem);
  max-width: 680px;
}
.hero__title {
  font-size: clamp(1.2rem, 2.4vw, 2.1rem);
  font-weight: 600;
  margin: 0.4rem 0 0.75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero__lead {
  font-size: clamp(0.88rem, 1.1vw, 1.02rem);
  color: rgba(255,255,255,.92);
  max-width: 48ch;
  text-shadow: 0 1px 16px rgba(0,0,0,.4);
  font-weight: 500;
  line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1rem;
  margin-top: 1.5rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}
.hero__trust li { display: flex; align-items: center; gap: 0.55em; }
.hero__trust li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--aqua); box-shadow: 0 0 12px var(--aqua);
}

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(2rem, 6vh, 4rem); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  writing-mode: vertical-rl;
  color: rgba(255,255,255,.85);
}
.hero__scroll::after {
  content: ""; width: 1px; height: 56px;
  background: linear-gradient(var(--aqua), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollLine { 0% { transform: scaleY(0); } 40% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }
@media (max-width: 760px) { .hero__scroll { display: none; } }

/* =========================================================================
   WAVE DIVIDERS
   ========================================================================= */
.wave {
  position: absolute; left: 0; width: 100%; overflow: hidden; line-height: 0;
  z-index: 2; pointer-events: none; height: clamp(48px, 7vw, 96px);
}
/* sits directly above its (dark) parent's top edge → wavy top */
.wave--up { bottom: 100%; }
.wave svg { position: absolute; top: 0; left: 0; width: 200%; height: 100%; display: block; }
.wave__layer { animation: waveShift 16s linear infinite; will-change: transform; }
.wave__layer--2 { animation-duration: 26s; opacity: .45; }
@keyframes waveShift { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================================
   INTRO / POSITIONING
   ========================================================================= */
.intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.intro__body p + p { margin-top: 1.1rem; }
.intro__body .lead { margin-bottom: 1.4rem; }
.intro__sign { margin-top: 2rem; display: flex; align-items: center; gap: 1rem; }
.intro__sign img { height: 64px; width: auto; opacity: .9; }
.intro__sign small { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: .08em; color: var(--text-mute); text-transform: uppercase; max-width: 24ch; line-height: 1.5; }

.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.intro__badge {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--sky-2); border-radius: var(--radius);
  padding: 1.2rem 1.4rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 1rem;
  max-width: 280px;
}
.intro__badge .num { font-family: var(--f-display); font-weight: 700; font-size: 2.4rem; line-height: 1; color: var(--deep); }
.intro__badge .lbl { font-size: 0.84rem; color: var(--text-soft); font-weight: 600; line-height: 1.35; }

/* =========================================================================
   STATS BAND (dark)
   ========================================================================= */
.stats { position: relative; background: linear-gradient(155deg, var(--ink), var(--ink-2) 60%, #08374a); overflow: hidden; }
.stats::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 85% 0%, rgba(31,196,221,.16), transparent 55%),
              radial-gradient(50% 100% at 0% 100%, rgba(0,107,161,.3), transparent 55%);
}
.stats__grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.stat { position: relative; padding-left: 1.4rem; }
.stat::before { content:""; position:absolute; left:0; top:0.4rem; bottom:0.4rem; width:2px; background: linear-gradient(var(--aqua), transparent); }
.stat__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.6rem, 5.5vw, 4.4rem); line-height: 1; color: #fff; display: flex; align-items: baseline; gap: 0.12em; letter-spacing: -0.03em; }
.stat__suffix { font-family: var(--f-body); font-size: 0.36em; color: var(--aqua); font-weight: 700; letter-spacing: 0.01em; align-self: flex-end; margin-bottom: 0.35em; }
.stat__label { margin-top: 0.8rem; color: var(--on-dark-soft); font-size: 0.95rem; font-weight: 500; max-width: 22ch; }

/* =========================================================================
   FEATURES (Why HDPE)
   ========================================================================= */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }
.feature {
  background: var(--sky-2);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.feature::after {
  content:""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--deep), var(--aqua));
  transition: width .6s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature:hover::after { width: 100%; }
.feature__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(0,107,161,.12), rgba(31,196,221,.16));
  color: var(--deep);
  margin-bottom: 1.2rem;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: var(--step-1); margin-bottom: 0.5rem; }
.feature p { color: var(--text-soft); font-size: 0.96rem; }

/* =========================================================================
   PRODUCTS / SOLUTIONS
   ========================================================================= */
.products__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1rem, 2vw, 1.5rem); }
.product {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
  color: #fff; isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.product--lg { grid-column: span 7; min-height: 460px; }
.product--sm { grid-column: span 5; }
.product--third { grid-column: span 4; min-height: 300px; }
@media (max-width: 880px) {
  .product--lg, .product--sm, .product--third { grid-column: span 12; min-height: 320px; }
}
.product__img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.product::before {
  content:""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(178deg, rgba(6,32,44,0) 42%, rgba(5,24,33,.55) 72%, rgba(4,18,26,.9) 100%);
}
.product:hover .product__img { transform: scale(1.06); }
.product__body { padding: clamp(1.4rem, 2.5vw, 2.2rem); position: relative; }
.product__index { font-family: var(--f-mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--aqua-2); }
.product h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 0.4rem 0 0.5rem; }
.product p { color: rgba(255,255,255,.86); font-size: 0.96rem; max-width: 46ch; }
.product .text-link { color: #fff; margin-top: 1rem; }

/* tag row */
.product__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.tag {
  font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.4em 0.8em; border-radius: 999px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(4px);
  color: #fff;
}

/* =========================================================================
   PROCESS TIMELINE
   ========================================================================= */
.process { background: var(--sky-2); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); counter-reset: step; }
.step { position: relative; padding-top: 2.4rem; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--sky-3);
}
.step::after {
  content: ""; position: absolute; top: -4px; left: 0; width: 10px; height: 10px; border-radius: 50%;
  background: var(--deep); box-shadow: 0 0 0 4px rgba(0,107,161,.15);
}
.step__num { font-family: var(--f-mono); font-weight: 700; color: var(--mid); font-size: 0.85rem; letter-spacing: 0.1em; }
.step h3 { font-size: var(--step-1); margin: 0.5rem 0 0.5rem; }
.step p { color: var(--text-soft); font-size: 0.95rem; }
@media (max-width: 880px) { .process__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process__grid { grid-template-columns: 1fr; } }

/* =========================================================================
   GALLERY (projects)
   ========================================================================= */
.gallery__track {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(260px, 32vw, 420px);
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1.5rem; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: thin; scrollbar-color: var(--mid) transparent;
}
.gallery__track::-webkit-scrollbar { height: 6px; }
.gallery__track::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 999px; }
.gallery__card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  scroll-snap-align: start; aspect-ratio: 3/4; box-shadow: var(--shadow-sm);
  isolation: isolate;
}
.gallery__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery__card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(6,32,44,.8)); opacity: .85; transition: opacity .5s; }
.gallery__card:hover img { transform: scale(1.07); }
.gallery__cap {
  position: absolute; left: 0; bottom: 0; z-index: 1; padding: 1.3rem; color: #fff;
  transform: translateY(8px); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.gallery__card:hover .gallery__cap { transform: none; opacity: 1; }
.gallery__cap .t { font-family: var(--f-display); font-weight: 600; font-size: 1.2rem; }
.gallery__cap .s { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--aqua-2); }
.gallery__hint { font-family: var(--f-body); font-weight: 600; font-size: 0.84rem; letter-spacing: 0.01em; color: var(--text-mute); display:flex; align-items:center; gap:0.5em; margin-top: 0.5rem; }

/* =========================================================================
   COLOR CHOICE (kleurkeuze)
   ========================================================================= */
.colors__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.pool-preview {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/11; box-shadow: var(--shadow);
  background: #cfe9ef;
}
.pool-preview__water {
  position: absolute; inset: 6%;
  border-radius: 14px;
  background:
    radial-gradient(120% 90% at 30% 12%, rgba(255,255,255,.4), rgba(255,255,255,0) 42%),
    radial-gradient(140% 120% at 78% 96%, color-mix(in srgb, var(--liner, #2aa7c9) 70%, #021016) 0%, transparent 55%),
    var(--liner, #2aa7c9);
  box-shadow: inset 0 10px 50px rgba(0,0,0,.3), inset 0 -12px 34px rgba(255,255,255,.14);
  transition: background .8s var(--ease);
  overflow: hidden;
}
.pool-preview__water::before {
  content:""; position:absolute; inset:-40%;
  background:
    radial-gradient(26% 16% at 22% 30%, rgba(255,255,255,.28), transparent 60%),
    radial-gradient(20% 14% at 64% 44%, rgba(255,255,255,.22), transparent 60%),
    radial-gradient(30% 18% at 44% 76%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(18% 12% at 82% 70%, rgba(255,255,255,.2), transparent 60%);
  mix-blend-mode: screen;
  filter: blur(2px);
  animation: caustics 14s ease-in-out infinite alternate;
}
.pool-preview__water::after {
  content:""; position:absolute; inset:0;
  background: repeating-linear-gradient(112deg, rgba(255,255,255,.06) 0 2px, transparent 2px 26px);
  mix-blend-mode: screen; opacity: .7;
  animation: caustics 9s ease-in-out infinite alternate-reverse;
}
.pool-preview__deck { position:absolute; inset:0; border:6% solid transparent; }
.swatches { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.swatch {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--f-body); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mute);
  transition: color .3s;
}
.swatch__dot {
  width: 56px; height: 56px; border-radius: 50%;
  box-shadow: inset 0 -6px 14px rgba(0,0,0,.25), 0 4px 14px rgba(6,32,44,.15);
  outline: 2px solid transparent; outline-offset: 3px;
  transition: transform .4s var(--ease), outline-color .3s, box-shadow .3s;
}
.swatch:hover .swatch__dot { transform: scale(1.08); }
.swatch.is-active { color: var(--deep); }
.swatch.is-active .swatch__dot { outline-color: var(--aqua); transform: scale(1.12); box-shadow: inset 0 -6px 14px rgba(0,0,0,.25), 0 6px 20px rgba(31,196,221,.4); }

/* =========================================================================
   TEAM (teaser + page)
   ========================================================================= */
.team__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: clamp(1.2rem, 2.5vw, 2rem); }
.member {
  background: var(--sky-2); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.member__avatar {
  width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--f-display); font-weight: 700; font-size: 2rem; color: #fff;
  background: linear-gradient(150deg, var(--deep), var(--mid));
  margin-bottom: 1.3rem;
  position: relative; overflow: hidden;
}
.member__avatar::after { content:""; position:absolute; inset:0; background: repeating-linear-gradient(120deg, rgba(255,255,255,.12) 0 6px, transparent 6px 18px); mix-blend-mode: screen; }
.member__avatar img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { font-size: var(--step-1); }
.member__role { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid); margin-top: 0.25rem; }
.member p { color: var(--text-soft); font-size: 0.94rem; margin-top: 0.9rem; }
.member__contact { display: flex; flex-direction: column; gap: 0.35rem; margin-top: 1.2rem; font-size: 0.9rem; }
.member__contact a { display: inline-flex; align-items: center; gap: 0.5em; color: var(--deep); font-weight: 600; }
.member__contact a svg { width: 1em; height: 1em; }

/* =========================================================================
   CONTACT + WATER
   ========================================================================= */
.contact { position: relative; background: linear-gradient(165deg, var(--ink), var(--ink-2)); color: var(--on-dark); overflow: hidden; }
.contact::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 90% at 90% 10%, rgba(31,196,221,.14), transparent 55%); }
.contact__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); align-items: stretch; }
@media (max-width: 920px) { .contact__grid { grid-template-columns: 1fr; } }

.form { display: flex; flex-direction: column; gap: 1.1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }
.field { position: relative; display: flex; flex-direction: column; gap: 0.45rem; }
.field label { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-soft); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 0.98rem; color: #fff;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: 0.85em 1em;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--aqua); background: rgba(255,255,255,.09); box-shadow: 0 0 0 4px rgba(31,196,221,.16); }
.field select option { color: var(--ink); }

.checkbox { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.86rem; color: var(--on-dark-soft); }
.checkbox input { width: 20px; height: 20px; accent-color: var(--aqua); flex: none; margin-top: 2px; }
.checkbox a { color: var(--aqua-2); text-decoration: underline; }

.form__success {
  display: none; align-items: center; gap: 1rem;
  padding: 1.4rem 1.5rem; border-radius: 14px;
  background: rgba(31,196,221,.12); border: 1px solid rgba(31,196,221,.4);
}
.form__success.show { display: flex; }
.form__success svg { width: 34px; height: 34px; color: var(--aqua); flex: none; }

/* water panel */
.water-panel { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; }
.water-panel canvas, .water-panel .water-fallback { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; }
.water-fallback { background-size: cover; background-position: center; }
.water-fallback::after { content:""; position:absolute; inset:0; background: repeating-linear-gradient(110deg, rgba(255,255,255,.08) 0 14px, transparent 14px 42px); mix-blend-mode: screen; animation: caustics 10s ease-in-out infinite alternate; }
.water-panel::before { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(6,32,44,0) 40%, rgba(6,32,44,.7)); }
.water-panel__note { padding: clamp(1.4rem, 3vw, 2rem); color: #fff; }
.water-panel__note .eyebrow { color: var(--aqua-2); }
.water-panel__note p { color: rgba(255,255,255,.9); font-size: 0.95rem; margin-top: 0.5rem; max-width: 36ch; }

.contact__details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.5rem; margin-top: 2rem; }
@media (max-width: 540px) { .contact__details { grid-template-columns: 1fr; } }
.detail__label { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aqua-2); margin-bottom: 0.4rem; }
.detail a, .detail address { color: #fff; font-style: normal; font-weight: 600; line-height: 1.5; }
.detail a:hover { color: var(--aqua-2); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { position: relative; background: #04161e; color: var(--on-dark-soft); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 3vw, 3rem); }
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo img { height: 44px; filter: brightness(0) invert(1); opacity: .92; }
.footer p { font-size: 0.92rem; max-width: 34ch; margin-top: 1rem; }
.footer h3 { font-family: var(--f-body); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 1.1rem; font-weight: 800; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { font-size: 0.94rem; transition: color .3s, padding-left .3s; }
.footer__links a:hover { color: var(--aqua-2); padding-left: 5px; }
.footer__badge { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 1rem; border-radius: 14px; }
.footer__badge img { width: 64px; height: auto; background: #fff; border-radius: 8px; padding: 6px; }
.footer__badge span { font-size: 0.82rem; line-height: 1.4; }
.footer__bottom { margin-top: clamp(2.5rem, 5vw, 4rem); padding: 1.8rem 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; font-size: 0.82rem; font-family: var(--f-mono); letter-spacing: 0.03em; }
.footer__bottom a:hover { color: var(--aqua-2); }

/* =========================================================================
   PAGE HEADER (sub pages e.g. team)
   ========================================================================= */
.pagehead { position: relative; padding: clamp(8rem, 16vh, 12rem) 0 clamp(3rem, 6vw, 5rem); background: linear-gradient(165deg, var(--ink), var(--ink-2)); color: #fff; overflow: hidden; }
.pagehead::before { content:""; position:absolute; inset:0; background: radial-gradient(50% 90% at 80% 0%, rgba(31,196,221,.18), transparent 55%); }
.pagehead__inner { position: relative; max-width: 760px; }
.pagehead h1 { font-size: clamp(1.3rem, 2.5vw, 2rem); margin: 0.5rem 0 0.8rem; }
.pagehead p { color: var(--on-dark-soft); font-size: var(--step-1); }
.crumbs { font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--aqua-2); }
.crumbs a:hover { text-decoration: underline; }

/* =========================================================================
   PROSE (legal pages)
   ========================================================================= */
.prose { max-width: 760px; }
.prose h2 { font-size: var(--step-2); margin: 2.4rem 0 0.8rem; }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-soft); }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.prose a { color: var(--deep); font-weight: 600; text-decoration: underline; }
.prose .updated { font-family: var(--f-mono); font-size: 0.78rem; color: var(--text-mute); letter-spacing: 0.04em; }

/* =========================================================================
   REVEAL ANIMATIONS
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.reveal--scale { transform: scale(.96); }
.reveal--scale.in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__caustics, .hero__wordmark span, .wave__layer, .hero__scroll::after, .pool-preview__water::before, .pool-preview__water::after, .water-fallback::after { animation: none !important; }
  .hero__img { height: 100% !important; }
  * { scroll-behavior: auto !important; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

/* --- tablet/burger --- */
@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__burger { display: block; }
  .nav__cta .btn:not(.nav__burger) { display: none; }
  .intro__grid, .colors__grid { grid-template-columns: 1fr; }
  .intro__media { order: -1; max-width: 460px; }
  .intro__badge { left: auto; right: 16px; }
  .footer__grid { gap: 1.5rem; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 1.5rem; }
}

/* --- tablet portrait --- */
@media (max-width: 768px) {
  .hero { min-height: 85svh; }
  .hero__content { padding-bottom: clamp(2rem, 6vh, 3.5rem); }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(6,32,44,.6) 0%, rgba(6,32,44,.05) 28%, rgba(6,32,44,.5) 60%, rgba(5,20,28,.94) 100%);
  }
  .hero__lead { color: #fff; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding-block: clamp(2.5rem, 7vw, 5rem); }
  .section--tight { padding-block: clamp(1.5rem, 4vw, 2.5rem); }
}

/* --- phone --- */
@media (max-width: 540px) {
  :root { --gutter: 1.1rem; }
  .hero { min-height: 78svh; }
  .hero__title { font-size: clamp(1.4rem, 6.8vw, 1.9rem); }
  .hero__lead { font-size: 0.86rem; }
  .hero__cta { gap: 0.5rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .features__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .section-head { margin-bottom: clamp(1.25rem, 3.5vw, 2rem); }
  .process__grid { gap: 1.25rem 0.8rem; }
}

@media (max-width: 400px) {
  .hero__title { font-size: clamp(1.3rem, 7.5vw, 1.7rem); }
  .team__grid--photos { grid-template-columns: 1fr; }
}

/* --- laptop white side bars --- */
@media (min-width: 980px) {
  html { background: var(--sky-3); }          /* visible side bars */
  body { background: transparent; }
  main {
    max-width: 960px;
    margin-inline: auto;
    background: #fff;                           /* white content column */
    box-shadow: 0 0 0 1px rgba(6,32,44,.07), 0 0 60px rgba(6,32,44,.09);
  }
  .section { background: transparent; }        /* sections inherit main white */
  .section--dark { background: var(--ink); }   /* dark sections keep colour */
  /* Hero breaks out of the constrained main to fill full viewport */
  .hero {
    margin-left: calc(50% - 50vw);
    width: 100vw;
    max-width: none;
  }
}

/* =========================================================================
   EDIT MODE TOOLBAR
   ========================================================================= */
#eb-toolbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  padding: .6rem 1.25rem;
  background: #0f2536;
  color: #e0eff5;
  font-family: var(--f-mono); font-size: .72rem; line-height: 1.4;
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.ebt__tag {
  background: var(--aqua); color: var(--deep);
  padding: .18rem .55rem; border-radius: 4px;
  font-weight: 700; white-space: nowrap; flex-shrink: 0; font-size: .7rem;
}
.ebt__hint { opacity: .65; flex: 1; min-width: 12ch; }
.ebt--dirty .ebt__hint::after { content: ' · ✓ opgeslagen'; color: #7de4a4; }
.ebt__actions { display: flex; gap: .5rem; flex-shrink: 0; margin-left: auto; }
.ebt__btn {
  padding: .28rem .7rem; border-radius: 6px; cursor: pointer;
  font-family: var(--f-mono); font-size: .7rem; line-height: 1.4;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08); color: #e0eff5;
  transition: background .15s;
}
.ebt__btn:hover { background: rgba(255,255,255,.18); }
.ebt__btn--ghost { background: transparent; color: rgba(255,255,255,.55); }
.ebt__btn--ghost:hover { background: rgba(255,100,100,.15); color: #fca5a5; border-color: rgba(255,100,100,.3); }
.ebt__btn--save { background: rgba(34,197,94,.18); color: #86efac; border-color: rgba(34,197,94,.4); }
.ebt__btn--save:hover { background: rgba(34,197,94,.32); }

body.eb-edit [contenteditable="true"] {
  outline: 2px dashed rgba(31,196,221,.45);
  outline-offset: 3px;
  border-radius: 3px;
  cursor: text;
}
body.eb-edit [contenteditable="true"]:hover {
  outline-color: rgba(31,196,221,.85);
  background: rgba(31,196,221,.06);
}
body.eb-edit [contenteditable="true"]:focus {
  outline: 2px solid var(--aqua);
  background: rgba(31,196,221,.09);
}

/* =========================================================================
   TEAM VIDEO PLAYER
   ========================================================================= */
.video-block { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--deep); }
.video-block__player { display: block; width: 100%; max-height: 560px; object-fit: cover; }

/* Edit-mode floating trigger button (localhost only) */
#eb-edit-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 198;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--deep); color: #fff;
  font-size: 1.3rem; border: 2px solid rgba(31,196,221,.45);
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  cursor: pointer; transition: background .2s, transform .15s, border-color .2s;
  display: flex; align-items: center; justify-content: center;
}
#eb-edit-fab:hover { background: var(--sky); transform: scale(1.1); border-color: var(--aqua); }
#eb-edit-fab.is-active,
body.eb-edit #eb-edit-fab { background: var(--aqua); color: var(--deep); border-color: var(--aqua); }

/* Device preview panel (localhost only) */
#eb-preview-panel {
  position: fixed; bottom: 1.5rem; left: 1.5rem; z-index: 198;
  display: flex; align-items: center; gap: .4rem;
  padding: .45rem .7rem;
  background: rgba(6,32,44,.88);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid rgba(31,196,221,.28);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
}
.epv__label {
  font-family: var(--f-mono); font-size: .62rem; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(224,239,245,.5);
  padding-right: .4rem; border-right: 1px solid rgba(255,255,255,.12);
}
.epv__btn {
  font-size: 1.1rem; line-height: 1; background: none; border: none;
  cursor: pointer; padding: .2rem .25rem; border-radius: 6px;
  transition: background .15s, transform .15s;
}
.epv__btn:hover { background: rgba(255,255,255,.12); transform: scale(1.15); }

/* =========================================================================
   HERO VIDEO
   ========================================================================= */
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* =========================================================================
   TEAM — photo member cards
   ========================================================================= */
.team__grid--photos { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.member--photo .member__avatar {
  width: 140px; height: 140px;
  background: linear-gradient(150deg, var(--deep), var(--sky));
}
.member--photo .member__avatar::after { display: none; }

/* =========================================================================
   NAV — accent link (Configurator)
   ========================================================================= */
.nav__link--accent { color: var(--aqua) !important; font-weight: 700; }

/* =========================================================================
   FORM — optional field label suffix
   ========================================================================= */
.field__opt { font-weight: 400; font-size: .82em; color: var(--mid); }
