/* =========================================================
   3H MARINA — Nautical Premium
   ========================================================= */

:root,
[data-theme='light'] {
  /* Surfaces — fresh blue-gray / white */
  --color-bg: #eef3f8;
  --color-surface: #ffffff;
  --color-surface-2: #f7fbfe;
  --color-surface-offset: #e2eaf2;
  --color-surface-offset-2: #d4e0ec;
  --color-divider: #d3dee9;
  --color-border: #bccaDB;

  /* Text — deep navy */
  --color-text: #0a2240;
  --color-text-muted: #46607a;
  --color-text-faint: #8195a8;
  --color-text-inverse: #f4f8fc;

  /* Accents — brand blue (from the 3H mark) */
  --color-navy: #0a2240;
  --color-navy-deep: #061730;
  --color-navy-soft: #163b5c;
  --color-brass: #1b9fe3;
  --color-brass-bright: #2aa9e8;
  --color-brass-soft: #7fc6ef;
  --color-brass-highlight: #d6ecf9;

  /* Roles */
  --color-primary: var(--color-brass);
  --color-primary-hover: var(--color-brass-bright);

  --shadow-sm: 0 1px 2px oklch(0.2 0.04 230 / 0.10);
  --shadow-md: 0 6px 20px oklch(0.2 0.04 230 / 0.14);
  --shadow-lg: 0 18px 48px oklch(0.2 0.04 230 / 0.20);
}

[data-theme='dark'] {
  --color-bg: #061525;
  --color-surface: #0b2036;
  --color-surface-2: #0f2742;
  --color-surface-offset: #0a1c2e;
  --color-surface-offset-2: #102a44;
  --color-divider: #15324f;
  --color-border: #1f4368;

  --color-text: #e6eef5;
  --color-text-muted: #95a8bc;
  --color-text-faint: #5a7088;
  --color-text-inverse: #0a2240;

  --color-navy: #e6eef5;
  --color-navy-deep: #061525;
  --color-navy-soft: #15324f;
  --color-brass: #3db5f0;
  --color-brass-bright: #5cc1f3;
  --color-brass-soft: #1b9fe3;
  --color-brass-highlight: #112a44;

  --color-primary: var(--color-brass-bright);
  --color-primary-hover: var(--color-brass);

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.4);
  --shadow-md: 0 6px 20px oklch(0 0 0 / 0.5);
  --shadow-lg: 0 18px 48px oklch(0 0 0 / 0.6);
}

/* Type scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.25vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  --text-2xl: clamp(2.25rem, 1.4rem + 3.5vw, 4rem);
  --text-3xl: clamp(2.75rem, 1rem + 6vw, 6rem);

  --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;

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;

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

  --content-narrow: 680px;
  --content-default: 1080px;
  --content-wide: 1280px;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Switzer', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  hanging-punctuation: first last;
  scroll-padding-top: var(--space-20);
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  text-wrap: balance;
  line-height: 1.08;
  font-weight: 600;
}
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }

::selection { background: var(--color-brass); color: var(--color-navy-deep); }
:focus-visible { outline: 2px solid var(--color-brass-bright); outline-offset: 3px; border-radius: var(--radius-sm); }

a, button, [role='button'], input, textarea, select {
  transition: color var(--transition-interactive), background var(--transition-interactive),
              border-color var(--transition-interactive), box-shadow var(--transition-interactive),
              transform var(--transition-interactive);
}

button { cursor: pointer; background: none; border: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ---- Layout helpers ---- */
.container { width: 100%; max-width: var(--content-wide); margin-inline: auto; padding-inline: clamp(var(--space-6), 5vw, var(--space-16)); }
.section { padding-block: clamp(var(--space-16), 8vw, var(--space-32)); }
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-brass-bright);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }

