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

:root {
  --deep:     #020a14;
  --navy:     #060d1a;
  --surface:  #091525;
  --card:     #0d1e33;
  --card-2:   #102440;
  --border:   #1a3550;
  --teal:     #00c9c9;
  --teal-dim: rgba(0,201,201,0.1);
  --teal-glow:rgba(0,201,201,0.28);
  --seafoam:  #dff0f4;
  --white:    #f0f8fc;
  --muted:    #3d6e88;
  --muted-lt: #7ab4cc;
  --font-display: 'Rubik', system-ui, sans-serif;
  --font-body:    'Nunito Sans', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max-w: 1240px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--seafoam);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--teal); color: var(--navy);
  padding: .5rem 1rem; font-size: .875rem; font-weight: 700;
  z-index: 9999; border-radius: 0 0 4px 4px; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 68px;
  background: rgba(6,13,26,0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
nav.scrolled { border-bottom-color: var(--border); background: rgba(6,13,26,0.96); }

.nav-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.nav-logo-mark {
  width: 34px; height: 34px; background: var(--teal); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; color: var(--navy); }
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  letter-spacing: .04em; color: var(--white); line-height: 1;
}
.nav-logo-text span { color: var(--teal); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .8125rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted-lt); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); }

.nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--teal); color: var(--navy);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; padding: .55rem 1.3rem; border-radius: 6px;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.nav-cta:hover { background: #33d9d9; transform: translateY(-1px); box-shadow: 0 6px 20px var(--teal-glow); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
}
.burger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: transform .3s var(--ease-out), opacity .3s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem; z-index: 199; flex-direction: column; gap: 1.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-lt); text-decoration: none; transition: color .2s;
}
.mobile-menu a:hover { color: var(--teal); }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
  padding: 88px 0 48px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.hero-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,201,201,0.09) 0%, transparent 70%);
}

.hero-fade {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--navy) 0%,
    transparent 12%,
    transparent 80%,
    var(--navy) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 1.5rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,201,201,0.08); border: 1px solid rgba(0,201,201,0.22);
  color: var(--teal); font-size: .75rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .4rem 1.1rem; border-radius: 100px; margin-bottom: 1.25rem;
  animation: fadeUp .5s var(--ease-out) both;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  font-weight: 700; line-height: 1.02; letter-spacing: -.01em;
  color: var(--white); margin-bottom: 1.5rem;
  animation: fadeUp .55s var(--ease-out) .08s both;
}
.hero-title .teal { color: var(--teal); }
.hero-title .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }

.hero-sub {
  font-size: 1.0625rem; font-weight: 300; color: var(--muted-lt);
  max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.8;
  animation: fadeUp .55s var(--ease-out) .16s both;
}

.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp .55s var(--ease-out) .24s both;
}

.hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem 2.5rem;
  margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--border);
  animation: fadeUp .55s var(--ease-out) .32s both;
}
.hero-stat {
  display: flex; align-items: center; gap: .6rem;
  font-size: .8125rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--seafoam);
}
.hero-stat svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  animation: fadeUp .55s var(--ease-out) .4s both;
}
.hero-scroll span { font-size: .625rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-lt); }
.scroll-dot {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--teal), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { opacity:0; transform:scaleY(0); transform-origin:top; }
  50%  { opacity:1; transform:scaleY(1); transform-origin:top; }
  100% { opacity:0; transform:scaleY(1); transform-origin:bottom; }
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 132px 2rem 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 45% 90% at 85% -10%, rgba(0,201,201,0.12) 0%, transparent 60%);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb {
  display: flex; gap: .5rem; align-items: center;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--muted-lt); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700; line-height: 1; letter-spacing: -.01em; color: var(--white);
  margin-bottom: 1rem;
}
.page-hero h1 span { color: var(--teal); }
.page-hero .lead { font-size: 1.0625rem; color: var(--muted-lt); max-width: 620px; line-height: 1.75; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal); color: var(--navy);
  font-family: var(--font-body); font-size: .875rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: .9rem 2.2rem; border: none; border-radius: 6px; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s; min-height: 48px;
}
.btn-primary:hover { background: #33d9d9; transform: translateY(-2px); box-shadow: 0 10px 32px var(--teal-glow); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--seafoam);
  font-family: var(--font-body); font-size: .875rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  padding: .9rem 2.2rem; border: 1px solid var(--border); border-radius: 6px;
  cursor: pointer; transition: border-color .2s, color .2s, transform .15s; min-height: 48px;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

/* ── WAVE SVG TRANSITION ── */
.wave-sep { line-height: 0; overflow: hidden; }
.wave-sep svg { display: block; width: 100%; }

/* ── USP BAR ── */
.usp-bar {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.usp-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border); max-width: var(--max-w); margin: 0 auto;
}
.usp-item {
  background: var(--surface); display: flex; align-items: center;
  gap: 1rem; padding: 1.75rem 1.5rem;
}
.usp-icon {
  flex-shrink: 0; width: 44px; height: 44px; background: var(--teal-dim);
  border: 1px solid rgba(0,201,201,0.18); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.usp-icon svg { width: 22px; height: 22px; }
.usp-label { font-size: .8125rem; font-weight: 600; color: var(--white); }
.usp-desc { font-size: .75rem; color: var(--muted-lt); margin-top: .15rem; line-height: 1.4; }

/* ── SECTIONS ── */
.section { padding: 7rem 2rem; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }

.eyebrow {
  font-size: .7rem; font-weight: 700; letter-spacing: .28em;
  text-transform: uppercase; color: var(--teal); margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1; letter-spacing: -.01em;
  color: var(--white); margin-bottom: 1.25rem;
}
.section-sub { font-size: .9375rem; color: var(--muted-lt); line-height: 1.8; max-width: 520px; }
.section-header { margin-bottom: 4rem; }

/* ── OCEAN DIVIDERS ── */
.ocean-divider {
  position: relative;
  padding: 64px 2rem;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--deep);
}
.ocean-divider-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(0,201,201,0.14) 0%, transparent 65%);
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity:.7; transform: scale(1); }
  50%      { opacity:1;  transform: scale(1.06); }
}
.ocean-divider-stripes {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    -52deg,
    transparent 0px,
    rgba(0,201,201,0.035) 1px,
    transparent 2px,
    transparent 52px
  );
}
.ocean-divider::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(
    to bottom,
    var(--navy) 0%, transparent 18%, transparent 82%, var(--navy) 100%
  );
}
.ocean-divider-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem; width: 100%;
}
.ocean-divider-text { text-align: center; }
.ocean-divider-text h2 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; letter-spacing: .03em; color: var(--white); line-height: 1;
}
.ocean-divider-text h2 span { color: var(--teal); }

.placeholder-ocean {
  width: clamp(260px, 45%, 560px); aspect-ratio: 16/9;
  border-radius: 12px; border: 1px solid rgba(0,201,201,0.15);
  background: rgba(9,21,37,0.7); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; position: relative; overflow: hidden;
}
.placeholder-ocean::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0,201,201,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,201,0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.placeholder-ocean svg { width: 48px; height: 48px; color: var(--teal); opacity: .35; position: relative; }
/* Real photo inside an ocean divider */
.ocean-divider-photo {
  position: relative; z-index: 2;
  width: clamp(280px, 52%, 640px);
  aspect-ratio: 16/10;
  object-fit: cover; object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(0,201,201,0.22);
  box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 30px rgba(0,201,201,.06);
}
.placeholder-ocean span {
  font-family: var(--font-display); font-size: .9rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted-lt); position: relative;
}

/* ── PRODUCTS ── */
#products { background: var(--navy); }

