/* =========================================================================
   Golden Fishery Limited — reconstructed site styles
   Hand-authored from the original brand system (Poppins/Roboto, ocean teal).
   ========================================================================= */

:root {
  /* Brand palette (from original :root) */
  --primary: #005f73;
  /* Same hue/saturation as the original #0a9396, darkened to clear 4.5:1 against
     the white button label (#0a9396 was 3.73:1 — an AA failure on :hover). */
  --primary-hover: #098386;
  --accent: #e63946;   /* red   */
  --accent2: #ffb703;  /* amber */
  --accent3: #e76f51;  /* coral */
  --accent4: #2a9d8f;  /* green-teal */

  --ink: #001219;         /* dark text */
  --muted: #52606b;       /* body gray — darkened from #6c757d for AA contrast */
  --muted-on-dark: #b9c3c7;

  --bg-dark: #001219;
  --bg-light: #f0fdf9;
  --bg-medium: #d1f7eb;
  --surface: #ffffff;
  --border: #dfe6e4;

  --on-primary: #ffffff;

  --font-head: "Poppins", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Roboto", ui-sans-serif, system-ui, sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 18, 25, .06), 0 1px 3px rgba(0, 18, 25, .08);
  --shadow-md: 0 4px 6px -1px rgba(0, 18, 25, .08), 0 2px 4px -2px rgba(0, 18, 25, .08);
  --shadow-lg: 0 12px 24px -6px rgba(0, 18, 25, .12), 0 6px 10px -6px rgba(0, 18, 25, .10);
  --shadow-xl: 0 24px 48px -12px rgba(0, 18, 25, .22);

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2rem);

  /* Fluid type scale (~1.25 ratio) */
  --step--1: clamp(0.83rem, 0.79rem + 0.2vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3:  clamp(1.85rem, 1.5rem + 1.7vw, 2.75rem);
  --step-4:  clamp(2.2rem, 1.7rem + 2.5vw, 3.5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  /* Z-index scale */
  --z-header: 100;
  --z-menu: 200;
  --z-overlay: 300;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* Keeps <picture> out of the layout so the existing `<parent> img` rules below
   (.hero__bg, .pcard__media, .split__media) still resolve against the real parent. */
picture { display: contents; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

button, input, textarea { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -100px;
  background: var(--primary);
  color: #fff;
  padding: .65rem 1.1rem;
  border-radius: var(--radius-sm);
  z-index: var(--z-overlay);
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3.5rem, 2rem + 7vw, 6.5rem); }
.section--light { background: var(--bg-light); }
.section--medium { background: var(--bg-medium); }
.section--dark { background: var(--bg-dark); color: #fff; }

.section-head {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.section-head h2 {
  font-size: var(--step-3);
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-head p {
  font-size: var(--step-1);
  color: var(--muted);
  line-height: 1.6;
}
.section--dark .section-head h2 { color: #fff; }
.section--dark .section-head p { color: var(--muted-on-dark); }

.eyebrow {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--step--1);
  padding: .45rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.eyebrow--amber { background: var(--accent2); color: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1;
  padding: .95rem 1.6rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color .2s var(--ease-out),
              color .2s var(--ease-out),
              transform .2s var(--ease-out),
              box-shadow .2s var(--ease-out);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-lg); }

.btn--amber { background: var(--accent2); color: var(--ink); box-shadow: var(--shadow-md); }
.btn--amber:hover { background: var(--accent3); color: #fff; }

.btn--white { background: #fff; color: var(--primary); box-shadow: var(--shadow-md); }
.btn--white:hover { background: #eef7f5; }

.btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--ghost:hover { background: var(--bg-light); }

.btn--lg { padding: 1.15rem 2rem; font-size: var(--step-1); }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}
.brand img { height: 60px; width: auto; }
@media (min-width: 1024px) { .brand img { height: 72px; } }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
}
/* Never let a nav label break across two lines — flex would otherwise squeeze
   items below their content width. Matters most for :lang(so), whose labels are
   noticeably longer than the English ones. */
.nav-desktop a { white-space: nowrap; }
.nav-desktop a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--ink);
  padding: .4rem 0;
  position: relative;
  transition: color .2s var(--ease-out);
}
/* Somali labels are longer, so the desktop nav needs more room before it can
   replace the burger menu, and a tighter gap once it does. */
html:lang(so) .nav-desktop { display: none; }
@media (min-width: 1200px) {
  html:lang(so) .nav-desktop {
    display: flex;
    gap: clamp(.75rem, 1.2vw, 1.25rem);
    font-size: var(--step--1);
  }
}
.nav-desktop a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-out);
}
.nav-desktop a:not(.btn):hover { color: var(--primary); }
.nav-desktop a:not(.btn):hover::after { transform: scaleX(1); }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
/* Somali keeps the burger until its wider desktop-nav breakpoint. */
@media (min-width: 1024px) and (max-width: 1199.98px) {
  html:lang(so) .menu-toggle { display: inline-flex; }
}

.nav-mobile {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s var(--ease-out);
}
.nav-mobile[data-open="true"] { grid-template-rows: 1fr; }
.nav-mobile > div { overflow: hidden; }
.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding-bottom: 1rem;
}
.nav-mobile a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 500;
  padding: .75rem .25rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile .btn { margin-top: .75rem; }
@media (min-width: 1024px) { .nav-mobile { display: none; } }
@media (min-width: 1024px) and (max-width: 1199.98px) {
  html:lang(so) .nav-mobile { display: grid; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg,
    var(--bg-dark) 0%,
    rgba(0, 18, 25, .92) 40%,
    rgba(0, 18, 25, .55) 100%);
}
.hero__inner { padding-block: clamp(4rem, 2rem + 12vw, 9rem); }
.hero__content { max-width: 48rem; }
.hero h1 {
  font-size: var(--step-4);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero h1 .accent { color: var(--accent2); }
.hero__sub {
  font-size: var(--step-1);
  color: #e6edeb;
  line-height: 1.55;
  max-width: 40rem;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  font-size: var(--step--1);
  color: #cfd8d6;
}
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__trust i { color: var(--accent4); }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--accent4);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--step--1);
  padding: .5rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.wave svg { width: 100%; height: clamp(40px, 5vw, 70px); }