/* ---- Header ---- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive), background var(--transition-interactive);
}
.header--scrolled { border-bottom-color: var(--color-divider); box-shadow: var(--shadow-sm); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); height: 72px; }

.brand { display: flex; align-items: center; gap: var(--space-3); color: var(--color-text); text-decoration: none; }
.brand__mark { width: 30px; height: 30px; color: var(--color-brass-bright); flex-shrink: 0; }
.brand__badge { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #000; border: 1px solid var(--color-brass); box-shadow: 0 0 0 3px var(--color-surface); }
.brand__badge img { width: 100%; height: 100%; object-fit: cover; }
.brand__name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 600; letter-spacing: 0.04em; line-height: 1; }
.brand__name span { color: var(--color-brass-bright); }

/* ---- Category quick-links ---- */
.cat-links { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; margin-block: clamp(var(--space-8), 4vw, var(--space-12)); }
.cat-link { display: inline-flex; align-items: center; gap: var(--space-2); padding: 0.6rem 1.3rem; border-radius: var(--radius-full); border: 1px solid var(--color-border); background: var(--color-surface); color: var(--color-text); text-decoration: none; font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.cat-link:hover { border-color: var(--color-brass); color: var(--color-brass); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.cat-link__count { font-size: var(--text-xs); color: var(--color-text-faint); font-weight: 500; }

.nav { display: flex; align-items: center; gap: var(--space-8); }
.nav__links { display: flex; align-items: center; gap: var(--space-8); }
.nav__link { color: var(--color-text-muted); text-decoration: none; font-size: var(--text-sm); letter-spacing: 0.04em; font-weight: 500; position: relative; }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--color-brass-bright); transition: width var(--transition-interactive); }
.nav__link:hover { color: var(--color-text); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: var(--space-4); }

.theme-toggle {
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--color-border); border-radius: var(--radius-full);
  color: var(--color-text-muted); background: var(--color-surface);
}
.theme-toggle:hover { color: var(--color-brass-bright); border-color: var(--color-brass-soft); }