.products-tabs { display: flex; gap: .5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.tab-btn {
  background: var(--card); color: var(--muted-lt);
  border: 1px solid var(--border); border-radius: 100px;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .5rem 1.3rem; cursor: pointer; transition: all .2s;
}
.tab-btn:hover { color: var(--teal); border-color: rgba(0,201,201,0.3); }
.tab-btn.active { background: var(--teal); color: var(--navy); border-color: var(--teal); }

.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.product-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
}
.product-card:hover {
  border-color: rgba(0,201,201,0.3); transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 30px rgba(0,201,201,.07);
}
.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(0,201,201,0.07) 0%, rgba(2,10,20,0.5) 100%);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .75rem; position: relative; overflow: hidden;
}
.product-img::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0,201,201,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,201,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.product-img svg { width: 48px; height: 48px; color: var(--teal); opacity: .32; position: relative; }
.product-img-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted-lt); position: relative; }
/* Real product photo fills the image area (sits above the grid overlay) */
.product-photo {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  background: #fff;
}
/* Transparent PNG: show the whole image on the dark card (no white tile, no crop) */
.product-photo.png {
  object-fit: contain; background: transparent; padding: .9rem;
}
.product-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  background: var(--teal); color: var(--navy); padding: .25rem .65rem; border-radius: 4px;
}
.product-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .75rem; }
.product-cat { font-size: .65rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--teal); }
.product-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; letter-spacing: .02em; color: var(--white); line-height: 1.1; }
.product-desc { font-size: .875rem; color: var(--muted-lt); line-height: 1.65; flex: 1; }
.product-specs { display: flex; flex-direction: column; gap: .35rem; padding: 1rem 0; border-top: 1px solid var(--border); }
.spec-row { display: flex; justify-content: space-between; font-size: .75rem; }
.spec-row dt { color: var(--muted-lt); }
.spec-row dd { color: var(--white); font-weight: 600; }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.product-price { font-size: 1.25rem; font-weight: 700; color: var(--white); }
.product-price small { font-size: .75rem; color: var(--muted-lt); font-weight: 400; }
.btn-add {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--teal-dim); color: var(--teal);
  border: 1px solid rgba(0,201,201,0.22);
  font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .5rem 1.05rem; border-radius: 6px; cursor: pointer; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-add:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }

/* ── WHY ── */
#why { background: var(--surface); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 2rem; }
.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: var(--teal-dim); border: 1px solid rgba(0,201,201,0.18);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-top: 2px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-body h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: .35rem; }
.feature-body p { font-size: .875rem; color: var(--muted-lt); line-height: 1.7; }
.feature-visual { position: relative; }
.feature-visual-main {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(145deg, rgba(0,201,201,0.05) 0%, rgba(2,10,20,0.5) 100%);
  border: 1px solid rgba(0,201,201,0.1); border-radius: 18px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; position: relative; overflow: hidden;
}
.feature-visual-main::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0,201,201,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,201,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.feature-visual-main svg { width: 64px; height: 64px; color: var(--teal); opacity: .25; position: relative; }
.feature-visual-main span { font-family: var(--font-display); font-size: 1rem; letter-spacing: .15em; color: var(--muted-lt); position: relative; }
.feature-visual-float {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 52%; aspect-ratio: 1;
  background: var(--card-2); border: 1px solid rgba(0,201,201,0.18); border-radius: 14px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .5rem; padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 20px rgba(0,201,201,.06);
}
.feature-visual-float svg { width: 28px; height: 28px; color: var(--teal); }
.fvf-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--white); }
.fvf-label { font-size: .65rem; color: var(--muted-lt); letter-spacing: .15em; text-transform: uppercase; text-align: center; }

/* ── LOCAL FITTING (West Cornwall) ── */
#fitting { background: var(--navy); }
.fitting-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4.5rem; align-items: center; }
.fitting-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,201,201,0.08); border: 1px solid rgba(0,201,201,0.22);
  color: var(--teal); font-size: .7rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 100px; margin-bottom: 1.25rem;
}
.fitting-badge svg { width: 14px; height: 14px; }
.fitting-list { display: flex; flex-direction: column; gap: 1.1rem; margin: 2rem 0; }
.fitting-row { display: flex; gap: .85rem; align-items: flex-start; }
.fitting-row svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.fitting-row p { font-size: .9rem; color: var(--muted-lt); line-height: 1.6; }
.fitting-row strong { color: var(--white); font-weight: 600; }
.fitting-note {
  font-size: .8125rem; color: var(--muted); line-height: 1.6;
  padding: 1rem 1.25rem; background: var(--card); border: 1px solid var(--border);
  border-left: 2px solid var(--teal); border-radius: 0 8px 8px 0;
}

