:root,
[data-theme="light"] {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'DM Mono', 'SFMono-Regular', Consolas, monospace;

  --text-xs: clamp(0.75rem, 0.72rem + 0.18vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.84rem + 0.22vw, 1rem);
  --text-base: clamp(1rem, 0.97rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.7vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.3vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  --text-3xl: clamp(2.75rem, 1.5rem + 4vw, 5rem);
  --text-hero: clamp(3.25rem, 1.5rem + 6vw, 6.75rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --color-bg: #f4f8f8;
  --color-surface: #ffffff;
  --color-surface-2: #edf4f4;
  --color-surface-offset: #e4eeee;
  --color-surface-offset-2: #dae7e8;
  --color-surface-dynamic: #cfe0e1;
  --color-divider: rgba(15, 45, 60, 0.1);
  --color-border: rgba(15, 45, 60, 0.14);

  --color-text: #112733;
  --color-text-muted: rgba(17, 39, 51, 0.72);
  --color-text-faint: rgba(17, 39, 51, 0.5);
  --color-text-inverse: #f4f8f8;

  --color-primary: #5d97a7;
  --color-primary-hover: #4f8391;
  --color-primary-active: #406d79;
  --color-primary-highlight: rgba(93, 151, 167, 0.16);

  --color-navy: #0f2d3c;
  --color-navy-soft: #153849;
  --color-navy-deep: #0a2130;
  --color-success: #2f6d45;
  --color-warning: #8d5f1c;
  --color-error: #9a405f;

  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.75rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(10, 33, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(10, 33, 48, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 33, 48, 0.12);

  --content-narrow: 720px;
  --content-default: 1100px;
  --content-wide: 1240px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --color-bg: #0b1d29;
  --color-surface: #102736;
  --color-surface-2: #153142;
  --color-surface-offset: #18394a;
  --color-surface-offset-2: #1e4253;
  --color-surface-dynamic: #295569;
  --color-divider: rgba(244, 248, 248, 0.1);
  --color-border: rgba(244, 248, 248, 0.14);

  --color-text: #eff7f7;
  --color-text-muted: rgba(239, 247, 247, 0.74);
  --color-text-faint: rgba(239, 247, 247, 0.52);
  --color-text-inverse: #102736;

  --color-primary: #6aa8b7;
  --color-primary-hover: #7db8c6;
  --color-primary-active: #4f8f9e;
  --color-primary-highlight: rgba(106, 168, 183, 0.16);

  --color-navy: #0f2d3c;
  --color-navy-soft: #153849;
  --color-navy-deep: #071722;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.36);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --color-bg: #0b1d29;
    --color-surface: #102736;
    --color-surface-2: #153142;
    --color-surface-offset: #18394a;
    --color-surface-offset-2: #1e4253;
    --color-surface-dynamic: #295569;
    --color-divider: rgba(244, 248, 248, 0.1);
    --color-border: rgba(244, 248, 248, 0.14);
    --color-text: #eff7f7;
    --color-text-muted: rgba(239, 247, 247, 0.74);
    --color-text-faint: rgba(239, 247, 247, 0.52);
    --color-text-inverse: #102736;
    --color-primary: #6aa8b7;
    --color-primary-hover: #7db8c6;
    --color-primary-active: #4f8f9e;
    --color-primary-highlight: rgba(106, 168, 183, 0.16);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.36);
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}
img, picture, svg, video, canvas { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
ul[role="list"], ol[role="list"] { list-style: none; }
::selection { background: rgba(106, 168, 183, 0.24); }
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: -3rem;
  z-index: 1000;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
}
.skip-link:focus { top: var(--space-4); }

.container {
  width: min(100% - 2rem, var(--content-default));
  margin-inline: auto;
}
.container-wide {
  width: min(100% - 2rem, var(--content-wide));
  margin-inline: auto;
}
.container-narrow {
  width: min(100% - 2rem, var(--content-narrow));
  margin-inline: auto;
}
.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-24));
}
.section-tight { padding-block: clamp(var(--space-10), 7vw, var(--space-16)); }
.section-light { background: var(--color-bg); }
.section-white { background: var(--color-surface); }
.section-dark {
  background: linear-gradient(180deg, rgba(15,45,60,0.93) 0%, rgba(7,23,34,0.96) 100%), url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?auto=format&fit=crop&w=1800&q=80') center/cover fixed no-repeat;
  color: var(--color-text-inverse);
}
.section-dark .eyebrow,
.section-dark .section-copy,
.section-dark .stat-label,
.section-dark .card-copy,
.section-dark .feature-copy,
.section-dark .footer-copy { color: rgba(244, 248, 248, 0.78); }