.menu-btn { display: none; width: 38px; height: 38px; place-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-full); color: var(--color-text); background: var(--color-surface); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.85rem 1.6rem; border-radius: var(--radius-full);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
}
.btn--primary { background: var(--color-navy); color: var(--color-text-inverse); border-color: var(--color-navy); }
[data-theme='dark'] .btn--primary { background: var(--color-brass-bright); color: var(--color-navy-deep); border-color: var(--color-brass-bright); }
.btn--primary:hover { background: var(--color-navy-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
[data-theme='dark'] .btn--primary:hover { background: var(--color-brass); }
.btn--ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost:hover { border-color: var(--color-brass-soft); color: var(--color-brass-bright); transform: translateY(-2px); }

/* ---- Hero ---- */
.hero { position: relative; min-height: 92dvh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(in oklab, transparent 0%, color-mix(in oklab, var(--color-navy-deep) 35%, transparent) 50%, color-mix(in oklab, var(--color-navy-deep) 82%, transparent) 100%);
}
.hero__inner { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); width: 100%; }
.hero__eyebrow { color: #0a2240; font-weight: 700; margin-bottom: var(--space-6); text-shadow: 0 0 10px rgba(255,255,255,0.85), 0 0 2px rgba(255,255,255,0.9); }
.hero__title {
  color: #f2f7fc; font-size: var(--text-3xl); font-weight: 600; letter-spacing: 0.01em;
  max-width: 14ch; text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero__title em { font-style: italic; color: var(--color-brass-bright); }
.hero__lede { color: #d6e3ee; font-size: var(--text-lg); max-width: 48ch; margin-top: var(--space-6); font-weight: 300; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-10); }
.hero__scroll { position: absolute; bottom: var(--space-8); right: clamp(var(--space-6), 5vw, var(--space-16)); color: #d6e3ee; font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: var(--space-3); opacity: 0.85; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--color-brass-bright), transparent); }

/* ---- Marquee / status strip ---- */
.status {
  background: var(--color-navy);
  color: #e9e2d0;
  border-block: 1px solid var(--color-navy-soft);
}
[data-theme='dark'] .status { background: var(--color-surface-offset); }
.status__inner { display: flex; align-items: center; justify-content: center; gap: var(--space-4); flex-wrap: wrap; padding-block: var(--space-5); text-align: center; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-brass-bright); box-shadow: 0 0 0 4px color-mix(in oklab, var(--color-brass-bright) 25%, transparent); flex-shrink: 0; }
.status__text { font-size: var(--text-sm); letter-spacing: 0.08em; }
.status__text strong { color: var(--color-brass-bright); font-weight: 600; }

/* ---- Section heads ---- */
.section-head { max-width: var(--content-default); margin-bottom: clamp(var(--space-12), 5vw, var(--space-20)); }
.section-head__title { font-size: var(--text-2xl); margin-top: var(--space-5); }
.section-head__lede { color: var(--color-text-muted); font-size: var(--text-lg); margin-top: var(--space-4); max-width: 58ch; font-weight: 300; }

/* ---- Collections ---- */
.collections__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(var(--space-5), 2vw, var(--space-8)); }
.product {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface);
  border: 1px solid var(--color-divider); box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.product__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-surface-offset); }
.product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.16,1,0.3,1); }
.product:hover .product__media img { transform: scale(1.05); }
.product__badge {
  position: absolute; top: var(--space-4); left: var(--space-4);
  width: 44px; height: 44px; border-radius: 50%;
  background: color-mix(in oklab, var(--color-navy-deep) 70%, transparent);
  border: 1px solid var(--color-brass-soft); display: grid; place-items: center;
  color: var(--color-brass-bright);
}
.product__badge svg { width: 24px; height: 24px; }
.product__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-2); flex-grow: 1; }
.product__cat { font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-brass-bright); font-weight: 600; }
.product__name { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; }
.product__desc { color: var(--color-text-muted); font-size: var(--text-sm); flex-grow: 1; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-4); }
.product__price { font-size: var(--text-base); font-weight: 600; color: var(--color-text); }
.product__inquire { font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--color-brass); text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.product__inquire:hover { color: var(--color-brass-bright); }

/* ---- Story ---- */
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-10), 5vw, var(--space-24)); align-items: center; }
.story__media { display: flex; flex-direction: column; gap: var(--space-5); }
.story__founders-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.story__founders-row .story__founder-caption { font-size: var(--text-sm); padding: var(--space-4) var(--space-2) var(--space-3); }
.story__founders-row .story__founder-caption span { font-size: 0.65rem; letter-spacing: 0.08em; }
.story__founder-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; box-shadow: var(--shadow-lg); }
.story__founder-photo--lg { aspect-ratio: 4 / 5; margin-bottom: var(--space-2); }
.story__founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story__founder-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px color-mix(in oklab, var(--color-navy-deep) 30%, transparent); pointer-events: none; }
.story__founder-caption { position: absolute; bottom: 0; left: 0; right: 0; margin: 0; padding: var(--space-5) var(--space-6); color: #f2f7fc; font-family: var(--font-display); font-size: var(--text-base); text-align: center; background: linear-gradient(to top, color-mix(in oklab, var(--color-navy-deep) 85%, transparent), transparent); z-index: 2; }
.story__founder-caption span { display: block; font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-brass-soft); margin-top: var(--space-1); }
.story__media > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: block; }
.story__content .section-head { margin-bottom: var(--space-8); }
.story__content .section-head__title { font-size: var(--text-2xl); }
.story__copy p { color: var(--color-text-muted); font-size: var(--text-base); margin-top: var(--space-5); font-weight: 300; }
.story__copy p strong { color: var(--color-text); font-weight: 600; }
.story__signature { margin-top: var(--space-10); display: flex; align-items: center; gap: var(--space-4); }
.story__signature .mark { width: 40px; height: 40px; color: var(--color-brass-bright); }
.story__signature div { font-family: var(--font-display); font-size: var(--text-lg); }
.story__signature small { display: block; font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-text-muted); }