/* Map card */
.map-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem; overflow: hidden;
}
.map-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(0,201,201,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,201,201,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-card h3 {
  position: relative; font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--white);
  margin-bottom: 1.25rem; display: flex; align-items: center; gap: .5rem;
}
.map-card h3 svg { width: 16px; height: 16px; color: var(--teal); }
.map-embed {
  position: relative; width: 100%; aspect-ratio: 4/3;
  border-radius: 10px; overflow: hidden; border: 1px solid var(--border);
}
.map-embed iframe {
  width: 100%; height: 100%; border: 0; display: block;
  filter: grayscale(0.3) invert(0.9) hue-rotate(160deg) contrast(0.9) brightness(0.9);
}
.map-legend {
  position: relative; display: flex; align-items: center; gap: .5rem;
  margin-top: 1.25rem; font-size: .75rem; color: var(--muted-lt);
}
.map-legend svg { width: 15px; height: 15px; color: var(--teal); flex-shrink: 0; }

/* ── CONTACT ── */
#contact { background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info p { font-size: .9375rem; color: var(--muted-lt); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail { display: flex; align-items: center; gap: .75rem; font-size: .875rem; color: var(--muted-lt); margin-bottom: .75rem; }
.contact-detail svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-lt); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card); border: 1px solid var(--border); color: var(--seafoam);
  font-family: var(--font-body); font-size: .9375rem; padding: .8rem 1rem;
  border-radius: 8px; outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--card); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,201,0.1); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ── CTA BAND (reusable) ── */
.cta-band {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 5.5rem 2rem; text-align: center;
}
.cta-band .eyebrow { display: block; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.05; }
.cta-band p { color: var(--muted-lt); max-width: 500px; margin: 0 auto 2.25rem; line-height: 1.75; }

/* ── TEASER GRID (home featured) ── */
.teaser-foot { text-align: center; margin-top: 3rem; }

/* ── POLICIES ── */
#policy { background: var(--navy); }
.policy-nav { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3.5rem; justify-content: center; }
.policy-nav a {
  background: var(--card); border: 1px solid var(--border); border-radius: 100px;
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: .5rem 1.3rem; color: var(--muted-lt); text-decoration: none; transition: all .2s;
}
.policy-nav a:hover { color: var(--teal); border-color: rgba(0,201,201,.3); }
.policy-block { max-width: 780px; margin: 0 auto; }
.policy-section { padding: 2.75rem 0; border-bottom: 1px solid var(--border); scroll-margin-top: 96px; }
.policy-section:last-child { border-bottom: none; }
.policy-section > h2 {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 600;
  color: var(--white); margin-bottom: 1.25rem; display: flex; align-items: center; gap: .65rem;
}
.policy-section > h2 svg { width: 24px; height: 24px; color: var(--teal); flex-shrink: 0; }
.policy-section h3 { font-size: 1.0625rem; color: var(--white); margin: 1.75rem 0 .5rem; }
.policy-section p, .policy-section li { font-size: .9375rem; color: var(--muted-lt); line-height: 1.8; }
.policy-section p { margin-bottom: 1rem; }
.policy-section ul { padding-left: 1.3rem; margin-bottom: 1rem; }
.policy-section li { margin-bottom: .45rem; }
.policy-section a { color: var(--teal); text-decoration: none; }
.policy-section a:hover { text-decoration: underline; }
.policy-updated { font-size: .8125rem; color: var(--muted); font-style: italic; margin-top: .5rem; }