.wave--top { top: -1px; bottom: auto; transform: rotate(180deg); }

/* ---------- Feature cards ---------- */
.grid { display: grid; gap: clamp(1.25rem, 1rem + 1.5vw, 2rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.feature {
  background: var(--surface);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.section--light .feature { background: #fff; }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.icon-badge {
  width: 60px; height: 60px;
  border-radius: var(--radius-pill);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.bg-primary { background: var(--primary); }
.bg-accent  { background: var(--accent); }
.bg-accent2 { background: var(--accent2); color: var(--ink) !important; }
.bg-accent3 { background: var(--accent3); }
.bg-accent4 { background: var(--accent4); }
.feature h3 { font-size: var(--step-1); color: var(--ink); margin-bottom: .65rem; }
.feature p { color: var(--muted); line-height: 1.6; }

/* ---------- Product preview cards ---------- */
.pcard {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pcard__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.tag {
  position: absolute;
  top: .85rem; right: .85rem;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--step--1);
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.tag--amber { background: var(--accent2); color: var(--ink); }
.tag--primary { background: var(--primary); }
.tag--red { background: var(--accent); }
.pcard__body { padding: clamp(1.25rem, 1rem + 1vw, 1.6rem); display: flex; flex-direction: column; gap: .85rem; flex: 1; }
.pcard__body h3, .pcard__body h4 { font-size: var(--step-1); color: var(--ink); }
.pcard__body p { color: var(--muted); font-size: var(--step-0); line-height: 1.55; }
.pcard__meta { display: inline-flex; align-items: center; gap: .5rem; font-size: var(--step--1); color: var(--muted); }
.pcard__meta i { color: var(--accent4); }
.pcard .btn { margin-top: auto; }

/* ---------- Steps ---------- */
.steps { position: relative; }
.steps__line {
  display: none;
}
@media (min-width: 1024px) {
  .steps__grid { position: relative; }
  .steps__line {
    display: block;
    position: absolute;
    top: 48px; left: 16%; right: 16%;
    height: 3px;
    background: var(--bg-medium);
    z-index: 0;
  }
}
.step { position: relative; z-index: 1; text-align: center; }
.step__num {
  width: 96px; height: 96px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.25rem;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.g-1 { background: linear-gradient(135deg, var(--primary), var(--accent4)); }
.g-2 { background: linear-gradient(135deg, var(--accent4), var(--accent2)); }
.g-3 { background: linear-gradient(135deg, var(--accent2), var(--accent3)); }
.step__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
}
.section--light .step__card { background: #fff; }
.step__card .icon-badge { margin-inline: auto; }
.step__card h3 { font-size: var(--step-1); color: var(--ink); margin-bottom: .6rem; }
.step__card p { color: var(--muted); }

/* ---------- Split (image + content) ---------- */
.split {
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}
.split h2 { font-size: var(--step-3); color: var(--ink); margin: 1rem 0 1rem; }
.split .lead { font-size: var(--step-0); color: var(--muted); margin-bottom: 1.5rem; line-height: 1.7; }
.reverse .split__media { order: -1; }
@media (min-width: 900px) { .reverse .split__media { order: 1; } }

.float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: .85rem 1.15rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.float-badge--tl { top: 1.25rem; left: 1.25rem; }
.float-badge--br { bottom: -1.25rem; right: 1.25rem; }
.float-badge .icon-badge { width: 44px; height: 44px; font-size: 1.1rem; margin: 0; }
.float-badge small { color: var(--muted); font-size: .78rem; display: block; }
.float-badge strong { color: var(--ink); font-family: var(--font-head); }

/* Point list */
.points { display: grid; gap: 1.35rem; }
.point { display: flex; gap: 1rem; align-items: flex-start; }
.point .icon-badge { width: 48px; height: 48px; font-size: 1.15rem; border-radius: var(--radius); margin: 0; flex-shrink: 0; }
.point :is(h3, h4) { font-size: var(--step-0); color: var(--ink); margin-bottom: .35rem; }
.point p { color: var(--muted); font-size: var(--step-0); }

/* Spec list (product detail) */
.specs { display: grid; gap: .85rem; margin: 1.25rem 0 1.5rem; }
.spec { display: flex; gap: .75rem; align-items: flex-start; }
.spec i { color: var(--accent4); margin-top: .25rem; }
.spec b { color: var(--ink); font-family: var(--font-head); font-weight: 600; }
.spec span { color: var(--muted); }

/* Mini stats */
.ministat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ministat .num { font-family: var(--font-head); font-weight: 700; font-size: var(--step-3); line-height: 1; margin-bottom: .35rem; }
.ministat .num.p { color: var(--primary); }
.ministat .num.g { color: var(--accent4); }
.ministat .lbl { font-size: var(--step--1); color: var(--muted); font-weight: 600; }

/* ---------- Feature detail panels (catalog) ---------- */
.panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  align-items: center;
  gap: 0;
}
@media (min-width: 900px) { .panel { grid-template-columns: 1fr 1fr; } }
.panel--light { background: var(--bg-light); }
.panel--medium { background: var(--bg-medium); }
.panel__text { padding: clamp(1.75rem, 1rem + 3vw, 3rem); }
.panel__text h3 { font-size: var(--step-2); color: var(--ink); margin-bottom: 1rem; }
.panel__text .lead { color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.panel__media { min-height: 320px; height: 100%; }
.panel__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.panel .media-first { order: -1; }
@media (min-width: 900px) { .panel .text-right .panel__text { order: 2; } }
.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--step--1);
  color: #fff;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.chip--amber { background: var(--accent2); color: var(--ink); }
.chip--primary { background: var(--primary); }
.panel__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------- CTA bands ---------- */
.band {
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  color: #fff;
  background: linear-gradient(120deg, var(--primary), var(--accent4));
  text-align: center;
}
.band h3 { font-size: var(--step-2); margin-bottom: .75rem; }
.band > p { font-size: var(--step-1); opacity: .92; max-width: 42rem; margin: 0 auto 2rem; }
.band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.band-quad {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
}
.quad { text-align: center; }
.quad .ring {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  font-size: 1.4rem;
}
.quad h4 { margin-bottom: .35rem; }
.quad p { font-size: var(--step--1); opacity: .9; }

/* Big stats band */
.statgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; text-align: center; }
.statgrid .num { font-family: var(--font-head); font-weight: 700; font-size: var(--step-4); line-height: 1; margin-bottom: .35rem; }
.statgrid .lbl { opacity: .9; font-size: var(--step-0); }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section--light .quote, .section .quote { background: #fff; }
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.quote__head { display: flex; align-items: center; gap: 1rem; }
.avatar {
  width: 56px; height: 56px;
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.quote__head :is(h2, h3, h4) { font-size: var(--step-0); color: var(--ink); }
.quote__head span { font-size: var(--step--1); color: var(--muted); }
.stars { color: var(--accent2); display: flex; gap: .15rem; }
.quote p { color: var(--muted); line-height: 1.65; }
.quote__tag { font-size: var(--step--1); color: var(--primary); font-weight: 600; margin-top: auto; }
.quote__tag i { margin-right: .35rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 1rem + 3vw, 3rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  margin-bottom: 1.5rem;
}
.info-card :is(h2, h3) { font-size: var(--step-1); color: var(--ink); margin-bottom: 1.5rem; }
.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.info-row:last-child { margin-bottom: 0; }
.info-row .icon-badge { width: 52px; height: 52px; border-radius: var(--radius); font-size: 1.15rem; margin: 0; flex-shrink: 0; }
.info-row :is(h3, h4) { font-size: var(--step-0); color: var(--ink); margin-bottom: .3rem; }
.info-row a { color: var(--primary); font-weight: 600; transition: color .2s var(--ease-out); }
.info-row a:hover { color: var(--accent4); }
.info-row p, .info-row .hours { color: var(--muted); font-size: var(--step-0); }
.info-row small { color: var(--muted); font-size: var(--step--1); display: block; margin-top: .2rem; }

.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
}
.form-card :is(h2, h3) { font-size: var(--step-1); color: var(--ink); margin-bottom: .5rem; }
.form-card > p { color: var(--muted); margin-bottom: 1.5rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: var(--step--1); color: var(--ink); margin-bottom: .5rem; }
.field label .opt { color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s var(--ease-out), box-shadow .2s var(--ease-out);
}
.field input::placeholder, .field textarea::placeholder { color: #8a949b; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 95, 115, .12);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { text-align: center; color: var(--muted); font-size: var(--step--1); margin-top: 1rem; }

.form-status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  font-size: var(--step--1);
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: #e3f6ef; color: #10604a; border: 1px solid #a9e2ce; }

.quick-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent4));
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
}
.quick-cta :is(h2, h3) { font-size: var(--step-1); margin-bottom: .75rem; }
.quick-cta p { opacity: .92; margin-bottom: 1.5rem; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background: var(--primary);
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.final-cta__pattern {
  position: absolute; inset: 0; z-index: -1; opacity: .10;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.final-cta .ring-lg {
  width: 84px; height: 84px;
  margin: 0 auto 1.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(4px);
  display: grid; place-items: center;
  font-size: 1.9rem;
}
.final-cta h2 { font-size: var(--step-3); margin-bottom: 1rem; }
.final-cta__sub { font-size: var(--step-1); opacity: .92; max-width: 44rem; margin: 0 auto 2.25rem; }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2.25rem; }
.final-cta__trust { display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center; font-size: var(--step-0); opacity: .9; }
.final-cta__trust span { display: inline-flex; align-items: center; gap: .5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #fff; padding-block: clamp(3rem, 2rem + 4vw, 4rem); }
.footer-grid {
  display: grid;
  gap: clamp(2rem, 1rem + 3vw, 3rem);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 3rem;
}
.footer-brand img { height: 68px; margin-bottom: 1.25rem; }
.footer-brand p { color: var(--muted-on-dark); margin-bottom: 1.5rem; max-width: 30ch; }
.socials { display: flex; gap: .75rem; }
.socials a {
  width: 42px; height: 42px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  display: grid; place-items: center;
  color: #fff;
  transition: background-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.socials a:hover { background: var(--accent4); transform: translateY(-2px); }
.site-footer h3 { font-family: var(--font-head); font-size: var(--step-0); margin-bottom: 1.1rem; color: #fff; }
.footer-links { display: grid; gap: .75rem; }
.footer-links a, .footer-contact li { color: var(--muted-on-dark); transition: color .2s var(--ease-out); display: flex; align-items: flex-start; gap: .6rem; }
.footer-links a:hover { color: var(--accent2); }
.footer-contact { display: grid; gap: 1rem; }
.footer-contact i { color: var(--accent2); margin-top: .25rem; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-on-dark);
  font-size: var(--step--1);
}
.footer-bottom nav { display: flex; gap: 1.5rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Utilities ---------- */
.mt-band { margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem); }
.center { text-align: center; }
.stack-sm { display: flex; flex-wrap: wrap; gap: .75rem; }
@media (max-width: 560px) { .btn--lg { width: 100%; } .hero__cta .btn, .band__actions .btn, .final-cta__actions .btn { width: 100%; } }

/* ---------- Nav active state ---------- */
.nav-desktop a[aria-current="page"]:not(.btn) { color: var(--primary); }
.nav-desktop a[aria-current="page"]:not(.btn)::after { transform: scaleX(1); }
.nav-mobile a[aria-current="page"]:not(.btn) { color: var(--primary); }

/* ---------- Sub-page banner ---------- */
.page-banner {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.page-banner__bg { position: absolute; inset: 0; z-index: -2; }
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .32; }
.page-banner::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, var(--bg-dark) 10%, rgba(0,18,25,.85) 60%, rgba(0,18,25,.6) 100%);
}
.page-banner__inner { padding-block: clamp(3rem, 2rem + 6vw, 5.5rem); }
.page-banner h1 { font-size: var(--step-4); margin-bottom: 1rem; max-width: 20ch; }
.page-banner p { font-size: var(--step-1); color: #dfe8e6; max-width: 52ch; line-height: 1.55; }

.breadcrumb { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; font-size: var(--step--1); color: #b9c3c7; margin-bottom: 1.25rem; }
.breadcrumb a { color: #cfd8d6; transition: color .2s var(--ease-out); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb [aria-current="page"] { color: var(--accent2); }
.breadcrumb .sep { opacity: .5; }

/* ---------- Prose / long-form ---------- */
.prose { max-width: 68ch; }
.prose p { color: var(--muted); line-height: 1.75; margin-bottom: 1.15rem; font-size: var(--step-0); }
.prose p:last-child { margin-bottom: 0; }
.prose h2 { font-size: var(--step-2); color: var(--ink); margin: 2.5rem 0 1rem; }
.prose h2:first-child { margin-top: 0; }
.lead-para { font-size: var(--step-1) !important; color: var(--ink) !important; line-height: 1.6 !important; }

/* Value cards (About: what we stand for) */
.value {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 2vw, 2rem);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
}
.value:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value h3 { display: flex; align-items: center; gap: .75rem; font-size: var(--step-1); color: var(--ink); margin-bottom: .75rem; }
.value h3 .icon-badge { width: 44px; height: 44px; font-size: 1.05rem; margin: 0; border-radius: var(--radius); flex-shrink: 0; }
.value p { color: var(--muted); line-height: 1.65; }

/* Statement list (What Makes Us Different) */
.statements { display: grid; gap: 1.25rem; max-width: 70ch; }
.statement { display: flex; gap: 1rem; align-items: flex-start; }
.statement i { color: var(--accent4); font-size: 1.25rem; margin-top: .2rem; flex-shrink: 0; }
.statement p { color: var(--muted); line-height: 1.65; }
.statement b { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

/* ---------- Product detail rows ---------- */
.product-detail {
  display: grid;
  gap: clamp(1.5rem, 1rem + 3vw, 3rem);
  align-items: center;
  padding-block: clamp(2rem, 1.5rem + 3vw, 3.5rem);
  border-bottom: 1px solid var(--border);
}
.product-detail:last-of-type { border-bottom: 0; }
@media (min-width: 900px) { .product-detail { grid-template-columns: 5fr 6fr; } .product-detail.flip .product-detail__media { order: 2; } }
.product-detail__media img { width: 100%; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; }
.product-detail h2 { font-size: var(--step-2); color: var(--ink); margin-bottom: .5rem; }
.product-detail .tagline { font-size: var(--step-1); color: var(--primary); font-family: var(--font-head); font-weight: 600; margin-bottom: 1rem; }
.product-detail .desc { color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.detail-list { display: grid; gap: .6rem; margin-bottom: 1.25rem; }
.detail-list li { display: flex; gap: .6rem; align-items: flex-start; color: var(--muted); }
.detail-list i { color: var(--accent4); margin-top: .3rem; flex-shrink: 0; }
.best-for { background: var(--bg-light); border-radius: var(--radius); padding: 1rem 1.15rem; color: var(--muted); font-size: var(--step-0); }
.best-for b { color: var(--ink); font-family: var(--font-head); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 60rem; margin-inline: auto; display: grid; gap: .85rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--primary); font-size: .8rem; transition: transform .25s var(--ease-out);
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq summary:hover { color: var(--primary); }
.faq details > div { padding: 0 1.35rem 1.25rem; color: var(--muted); line-height: 1.7; }

/* ---------- Process steps (How It Works) ---------- */
.process { display: grid; gap: clamp(1.5rem, 1rem + 2vw, 2.5rem); }
.process-step {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
}
@media (min-width: 720px) { .process-step { grid-template-columns: auto 1fr; } }
.process-step__num {
  width: 72px; height: 72px;
  border-radius: var(--radius-pill);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: #fff;
  box-shadow: var(--shadow-md);
}
.process-step h2 { font-size: var(--step-2); color: var(--ink); margin-bottom: 1rem; }
.process-row { display: grid; gap: .6rem; }
.process-row p { color: var(--muted); line-height: 1.6; }
.process-row b { color: var(--ink); font-family: var(--font-head); font-weight: 600; }

/* ---------- Motion / reveal ----------
   Content is visible by default. Only when JS is confirmed (html.js) do we
   arm the hidden->reveal transition, so no-JS / crawlers / headless never
   ship a blank section. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .btn:hover, .pcard:hover, .feature:hover, .quote:hover { transform: none; }
}