/* ---- Horizon ---- */
.horizon { position: relative; color: #e6eef5; overflow: hidden; }
.horizon__media { position: absolute; inset: 0; z-index: -2; }
.horizon__media img { width: 100%; height: 100%; object-fit: cover; }
.horizon::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(in oklab, color-mix(in oklab, var(--color-navy-deep) 88%, transparent), color-mix(in oklab, var(--color-navy-deep) 72%, transparent)); }
.horizon .section-head__title { color: #f2f7fc; }
.horizon .section-head__lede { color: #c2d4e6; }
.horizon .eyebrow { color: var(--color-brass-bright); }
.horizon__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(var(--space-5), 2vw, var(--space-8)); margin-top: clamp(var(--space-10), 4vw, var(--space-16)); }
.horizon-card {
  background: color-mix(in oklab, var(--color-navy) 55%, transparent);
  border: 1px solid color-mix(in oklab, var(--color-brass-soft) 40%, transparent);
  border-radius: var(--radius-lg); padding: var(--space-8); backdrop-filter: blur(6px);
}
.horizon-card__num { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-brass-bright); margin-bottom: var(--space-4); }
.horizon-card__title { font-family: var(--font-display); font-size: var(--text-xl); color: #f2f7fc; margin-bottom: var(--space-3); }
.horizon-card__desc { color: #c2d4e6; font-size: var(--text-sm); font-weight: 300; }
.horizon-card__tag { display: inline-block; margin-top: var(--space-5); font-size: var(--text-xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-brass-bright); border: 1px solid color-mix(in oklab, var(--color-brass-soft) 50%, transparent); padding: 0.3rem 0.7rem; border-radius: var(--radius-full); }

.horizon__igfa { display: flex; gap: var(--space-6); align-items: center; margin-top: clamp(var(--space-10), 4vw, var(--space-16)); padding: var(--space-10); border: 1px solid color-mix(in oklab, var(--color-brass-soft) 45%, transparent); border-radius: var(--radius-lg); background: color-mix(in oklab, var(--color-brass-highlight) 12%, color-mix(in oklab, var(--color-navy) 40%, transparent)); backdrop-filter: blur(6px); max-width: var(--content-default); }
.horizon__igfa-mark { width: 56px; height: 56px; flex-shrink: 0; display: grid; place-items: center; color: var(--color-brass-bright); border: 1px solid color-mix(in oklab, var(--color-brass-soft) 50%, transparent); border-radius: 50%; }
.horizon__igfa-mark svg { width: 30px; height: 30px; }
.horizon__igfa-text h3 { font-family: var(--font-display); font-size: var(--text-lg); color: #f2f7fc; margin-bottom: var(--space-3); }
.horizon__igfa-text p { color: #c2d4e6; font-size: var(--text-base); font-weight: 300; margin: 0; }
.horizon__igfa-tag { display: inline-block; margin-left: var(--space-2); font-size: var(--text-xs); letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-brass-bright); border: 1px solid color-mix(in oklab, var(--color-brass-soft) 50%, transparent); padding: 0.2rem 0.6rem; border-radius: var(--radius-full); vertical-align: middle; }
@media (max-width: 760px) { .horizon__igfa { flex-direction: column; text-align: center; } }

/* ---- Contact ---- */
.contact__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(var(--space-10), 5vw, var(--space-20)); align-items: start; }
.contact__title { font-size: var(--text-2xl); margin-top: var(--space-5); }
.contact__lede { color: var(--color-text-muted); margin-top: var(--space-4); font-weight: 300; }
.contact__email { display: inline-flex; align-items: center; gap: var(--space-3); margin-top: var(--space-8); font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-text); text-decoration: none; border-bottom: 1px solid var(--color-brass-soft); padding-bottom: 4px; }
.contact__email:hover { color: var(--color-brass-bright); }
.contact__email svg { width: 22px; height: 22px; color: var(--color-brass-bright); }

.contact__card { background: var(--color-surface); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); padding: var(--space-10); box-shadow: var(--shadow-md); }
.contact__list { display: flex; flex-direction: column; gap: var(--space-6); }
.contact__item { display: flex; gap: var(--space-4); align-items: flex-start; }
.contact__item .icon { width: 38px; height: 38px; flex-shrink: 0; display: grid; place-items: center; border-radius: 50%; background: var(--color-surface-offset); color: var(--color-brass); }
.contact__item .icon svg { width: 18px; height: 18px; }
.contact__item small { font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-muted); display: block; margin-bottom: 2px; }
.contact__item p { font-size: var(--text-base); color: var(--color-text); }
.contact__note { margin-top: var(--space-8); padding-top: var(--space-6); border-top: 1px solid var(--color-divider); font-size: var(--text-xs); color: var(--color-text-faint); line-height: 1.6; }