/* ── FOOTER ── */
footer { background: var(--deep); border-top: 1px solid var(--border); padding: 3rem 2rem 4rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; flex-direction: column; gap: 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { font-size: .8125rem; color: var(--muted-lt); margin-top: .75rem; line-height: 1.65; }
.footer-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .8125rem; color: var(--muted-lt); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .75rem; color: var(--muted-lt); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  #hero-canvas { display: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .usp-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: 1fr; gap: 3rem; }
  .feature-visual { display: none; }
  .fitting-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .section { padding: 4.5rem 1.25rem; }
  .page-hero { padding: 110px 1.25rem 48px; }
  .products-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .ocean-divider { padding: 40px 1.25rem; }
  .hero-stats { gap: 1.25rem 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 1.5rem; align-items: center; }
}

/* ── CART BUTTON (in nav) ── */
.cart-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-left: .25rem;
  background: transparent; border: 1px solid var(--border); border-radius: 8px;
  color: var(--seafoam); cursor: pointer; transition: border-color .2s, color .2s;
}
.cart-btn:hover { border-color: var(--teal); color: var(--teal); }
.cart-btn svg { width: 19px; height: 19px; }
.cart-count {
  position: absolute; top: -7px; right: -7px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--teal); color: var(--navy);
  font-size: .65rem; font-weight: 700; line-height: 18px; text-align: center;
  border-radius: 100px; display: none;
}
.cart-count.show { display: block; }

/* ── CART DRAWER ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(2,10,20,.6); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 301;
  width: min(420px, 100%); height: 100%;
  background: var(--surface); border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s var(--ease-out);
  box-shadow: -20px 0 60px rgba(0,0,0,.4);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem; border-bottom: 1px solid var(--border);
}
.cart-head h2 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600;
  letter-spacing: .04em; color: var(--white);
}
.cart-close {
  width: 36px; height: 36px; background: none; border: none; cursor: pointer;
  color: var(--muted-lt); display: flex; align-items: center; justify-content: center;
  border-radius: 6px; transition: color .2s, background .2s;
}
.cart-close:hover { color: var(--white); background: var(--card); }
.cart-close svg { width: 20px; height: 20px; }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { color: var(--muted-lt); text-align: center; padding: 3rem 1rem; font-size: .9375rem; }

.cart-item { display: flex; gap: 1rem; align-items: flex-start; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 8px;
  background: var(--teal-dim); border: 1px solid rgba(0,201,201,.2);
  display: flex; align-items: center; justify-content: center; color: var(--teal);
}
.cart-item-thumb svg { width: 24px; height: 24px; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: .875rem; font-weight: 600; color: var(--white); margin-bottom: .25rem; }
.cart-item-price { font-size: .8125rem; color: var(--muted-lt); }
.cart-item-controls { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.qty-btn {
  width: 26px; height: 26px; border: 1px solid var(--border); background: var(--card);
  color: var(--seafoam); border-radius: 6px; cursor: pointer; font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s;
}
.qty-btn:hover { border-color: var(--teal); color: var(--teal); }
.qty-val { font-size: .875rem; font-weight: 600; color: var(--white); min-width: 22px; text-align: center; }
.cart-item-remove {
  margin-left: auto; background: none; border: none; cursor: pointer; color: var(--muted);
  font-size: .75rem; letter-spacing: .05em; text-transform: uppercase; transition: color .2s;
}
.cart-item-remove:hover { color: #ff6b6b; }

.cart-foot { padding: 1.5rem; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.25rem; }
.cart-total span:first-child { font-size: .875rem; color: var(--muted-lt); letter-spacing: .05em; text-transform: uppercase; }
.cart-total span:last-child { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--white); }
.cart-foot .btn-primary { width: 100%; justify-content: center; }
.cart-foot-note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: .85rem; line-height: 1.5; }

/* product add-to-cart button — reuse .btn-add but make it a real button */
button.btn-add { font-family: var(--font-body); }
.btn-add.added { background: var(--teal); color: var(--navy); border-color: var(--teal); }