.grid { display: grid; gap: var(--space-6); }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
p { max-width: 70ch; }
.section-heading { max-width: 14ch; margin-bottom: var(--space-4); }
.section-copy { color: var(--color-text-muted); max-width: 62ch; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(11, 29, 41, 0.82);
  border-bottom: 1px solid rgba(244, 248, 248, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  min-height: 5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
}
.brand img { height: 3rem; width: auto; }
.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  border-radius: 0;
  background: transparent !important;
  mix-blend-mode: screen;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
}
.brand-tag {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.site-header .brand-name { color: #ffffff; }
.site-header .brand-tag { color: rgba(255,255,255,0.68); }
.landing-header .brand-name { color: #ffffff; }
.landing-header .brand-tag { color: rgba(255,255,255,0.68); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.nav-menu a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(244, 248, 248, 0.84);
}
.nav-menu a:hover,
.nav-menu a:focus-visible { color: #fff; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.theme-toggle,
.mobile-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(244, 248, 248, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 248, 248, 0.88);
}
.mobile-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: 3rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform var(--transition-interactive), background var(--transition-interactive), color var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--color-primary-hover); }
.btn-secondary {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1px solid rgba(244, 248, 248, 0.22);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(244, 248, 248, 0.08);
}
.btn-ghost {
  color: var(--color-text);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.btn-ghost:hover,
.btn-ghost:focus-visible { background: var(--color-surface-2); }
.btn-block { width: 100%; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--color-text-inverse);
  overflow: clip;
  background:
    linear-gradient(rgba(15,45,60,0.68), rgba(10,33,48,0.75)),
    url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}
.hero, .hero * { color: #ffffff; }
.hero .eyebrow { color: #7ECDC6; }
.hero .hero-subhead { color: rgba(255,255,255,0.88); }
.hero .hero-card { color: #ffffff; }
.hero .hero-card p { color: rgba(255,255,255,0.82); }
.hero .hero-list li { color: rgba(255,255,255,0.88); }
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -8rem auto;
  width: clamp(14rem, 24vw, 22rem);
  aspect-ratio: 1;
  background: url('../images/icon.png') center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-12);
  align-items: end;
}
.hero-copy { padding-block: clamp(7rem, 16vw, 10rem) var(--space-10); }
.hero-title {
  max-width: 11ch;
  margin-bottom: var(--space-5);
}
.hero-subhead {
  font-size: var(--text-lg);
  color: rgba(244, 248, 248, 0.82);
  max-width: 38rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.hero-card {
  background: rgba(12, 29, 41, 0.6);
  border: 1px solid rgba(244, 248, 248, 0.14);
  backdrop-filter: blur(16px);
  padding: var(--space-6);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-3);
}
.hero-card p {
  color: rgba(244, 248, 248, 0.78);
  margin-bottom: var(--space-4);
}
.hero-list { list-style: none; display: grid; gap: var(--space-3); }
.hero-list li {
  display: flex;
  align-items: start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(244, 248, 248, 0.88);
}
.hero-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: rgba(106, 168, 183, 0.18);
  color: var(--color-primary);
  font-size: 0.82rem;
  flex: 0 0 auto;
}

.value-strip {
  margin-top: calc(var(--space-16) * -0.5);
  position: relative;
  z-index: 5;
}
.value-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
}
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}
.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  display: grid;
  place-items: center;
  color: var(--color-primary);
}
.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.value-item p { color: var(--color-text-muted); font-size: var(--text-sm); }