/* ---- Footer ---- */
.footer { background: var(--color-navy-deep); color: #c9d4dc; padding-block: var(--space-20) var(--space-12); }
[data-theme='dark'] .footer { background: #050d16; }
.footer__inner { display: flex; flex-wrap: wrap; gap: var(--space-12); justify-content: space-between; align-items: flex-start; }
.footer__brand .brand__name { color: #f2f7fc; }
.footer__tagline { color: #8fa0ad; font-size: var(--text-sm); margin-top: var(--space-4); max-width: 34ch; font-weight: 300; }
.footer__cols { display: flex; gap: clamp(var(--space-10), 6vw, var(--space-20)); flex-wrap: wrap; }
.footer__col h4 { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-brass-bright); margin-bottom: var(--space-4); font-weight: 600; }
.footer__col a { display: block; color: #c9d4dc; text-decoration: none; font-size: var(--text-sm); margin-bottom: var(--space-3); font-weight: 300; }
.footer__col a:hover { color: var(--color-brass-bright); }
.footer__bottom { margin-top: var(--space-16); padding-top: var(--space-8); border-top: 1px solid color-mix(in oklab, #c9d4dc 18%, transparent); display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: space-between; align-items: center; font-size: var(--text-xs); color: #6f8390; }

/* ---- Where We Fish ---- */
.fish__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-6), 3vw, var(--space-12)); margin-top: clamp(var(--space-10), 4vw, var(--space-16)); }
.fish-card { background: var(--color-surface-2); border: 1px solid var(--color-divider); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.fish-card__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--color-surface-offset); }
.fish-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.16,1,0.3,1); }
.fish-card:hover .fish-card__media img { transform: scale(1.05); }
.fish-card__body { padding: var(--space-8); }
.fish-card__tag { display: inline-block; font-size: var(--text-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-brass-bright); font-weight: 600; margin-bottom: var(--space-3); }
.fish-card__title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; margin-bottom: var(--space-3); }
.fish-card__desc { color: var(--color-text-muted); font-size: var(--text-base); font-weight: 300; }
.fish__igfa { margin-top: clamp(var(--space-10), 4vw, var(--space-16)); display: flex; gap: var(--space-6); align-items: center; justify-content: center; max-width: var(--content-default); margin-inline: auto; padding: var(--space-8); border: 1px solid var(--color-brass-soft); border-radius: var(--radius-lg); background: color-mix(in oklab, var(--color-brass-highlight) 35%, transparent); }
.fish__igfa-mark { width: 44px; height: 44px; flex-shrink: 0; display: grid; place-items: center; color: var(--color-brass); }
.fish__igfa-mark svg { width: 36px; height: 36px; }
.fish__igfa p { color: var(--color-text); font-size: var(--text-base); font-weight: 300; max-width: 60ch; margin: 0; }
.fish__igfa strong { color: var(--color-text); font-weight: 600; }
@media (max-width: 760px) { .fish__grid { grid-template-columns: 1fr; } .fish__igfa { flex-direction: column; text-align: center; } }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .collections__grid { grid-template-columns: repeat(2, 1fr); }
  .horizon__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .header__actions .btn { display: none; }
  .menu-btn { display: grid; }
  .hero__title { max-width: none; }
  .hero__scroll { display: none; }
  .story__grid, .contact__grid { grid-template-columns: 1fr; }
  .story__media { order: -1; }
  .story__founders-row { grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }
  .story__founder-photo { aspect-ratio: 3 / 4; }
  .story__founder-caption { font-size: var(--text-sm); padding: var(--space-3) var(--space-4); }
  .story__media > img { aspect-ratio: 4 / 3; }
  .collections__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .signup__form { flex-direction: column; }
  .signup__form input[type="email"] { width: 100%; }
  .donate__grid { grid-template-columns: 1fr; }
  .donate-partners { grid-template-columns: 1fr; }
}