/* ── SHOP CONTROLS (search + sort) ── */
.shop-controls { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-bottom: 1.5rem; }
.shop-search { position: relative; flex: 1 1 260px; min-width: 220px; }
.shop-search input {
  width: 100%; background: var(--card); border: 1px solid var(--border); color: var(--seafoam);
  font-family: var(--font-body); font-size: .95rem; padding: .75rem 1rem .75rem 2.7rem;
  border-radius: 8px; outline: none; transition: border-color .2s, box-shadow .2s;
}
.shop-search input::placeholder { color: var(--muted); }
.shop-search input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,201,.1); }
.shop-search svg { position: absolute; left: .95rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--muted-lt); pointer-events: none; }
.shop-sort { display: flex; align-items: center; gap: .5rem; }
.shop-sort label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-lt); }
.shop-sort select {
  background: var(--card); border: 1px solid var(--border); color: var(--seafoam);
  font-family: var(--font-body); font-size: .9rem; padding: .7rem 2.2rem .7rem 1rem;
  border-radius: 8px; cursor: pointer; outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237ab4cc' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .8rem center;
}
.shop-sort select:focus { border-color: var(--teal); }
.shop-noresults { grid-column: 1 / -1; text-align: center; color: var(--muted-lt); padding: 3rem 1rem; font-size: .95rem; }

/* Listing card as a full link */
.product-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.product-card .product-body { gap: .5rem; }
.product-link .btn-add { cursor: pointer; }

/* ── PRODUCT DETAIL PAGE (PDP) ── */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; max-width: var(--max-w); margin: 0 auto; }
.pdp-media { position: sticky; top: 92px; }
.pdp-img { aspect-ratio: 1 / 1; border-radius: 16px; border: 1px solid var(--border); }
.pdp-img .product-photo { border-radius: 16px; }
.pdp-info { display: flex; flex-direction: column; }
.pdp-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: .35rem 0 1.1rem; }
.pdp-info .product-desc { font-size: .95rem; line-height: 1.75; margin-bottom: 1.5rem; flex: none; }
.pdp-info .product-options { border-top: 1px solid var(--border); }
.pdp-price { margin: 1.4rem 0 1.25rem; }
.pdp-price .product-price { font-size: 2rem; font-weight: 700; color: var(--white); }
.pdp-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.pdp-actions .btn-ghost, .pdp-actions .btn-primary { flex: 1 1 160px; justify-content: center; }
@media (max-width: 768px) {
  .pdp { grid-template-columns: 1fr; gap: 2rem; }
  .pdp-media { position: static; }
}

/* ── PRODUCT VARIATIONS (display / wheel / dropout selects) ── */
.product-options { display: flex; flex-direction: column; gap: .6rem; padding: 1rem 0; border-top: 1px solid var(--border); }
.product-options label {
  display: flex; flex-direction: column; gap: .25rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-lt);
}
.product-options select {
  background: var(--card-2); border: 1px solid var(--border); color: var(--seafoam);
  font-family: var(--font-body); font-size: .85rem; font-weight: 400; letter-spacing: normal; text-transform: none;
  padding: .55rem .7rem; border-radius: 6px; outline: none; cursor: pointer;
  transition: border-color .2s, box-shadow .2s; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237ab4cc' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .7rem center; padding-right: 2rem;
}
.product-options select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(0,201,201,.1); }
.product-options option { background: var(--card-2); }
.product-ship-note { font-size: .68rem; color: var(--muted); line-height: 1.4; margin-top: .35rem; }
.cart-item-opts { font-size: .72rem; color: var(--muted); margin-top: .15rem; }

/* ── UK-STOCK HIGHLIGHT ── */
/* Card gets a subtle teal ring; badge sits top-LEFT (the existing
   Best Seller / Bundle badge sits top-right, so they don't clash). */
.product-card.uk-stock { border-color: rgba(0,201,201,.45); }
.product-card.uk-stock .product-img { box-shadow: inset 0 2px 0 var(--teal); }
.stock-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(0,201,201,.16); color: var(--teal);
  border: 1px solid rgba(0,201,201,.4);
  padding: .25rem .55rem; border-radius: 4px;
  backdrop-filter: blur(4px);
}
.stock-badge svg { width: 11px; height: 11px; }