.cards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-5); margin-top: var(--space-10); }
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-interactive), border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(93, 151, 167, 0.4);
  box-shadow: var(--shadow-md);
}
.section-dark .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(244, 248, 248, 0.12);
}
.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  color: var(--color-primary);
}
.card h3 { margin-bottom: var(--space-3); }
.card-copy { color: var(--color-text-muted); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  margin-top: var(--space-8);
}
.text-link:hover { color: var(--color-primary-hover); }

.feature-list {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}
.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-divider);
}
.feature-check {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--color-primary-highlight);
  display: grid;
  place-items: center;
  color: var(--color-primary);
  margin-top: 0.15rem;
}
.feature-copy strong { display: block; margin-bottom: 0.15rem; }
.feature-copy span { color: var(--color-text-muted); }

.market-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.market-badge {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 248, 248, 0.12);
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(244, 248, 248, 0.92);
}

.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.stat-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  padding: var(--space-6);
}
.section-dark .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(244, 248, 248, 0.1);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.stat-label { color: var(--color-text-muted); }

.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}
.section-dark .testimonial {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(244, 248, 248, 0.1);
}
.testimonial blockquote {
  font-size: var(--text-lg);
  line-height: 1.45;
  margin-bottom: var(--space-4);
  max-width: 22ch;
}
.testimonial cite {
  display: block;
  color: var(--color-text-muted);
  font-style: normal;
  font-size: var(--text-sm);
}
.note {
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.reach-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-8);
}
.map-card,
.info-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}
.map-card svg { width: 100%; height: auto; }
.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-5);
}
.region-list span {
  display: inline-flex;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.cta-band {
  padding-block: clamp(var(--space-10), 7vw, var(--space-16));
  background: linear-gradient(120deg, rgba(15,45,60,0.95) 0%, rgba(18,55,72,0.95) 100%), url('https://images.unsplash.com/photo-1527004013197-933b977e9def?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: var(--color-text-inverse);
}
.cta-box {
  display: flex;
  justify-content: space-between;
  gap: var(--space-8);
  align-items: center;
}
.cta-box h2 { max-width: 12ch; }
.cta-box p { color: rgba(244, 248, 248, 0.78); }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.site-footer {
  background: #081722;
  color: rgba(244, 248, 248, 0.82);
  padding-top: var(--space-16);
  padding-bottom: var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: var(--space-6);
}
.footer-heading {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: var(--space-4);
  color: rgba(244, 248, 248, 0.54);
}
.footer-links { display: grid; gap: var(--space-3); }
.footer-links a:hover { color: #fff; }
.social-links { display: flex; gap: var(--space-3); }
.social-links a {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid rgba(244, 248, 248, 0.14);
  display: grid;
  place-items: center;
}
.footer-bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(244, 248, 248, 0.08);
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: rgba(244, 248, 248, 0.58);
}
.footer-bottom a:hover { color: #fff; }

.page-hero,
.inner-hero {
  padding-top: calc(5rem + var(--space-16));
  padding-bottom: var(--space-16);
  background: linear-gradient(180deg, rgba(15,45,60,0.88) 0%, rgba(15,45,60,0.78) 100%), url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  color: var(--color-text-inverse);
}
.page-hero p,
.inner-hero p { color: rgba(244, 248, 248, 0.78); }

/* About page hero */
body.page-about .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.85) 0%, rgba(15,45,60,0.75) 100%),
    url('https://images.unsplash.com/photo-1544551763-46a013bb70d5?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}

/* Services page hero */
body.page-services .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.85) 0%, rgba(15,45,60,0.75) 100%),
    url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}

/* Contact page hero */
body.page-contact .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.85) 0%, rgba(15,45,60,0.75) 100%),
    url('https://images.unsplash.com/photo-1583212292454-1fe6229603b7?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}

/* Blog index hero */
body.page-blog .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.85) 0%, rgba(15,45,60,0.75) 100%),
    url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}