/* ---- Give Back / Donation Section ---- */
.ms-banner { background: var(--color-navy-deep); color: #f2f7fc; text-align: center; padding-block: clamp(var(--space-16), 6vw, var(--space-24)); }
.ms-banner__head { max-width: 640px; margin: 0 auto var(--space-14); display: flex; flex-direction: column; align-items: center; gap: var(--space-4); }
.ms-banner__icon { width: 56px; height: 56px; color: var(--color-brass-bright); }
.ms-banner .eyebrow { color: var(--color-brass-bright); }
.ms-banner__title { font-family: var(--font-display); font-size: var(--text-2xl); color: #f2f7fc; }
.ms-banner__lede { color: #c2d4e6; font-size: var(--text-base); font-weight: 300; line-height: 1.7; max-width: 52ch; }
.ms-banner__lede strong { color: #f2f7fc; font-weight: 600; }

.donate__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-6); max-width: 960px; margin-inline: auto; }
.donate-card { text-align: left; background: color-mix(in oklab, var(--color-navy) 50%, var(--color-navy-deep)); border: 1px solid rgba(27,159,227,0.25); border-radius: var(--radius-lg); padding: var(--space-8); display: flex; flex-direction: column; gap: var(--space-4); position: relative; }
.donate-card__badge { position: absolute; top: var(--space-4); right: var(--space-5); font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-brass-soft); }
.donate-card__icon { width: 48px; height: 48px; color: var(--color-brass-bright); flex-shrink: 0; }
.donate-card__title { font-family: var(--font-display); font-size: var(--text-xl); color: #f2f7fc; margin: 0; }
.donate-card__desc { color: #c2d4e6; font-size: var(--text-sm); font-weight: 300; line-height: 1.7; margin: 0; }
.donate-card__desc strong { color: #f2f7fc; font-weight: 600; }
.donate-card__progress { margin-top: var(--space-2); }
.donate-card__progress-label { display: flex; justify-content: space-between; font-size: var(--text-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-brass-soft); margin-bottom: var(--space-2); }
.donate-card__progress-bar { height: 8px; background: color-mix(in oklab, var(--color-navy) 60%, transparent); border-radius: var(--radius-full); overflow: hidden; }
.donate-card__progress-fill { height: 100%; background: linear-gradient(90deg, var(--color-brass), var(--color-brass-bright)); border-radius: var(--radius-full); transition: width 800ms ease; }
.donate-card__vision { display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-2); }
.donate-card__vision-item { font-size: var(--text-sm); color: var(--color-brass-soft); font-weight: 400; }
.donate-card__btn { margin-top: var(--space-4); text-align: center; }
.donate-card__note { font-size: var(--text-xs); color: rgba(194,212,230,0.6); margin: 0; line-height: 1.5; }

.donate-partners-head { text-align: center; margin-top: var(--space-12); margin-bottom: var(--space-6); }
.donate-partners-head span { font-family: var(--font-body); font-size: var(--text-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-brass-soft); }
.donate-partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); max-width: 1120px; margin-inline: auto; }
.donate-partner { display: flex; flex-direction: column; gap: var(--space-3); padding: var(--space-6); background: color-mix(in oklab, var(--color-navy) 30%, var(--color-navy-deep)); border: 1px solid rgba(27,159,227,0.18); border-radius: var(--radius-md); text-decoration: none; color: inherit; transition: border-color var(--transition-interactive), transform var(--transition-interactive); }
.donate-partner:hover { border-color: rgba(27,159,227,0.45); transform: translateY(-2px); }
.donate-partner__icon { width: 36px; height: 36px; color: var(--color-brass-bright); flex-shrink: 0; }
.donate-partner__title { font-family: var(--font-display); font-size: var(--text-base); color: #f2f7fc; margin: 0; }
.donate-partner__desc { color: #a8c0d8; font-size: var(--text-sm); font-weight: 300; line-height: 1.6; margin: 0; }
.donate-partner__link { font-family: var(--font-body); font-size: var(--text-sm); font-weight: 600; color: var(--color-brass-bright); margin-top: auto; }

/* ---- FAQ ---- */
.faq { display: flex; flex-direction: column; gap: var(--space-3); }
.faq__item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: border-color var(--transition-interactive); }
.faq__item[open] { border-color: var(--color-brass); }
.faq__item summary { padding: var(--space-5) var(--space-6); font-family: var(--font-display); font-size: var(--text-lg); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; color: var(--color-text); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-body); font-size: var(--text-xl); font-weight: 300; color: var(--color-brass-bright); transition: transform 200ms; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__item p { padding: 0 var(--space-6) var(--space-6); color: var(--color-text-muted); font-size: var(--text-base); font-weight: 300; line-height: 1.7; margin: 0; }
.faq__item p a { color: var(--color-brass-bright); }

/* ---- Email Signup ---- */
.signup { margin-top: var(--space-10); padding: var(--space-8); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.signup__title { font-family: var(--font-display); font-size: var(--text-xl); margin-bottom: var(--space-2); }
.signup__desc { color: var(--color-text-muted); font-size: var(--text-sm); font-weight: 300; line-height: 1.6; margin-bottom: var(--space-5); }
.signup__form { display: flex; gap: var(--space-3); align-items: stretch; }
.signup__form input[type="email"] { padding: var(--space-3) var(--space-4); background: var(--color-surface-2); border: 1px solid var(--color-border); border-radius: var(--radius-md); color: var(--color-text); font-family: var(--font-body); font-size: var(--text-base); }
.signup__form input[type="email"]:focus { outline: none; border-color: var(--color-brass); }
.signup__fineprint { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-3); }

/* Mobile nav drawer */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; pointer-events: none; }
.drawer[data-open="true"] { visibility: visible; pointer-events: auto; }
.drawer__backdrop { position: absolute; inset: 0; background: color-mix(in oklab, var(--color-navy-deep) 55%, transparent); opacity: 0; transition: opacity 300ms; }
.drawer[data-open="true"] .drawer__backdrop { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(82vw, 360px); background: var(--color-surface); border-left: 1px solid var(--color-divider); padding: var(--space-8); transform: translateX(100%); transition: transform 350ms cubic-bezier(0.16,1,0.3,1); display: flex; flex-direction: column; gap: var(--space-6); }
.drawer[data-open="true"] .drawer__panel { transform: none; }
.drawer__links { display: flex; flex-direction: column; gap: var(--space-6); margin-top: var(--space-8); }
.drawer__link { font-family: var(--font-display); font-size: var(--text-xl); color: var(--color-text); text-decoration: none; }
.drawer__close { align-self: flex-end; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: var(--radius-full); color: var(--color-text); }

/* Partner cards responsive (after base rule) */
@media (max-width: 1024px) { .donate-partners { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .donate-partners { grid-template-columns: 1fr; } }

.story__signature small { line-height: 1.9; margin-top: var(--space-1); }