/* Submit risk hero */
body.page-submit .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.85) 0%, rgba(15,45,60,0.75) 100%),
    url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: rgba(244, 248, 248, 0.62);
}
.breadcrumbs span { opacity: 0.5; }

.content-card,
.form-shell,
.legal-shell,
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-sm);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.form-progress span {
  height: 0.45rem;
  border-radius: var(--radius-full);
  background: var(--color-surface-offset-2);
}
.form-progress span.active { background: var(--color-primary); }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 220ms ease; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}
.field,
.checkbox-group,
.summary-block { display: grid; gap: var(--space-2); }
.field.full,
.checkbox-group.full,
.summary-block.full { grid-column: 1 / -1; }
label,
.legend {
  font-size: var(--text-sm);
  font-weight: 700;
}
.input,
select,
textarea {
  width: 100%;
  min-height: 3.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 0.9rem 1rem;
}
textarea { min-height: 8rem; resize: vertical; }
.input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(93, 151, 167, 0.12);
}
.checkbox-wrap,
.radio-wrap {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  padding: var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}
.checkbox-stack,
.radio-stack { display: grid; gap: var(--space-3); }
.form-actions {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-8);
  flex-wrap: wrap;
}
.helper,
.mono-note {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}
.mono-note { font-family: var(--font-mono); }
.success-panel {
  background: rgba(47, 109, 69, 0.08);
  border: 1px solid rgba(47, 109, 69, 0.18);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-8);
  align-items: start;
}
.info-list { display: grid; gap: var(--space-4); margin-top: var(--space-6); }
.info-list li {
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-8); }
.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}
.blog-meta {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-3);
}
.blog-card h3 { margin-bottom: var(--space-3); }
.blog-card p { color: var(--color-text-muted); margin-bottom: var(--space-5); }

.article {
  padding-block: clamp(var(--space-10), 7vw, var(--space-16));
}
.article-shell {
  display: grid;
  gap: var(--space-8);
}
.article-cover {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 16 / 8;
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
}
.article-body > * + * { margin-top: var(--space-5); }
.article-body ul,
.article-body ol { padding-left: 1.25rem; display: grid; gap: var(--space-3); }
.article-body h2 { font-size: clamp(2rem, 1.5rem + 1vw, 2.75rem); margin-top: var(--space-10); }
.article-body h3 { font-size: clamp(1.5rem, 1.2rem + 0.8vw, 2rem); margin-top: var(--space-8); }
.article-callout {
  padding: var(--space-5);
  border-radius: var(--radius-xl);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
}
table { width: 100%; border-collapse: collapse; }
th, td {
  text-align: left;
  padding: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
th {
  background: var(--color-surface-2);
  font-size: var(--text-sm);
}

.wave-divider {
  width: 100%;
  height: 3rem;
  margin-top: -1px;
  color: var(--color-bg);
}

.hidden { display: none !important; }
.centered { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-6 { margin-bottom: var(--space-6); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .reach-grid,
  .contact-grid,
  .cta-box,
  .footer-grid { grid-template-columns: 1fr; }
  .cards-grid,
  .stats-grid,
  .testimonial-grid,
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    padding: var(--space-4);
    border-radius: var(--radius-xl);
    background: rgba(11, 29, 41, 0.96);
    border: 1px solid rgba(244, 248, 248, 0.1);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-3);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu.is-open { display: flex; }
  .mobile-toggle { display: inline-flex; }
  .nav-actions .btn { display: none; }
  .hero-grid,
  .value-grid,
  .cards-grid,
  .stats-grid,
  .testimonial-grid,
  .blog-grid,
  .form-grid { grid-template-columns: 1fr; }
  .form-progress { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .container,
  .container-wide,
  .container-narrow { width: min(100% - 1.25rem, var(--content-default)); }
  .hero-copy { padding-top: 7.5rem; }
  .hero-actions,
  .form-actions,
  .cta-actions { flex-direction: column; align-items: stretch; }
  .nav-inner { min-height: 4.5rem; }

/* ══════════════════════════════════════════════
   NICHE UW — CONSOLIDATED VISIBILITY OVERRIDES
   Single source of truth. Do not add more blocks.
   ══════════════════════════════════════════════ */

/* LOGO */
.brand-mark {
  width: 2.75rem; height: 2.75rem;
  object-fit: contain; border-radius: 0;
  background: transparent !important;
  mix-blend-mode: screen;
}
.site-header .brand-mark,
.landing-header .brand-mark { mix-blend-mode: normal; }
.site-header .brand-name,
.landing-header .brand-name { color: #ffffff !important; }
.site-header .brand-tag,
.landing-header .brand-tag { color: rgba(255,255,255,0.65) !important; }
.site-footer .brand-name { color: #ffffff !important; }
.site-footer .brand-tag { color: rgba(255,255,255,0.55) !important; }

/* NAV */
.nav-menu a { color: rgba(255,255,255,0.85) !important; }
.nav-menu a:hover { color: #ffffff !important; }
.nav-menu.open, .nav-menu.is-open { display: flex; }

/* HERO — homepage full-bleed */
.hero {
  background:
    linear-gradient(rgba(15,45,60,0.68), rgba(10,33,48,0.75)),
    url('../images/hero-boat-show.jpg') center/cover no-repeat;
}
.hero, .hero h1, .hero h2, .hero h3, .hero h4 { color: #ffffff !important; }
.hero p, .hero li, .hero span { color: rgba(255,255,255,0.88) !important; }
.hero .eyebrow { color: #7ECDC6 !important; }
.hero .hero-subhead { color: rgba(255,255,255,0.85) !important; }
.hero .hero-card { background: rgba(10,28,40,0.65) !important; border-color: rgba(255,255,255,0.14) !important; }
.hero .hero-card h3 { color: #ffffff !important; }
.hero .hero-card p { color: rgba(255,255,255,0.8) !important; }
.hero .hero-list li { color: rgba(255,255,255,0.88) !important; }
.hero .hero-list span { background: rgba(126,205,198,0.2) !important; color: #7ECDC6 !important; }
.hero .btn-secondary { color: #ffffff !important; border-color: rgba(255,255,255,0.35) !important; }

/* PAGE HERO — inner pages default */
.page-hero, .inner-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.88) 0%, rgba(15,45,60,0.78) 100%),
    url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}
.page-hero h1, .page-hero h2, .page-hero .section-heading,
.inner-hero h1, .inner-hero h2 { color: #ffffff !important; }
.page-hero p, .page-hero .section-copy,
.inner-hero p { color: rgba(255,255,255,0.85) !important; }
.page-hero .eyebrow, .inner-hero .eyebrow { color: #7ECDC6 !important; }
.page-hero .breadcrumbs a, .page-hero .breadcrumbs span { color: rgba(255,255,255,0.55) !important; }

/* PAGE HERO — per page unique images */
body.page-about .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.88) 0%, rgba(15,45,60,0.78) 100%),
    url('https://images.unsplash.com/photo-1605281317010-fe5ffe798166?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}
body.page-services .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.88) 0%, rgba(15,45,60,0.78) 100%),
    url('https://images.unsplash.com/photo-1540946485063-a40da27545f8?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}
body.page-contact .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.88) 0%, rgba(15,45,60,0.78) 100%),
    url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}
body.page-blog .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.88) 0%, rgba(15,45,60,0.78) 100%),
    url('https://images.unsplash.com/photo-1506953823976-52e1fdc0149a?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}
body.page-submit .page-hero {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.88) 0%, rgba(15,45,60,0.78) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=2400&q=85') center/cover no-repeat;
}

/* SECTION DARK */
.section-dark {
  background:
    linear-gradient(180deg, rgba(15,45,60,0.95) 0%, rgba(7,23,34,0.97) 100%),
    url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?auto=format&fit=crop&w=1800&q=80') center/cover fixed no-repeat;
  color: rgba(244,248,248,0.9) !important;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.section-dark .section-heading { color: #eff7f7 !important; }
.section-dark p, .section-dark .section-copy,
.section-dark .card-copy { color: rgba(244,248,248,0.82) !important; }
.section-dark .eyebrow { color: #7ECDC6 !important; }
.section-dark .stat-number { color: #ffffff !important; }
.section-dark .stat-label { color: rgba(244,248,248,0.72) !important; }
.section-dark .card { background: rgba(255,255,255,0.06) !important; border-color: rgba(244,248,248,0.12) !important; }
.section-dark .card h3 { color: #ffffff !important; }
.section-dark .card p { color: rgba(244,248,248,0.8) !important; }
.section-dark .market-badge { color: rgba(244,248,248,0.9) !important; background: rgba(255,255,255,0.06) !important; border-color: rgba(244,248,248,0.15) !important; }
.section-dark .testimonial blockquote { color: #ffffff !important; }
.section-dark .testimonial cite { color: rgba(244,248,248,0.65) !important; }
.section-dark .feature-check { background: rgba(126,205,198,0.18) !important; color: #7ECDC6 !important; }
.section-dark .feature-copy strong { color: #ffffff !important; }
.section-dark .feature-copy span { color: rgba(244,248,248,0.8) !important; }
.section-dark .note { color: rgba(244,248,248,0.65) !important; }
.section-dark .info-panel { background: rgba(255,255,255,0.05) !important; border-color: rgba(244,248,248,0.1) !important; }
.section-dark .info-panel h2, .section-dark .info-panel h3 { color: #ffffff !important; }
.section-dark .info-panel p { color: rgba(244,248,248,0.8) !important; }
.section-dark .info-panel .eyebrow { color: #7ECDC6 !important; }

/* CTA BAND */
.cta-band {
  background:
    linear-gradient(120deg, rgba(15,45,60,0.96) 0%, rgba(18,55,72,0.96) 100%),
    url('https://images.unsplash.com/photo-1527004013197-933b977e9def?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.cta-band h1, .cta-band h2, .cta-band h3 { color: #ffffff !important; }
.cta-band p { color: rgba(255,255,255,0.82) !important; }
.cta-band .eyebrow { color: #7ECDC6 !important; }
.cta-band .btn-secondary { color: #ffffff !important; border-color: rgba(255,255,255,0.35) !important; }

/* SECTION WHITE & LIGHT — all dark text */
.section-white, .section-light { color: #1A2332; }
.section-white h1, .section-white h2, .section-white h3, .section-white h4,
.section-white .section-heading,
.section-light h1, .section-light h2, .section-light h3, .section-light h4,
.section-light .section-heading { color: #1A2332 !important; }
.section-white p, .section-white .section-copy, .section-white li,
.section-light p, .section-light .section-copy, .section-light li { color: #5A6A7A !important; }
.section-white .eyebrow, .section-light .eyebrow { color: #4B8796 !important; }
.section-white .card, .section-light .card { background: #ffffff !important; border-color: rgba(15,45,60,0.1) !important; }
.section-white .card h3, .section-light .card h3 { color: #1A2332 !important; }
.section-white .card p, .section-light .card p { color: #5A6A7A !important; }
.section-white .card .mono-note, .section-light .card .mono-note { color: #6A7A8A !important; }
.section-white .stat-number, .section-light .stat-number { color: #0F2D3C !important; }
.section-white .stat-label, .section-light .stat-label { color: #5A6A7A !important; }
.section-white .feature-check, .section-light .feature-check { background: rgba(75,135,150,0.12) !important; color: #4B8796 !important; }
.section-white .feature-copy strong, .section-light .feature-copy strong { color: #0F2D3C !important; }
.section-white .feature-copy span, .section-light .feature-copy span { color: #4A5A6A !important; }
.section-white .region-list span, .section-light .region-list span { color: #1A2332 !important; background: #edf4f4 !important; border-color: rgba(15,45,60,0.12) !important; }
.section-white .note, .section-light .note { color: #5A6A7A !important; }
.section-white .testimonial, .section-light .testimonial { background: #ffffff !important; border-color: rgba(15,45,60,0.1) !important; }
.section-white .testimonial blockquote, .section-light .testimonial blockquote { color: #1A2332 !important; }
.section-white .testimonial cite, .section-light .testimonial cite { color: #5A6A7A !important; }
.section-white .market-badge, .section-light .market-badge { color: #1A2332 !important; background: #f4f8f8 !important; border-color: rgba(15,45,60,0.15) !important; }
.section-white .about-quote, .section-light .about-quote { color: #0F2D3C !important; }
.section-white .text-link, .section-light .text-link { color: #4B8796 !important; }
.section-white .map-card, .section-light .map-card { background: #ffffff !important; border-color: rgba(15,45,60,0.1) !important; }
.section-white .map-card h3, .section-light .map-card h3 { color: #1A2332 !important; }
.section-white .map-card p, .section-light .map-card p { color: #5A6A7A !important; }
.section-white .info-panel, .section-light .info-panel { background: #f4f8f8 !important; border-color: rgba(15,45,60,0.1) !important; }
.section-white .info-panel h2, .section-white .info-panel h3,
.section-light .info-panel h2, .section-light .info-panel h3 { color: #1A2332 !important; }
.section-white .info-panel p, .section-light .info-panel p { color: #5A6A7A !important; }
.section-white .info-panel .eyebrow, .section-light .info-panel .eyebrow { color: #4B8796 !important; }
.section-white .visual-panel h2, .section-white .visual-panel h3,
.section-light .visual-panel h2, .section-light .visual-panel h3 { color: #1A2332 !important; }
.section-white .visual-panel p, .section-light .visual-panel p { color: #5A6A7A !important; }
.section-white .visual-panel .eyebrow, .section-light .visual-panel .eyebrow { color: #4B8796 !important; }
.section-white .blog-card h3, .section-light .blog-card h3 { color: #1A2332 !important; }
.section-white .blog-card p, .section-light .blog-card p { color: #5A6A7A !important; }
.section-white .article-meta, .section-light .article-meta { color: #7A8A9A !important; }

/* VALUE STRIP */
.value-strip .value-panel { background: var(--color-surface) !important; }
.value-strip .value-item h3 { color: var(--color-text) !important; }
.value-strip .value-item p { color: var(--color-text-muted) !important; }

/* FORMS */
.form-shell, .form-shell.form-shell-wide { background: #ffffff !important; }
.form-shell h2, .form-shell .section-heading { color: #1A2332 !important; }
.form-shell p, .form-shell .section-copy { color: #5A6A7A !important; }
.form-shell .eyebrow { color: #4B8796 !important; }
label, .legend { color: #1A2332 !important; }
.input, input, select, textarea { color: #1A2332 !important; background: #ffffff !important; border-color: rgba(15,45,60,0.18) !important; }
.contact-label { color: #4B8796 !important; font-weight: 700; }
.contact-method p { color: #5A6A7A !important; }
.contact-method a { color: #4B8796 !important; }
.contact-sidebar h2, .contact-sidebar h3 { color: #1A2332 !important; }
.contact-sidebar p { color: #5A6A7A !important; }
.contact-sidebar .eyebrow { color: #4B8796 !important; }

/* FOOTER */
.site-footer { background: #081722 !important; }
.footer-heading { color: rgba(255,255,255,0.5) !important; }
.footer-links a { color: rgba(255,255,255,0.75) !important; }
.footer-links a:hover { color: #ffffff !important; }
.footer-copy { color: rgba(255,255,255,0.65) !important; }
.footer-bottom { color: rgba(255,255,255,0.5) !important; }
.footer-bottom a { color: rgba(255,255,255,0.7) !important; }

/* ══ END NICHE UW OVERRIDES ══ */
