  /* ---------- Tokens ---------- */
  :root {
    --cream: #F4ECDC;
    --cream-2: #EFE5D0;
    --cream-deep: #E8DBBE;
    --ink: #1E1A14;
    --ink-soft: #3A332A;
    --ink-mute: #6E6457;

    /* Palette: Pine (default) */
    --brand: #2D4A33;
    --brand-deep: #1F3325;
    --accent: #B8693E;
    --accent-deep: #8E4F2B;

    --line: rgba(30,26,20,0.16);
    --line-soft: rgba(30,26,20,0.08);

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Work Sans", system-ui, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, monospace;

    --maxw: 1240px;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

  /* ---------- Top bar ---------- */
  .topbar {
    background: var(--brand-deep);
    color: var(--cream);
    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .topbar-inner {
    display: flex; justify-content: space-between; align-items: center;
    height: 36px;
  }
  .topbar .meta { display: flex; gap: 22px; opacity: 0.85; }
  .topbar .meta span::before { content: "•"; margin-right: 10px; opacity: 0.5; }
  .topbar .meta span:first-child::before { display: none; }

  /* ---------- Nav ---------- */
  nav.main {
    position: sticky; top: 0; z-index: 50;
    background: var(--cream);
    border-bottom: 1px solid var(--line-soft);
    backdrop-filter: blur(6px);
  }
  nav.main .wrap {
    display: flex; align-items: center; justify-content: space-between;
    height: 78px;
  }
  .brandmark { display: flex; align-items: center; gap: 12px; }
  .brandmark .seal {
    width: 44px; height: 44px;
    background: var(--brand); color: var(--cream);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-style: italic; font-weight: 600; font-size: 22px;
    letter-spacing: -0.02em;
  }
  .brandmark .name {
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .brandmark .name small {
    display: block;
    font-family: var(--sans);
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
    margin-top: 4px;
  }
  .nav-links {
    display: flex; gap: 28px; align-items: center;
    font-size: 14px; font-weight: 500;
  }
  .nav-links a {
    color: var(--ink-soft);
    position: relative;
    padding: 4px 0;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--brand); }
  .nav-cart {
    display: flex; align-items: center; gap: 8px;
    background: var(--ink); color: var(--cream);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px; font-weight: 500;
    border: none;
    transition: background 0.2s;
  }
  .nav-cart:hover { background: var(--brand); }
  .nav-cart .count {
    background: var(--accent); color: var(--cream);
    font-size: 11px; font-weight: 600;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
  }
  .hero[data-layout="split"] {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    background: var(--cream);
    min-height: 640px;
  }
  .hero-img {
    position: absolute; inset: 0;
    background-image: url('img/aerial.jpg');
    background-size: cover; background-position: center;
  }
  .hero-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
      rgba(20,30,22,0.55) 0%,
      rgba(20,30,22,0.25) 40%,
      rgba(20,30,22,0.65) 100%);
  }
  .hero[data-layout="split"] .hero-img {
    position: relative;
    inset: auto;
  }
  .hero[data-layout="split"] .hero-img::after { display: none; }
  .hero-copy {
    position: relative;
    color: var(--cream);
    z-index: 2;
    padding: 120px 0 200px;
    max-width: 720px;
    margin: 0 auto;
  }
  .hero[data-layout="full"] .hero-copy { padding-left: 28px; padding-right: 28px; margin-left: 0; max-width: none; }
  .hero[data-layout="full"] .hero-inner { max-width: 760px; margin-left: max(28px, calc((100vw - var(--maxw)) / 2 + 28px)); }

  /* Scrim layout: full-bleed image with a low-opacity panel behind copy */
  .hero[data-layout="scrim"] .hero-copy { padding-left: 28px; padding-right: 28px; margin-left: 0; max-width: none; }
  .hero[data-layout="scrim"] .hero-inner {
    max-width: 760px;
    margin-left: max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  }
  .hero[data-layout="scrim"] .hero-title,
  .hero[data-layout="scrim"] .hero-lede,
  .hero[data-layout="scrim"] .eyebrow {
    text-shadow:
      0 2px 6px rgba(0,0,0,0.55),
      0 6px 28px rgba(0,0,0,0.45),
      0 1px 1px rgba(0,0,0,0.4);
  }
  .hero[data-layout="scrim"] .hero-img::after {
    background: linear-gradient(180deg, rgba(20,30,22,0.45) 0%, rgba(20,30,22,0.65) 100%);
  }
  .hero[data-layout="split"] {
    color: var(--ink);
  }
  .hero[data-layout="split"] .hero-copy {
    color: var(--ink);
    padding: 100px 64px 80px;
    max-width: none;
    margin: 0;
    display: flex; flex-direction: column; justify-content: center;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 22px;
    display: flex; align-items: center; gap: 14px;
  }
  .eyebrow::before {
    content: ""; width: 36px; height: 1px; background: currentColor; opacity: 0.6;
  }
  h1.hero-title {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(56px, 7.2vw, 100px);
    line-height: 0.96;
    letter-spacing: -0.02em;
    white-space: nowrap;
    margin: 0 0 28px;
  }
  h1.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
  }
  .hero[data-layout="full"] h1.hero-title em { color: #E8B27A; }
  .hero-lede {
    font-size: 18px;
    line-height: 1.55;
    max-width: 540px;
    opacity: 0.92;
    margin-bottom: 36px;
  }
  .hero-cta {
    display: flex; gap: 14px; flex-wrap: wrap;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.03em;
    border: none;
    transition: transform 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s;
  }
  .btn:hover { transform: translateY(-1px); }
  .btn-primary { background: var(--accent); color: var(--cream); }
  .btn-primary:hover { background: var(--accent-deep); }
  .btn-ghost {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(255,255,255,0.5);
  }
  .hero[data-layout="split"] .btn-ghost {
    color: var(--ink); border-color: var(--line);
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.1); }
  .hero[data-layout="split"] .btn-ghost:hover { background: var(--cream-2); }
  .btn-dark { background: var(--ink); color: var(--cream); }
  .btn-dark:hover { background: var(--brand); }

  .hero-meta {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    color: var(--cream);
    border-top: 1px solid rgba(255,255,255,0.18);
    background: rgba(20,30,22,0.35);
    backdrop-filter: blur(6px);
  }
  .hero[data-layout="split"] .hero-meta {
    color: var(--ink);
    background: var(--cream-2);
    border-top: 1px solid var(--line-soft);
    grid-column: 1 / -1;
    position: relative;
  }
  .hero-meta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .hero-meta-grid > div {
    padding: 12px 28px;
    border-left: 1px solid rgba(255,255,255,0.14);
  }
  .hero[data-layout="split"] .hero-meta-grid > div { border-left-color: var(--line-soft); }
  .hero-meta-grid > div:first-child { border-left: none; }
  .hero-meta-grid .label {
    font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase;
    opacity: 0.7; margin-bottom: 2px; font-weight: 500;
  }
  .hero-meta-grid .value {
    font-family: var(--serif);
    font-size: 26px;
    line-height: 1;
    font-weight: 500;
  }

  /* ---------- Section primitives ---------- */
  section { padding: 120px 0; }
  section.tight { padding: 88px 0; }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    margin-bottom: 64px;
    align-items: end;
  }
  .section-head .left .eyebrow { color: var(--accent-deep); margin-bottom: 24px; }
  .section-head h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--ink);
  }
  .section-head h2 em { font-style: italic; color: var(--brand); }
  .section-head .right p {
    font-size: 17px; line-height: 1.65; color: var(--ink-soft);
    max-width: 540px; margin: 0;
  }

  /* ---------- About / Lake overview ---------- */
  #about { background: var(--cream); }
  .lake-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .lake-img {
    position: relative;
    aspect-ratio: 4/5;
    background: url('https://images.unsplash.com/photo-1567527455837-bb6cb04bf52d?w=1200&q=80') center/cover;
    border-radius: 4px;
  }
  .lake-img-2 {
    position: absolute;
    bottom: -40px; right: -60px;
    width: 55%; aspect-ratio: 4/3;
    background: url('https://images.unsplash.com/photo-1551582045-6ec9c11d8697?w=900&q=80') center/cover;
    border: 8px solid var(--cream);
    border-radius: 4px;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.25);
  }
  .lake-prose h3 {
    font-family: var(--serif);
    font-size: 32px; font-weight: 500;
    line-height: 1.15;
    margin: 0 0 18px;
  }
  .lake-prose p {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin: 0 0 18px;
  }
  .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .stat {
    padding: 22px 0;
    border-left: 1px solid var(--line-soft);
    padding-left: 18px;
  }
  .stat:first-child { border-left: none; padding-left: 0; }
  .stat .num {
    font-family: var(--serif);
    font-size: 38px; font-weight: 500;
    line-height: 1;
    color: var(--brand);
    margin-bottom: 4px;
  }
  .stat .lab {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 500;
  }

  /* ---------- Species strip ---------- */
  .species {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--line-soft);
  }
  .species-head {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 28px;
  }
  .species-head h4 {
    font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 0;
  }
  .species-head span {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-mute);
  }
  .species-row {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  }
  .fish {
    padding: 22px 18px;
    background: var(--cream-2);
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    text-align: center;
    transition: transform 0.2s, background 0.2s;
  }
  .fish:hover { transform: translateY(-3px); background: var(--cream-deep); }
  .fish svg {
    width: 56px; height: 36px;
    margin: 0 auto 10px;
    color: var(--brand);
  }
  .fish .name {
    font-family: var(--serif); font-size: 18px; font-weight: 600;
    margin-bottom: 2px;
  }
  .fish .latin {
    font-family: var(--serif); font-style: italic;
    font-size: 12px; color: var(--ink-mute);
  }

  /* ---------- Membership ---------- */
  #membership {
    background: var(--brand-deep);
    color: var(--cream);
  }
  #membership .section-head h2 { color: var(--cream); }
  #membership .section-head h2 em { color: #E8B27A; }
  #membership .section-head .left .eyebrow { color: #E8B27A; }
  #membership .section-head .right p { color: rgba(244,236,220,0.78); }

  .member-card {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    border: 1px solid rgba(244,236,220,0.14);
    background: rgba(244,236,220,0.04);
  }
  .mc-left {
    padding: 52px 48px 44px;
    background: var(--cream);
    color: var(--ink);
    display: flex; flex-direction: column;
  }
  .mc-right {
    padding: 52px 48px 44px;
  }
  .mc-left .tier-eyebrow {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
  }
  .mc-left h3 {
    font-family: var(--serif);
    font-size: 56px; font-weight: 500;
    line-height: 0.95; letter-spacing: -0.01em;
    margin: 0 0 24px;
  }
  .mc-left h3 em { font-style: italic; color: var(--accent); }
  .mc-left .price {
    font-family: var(--serif);
    font-size: 72px; font-weight: 500; line-height: 1;
    margin-bottom: 16px;
  }
  .mc-left .price span {
    font-family: var(--sans);
    font-size: 14px; font-weight: 400;
    color: var(--ink-mute);
    margin-left: 6px;
    letter-spacing: 0.02em;
  }
  .mc-left .desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-mute);
    margin: 0 0 32px;
    max-width: 44ch;
  }
  .mc-left .join-btn {
    width: 100%;
    padding: 18px 24px;
    background: var(--accent);
    color: var(--cream);
    border: 1px solid var(--accent);
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.2s;
  }
  .mc-left .join-btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
  .mc-foot {
    margin-top: 16px;
    font-size: 12px;
    color: var(--ink-mute);
    letter-spacing: 0.02em;
  }
  .mc-list-label {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: rgba(244,236,220,0.65);
    margin-bottom: 28px;
  }
  .mc-right ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 16px;
  }
  .mc-right ul li {
    display: flex; align-items: flex-start; gap: 14px;
    font-size: 15.5px;
    line-height: 1.45;
    color: rgba(244,236,220,0.92);
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(244,236,220,0.10);
  }
  .mc-right ul li:last-child { border-bottom: none; padding-bottom: 0; }
  .mc-right ul li::before {
    content: "";
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--accent);
    margin-top: 8px; flex-shrink: 0;
  }

  /* ---------- Fish stocking ---------- */
  #stocking { background: var(--cream); }
  .stock-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: stretch;
  }
  .stock-img {
    position: relative;
    background: url('img/blue-water.jpg') center/cover;
    border-radius: 6px;
    min-height: 560px;
    overflow: hidden;
  }
  .stock-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(31,51,37,0.65) 100%);
  }
  .stock-img-badge {
    position: absolute; top: 24px; left: 24px;
    background: var(--cream); color: var(--ink);
    padding: 12px 16px; border-radius: 999px;
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 500;
    z-index: 1;
  }
  .stock-img-badge .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #C84F2E;
    animation: pulse 1.6s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
  }
  .stock-img-quote {
    position: absolute; bottom: 28px; left: 28px; right: 28px;
    color: var(--cream);
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    line-height: 1.4;
    z-index: 1;
  }
  .stock-img-quote cite {
    display: block;
    font-style: normal;
    font-family: var(--sans);
    font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
    margin-top: 12px;
    opacity: 0.8;
  }

  .stock-card {
    background: var(--cream-2);
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    padding: 40px;
    display: flex; flex-direction: column;
  }
  .stock-card h3 {
    font-family: var(--serif);
    font-size: 30px; font-weight: 500;
    line-height: 1.15;
    margin: 0 0 8px;
  }
  .stock-card .sub {
    font-size: 14px; color: var(--ink-mute);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
  }
  .progress-wrap {
    margin-bottom: 28px;
  }
  .progress-row {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 10px;
  }
  .progress-row .raised {
    font-family: var(--serif);
    font-size: 38px; font-weight: 500;
    line-height: 1;
  }
  .progress-row .raised span { font-size: 16px; color: var(--ink-mute); margin-left: 4px; }
  .progress-row .goal {
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-mute); font-weight: 500;
    text-align: right;
  }
  .progress-row .goal strong { color: var(--ink); display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: 0; text-transform: none; margin-top: 2px; }
  .progress-bar {
    height: 14px;
    background: var(--cream-deep);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line-soft);
  }
  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    border-radius: 999px;
    width: 0%;
    transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }
  .progress-fill::after {
    content: "";
    position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
    width: 6px; height: 6px; background: var(--cream); border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
  }
  .progress-stats {
    display: flex; justify-content: space-between;
    margin-top: 14px;
    font-size: 12.5px;
    color: var(--ink-mute);
  }
  .progress-stats strong { color: var(--ink); font-weight: 600; }

  .donate-amounts {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
    margin-bottom: 16px;
  }
  .donate-amounts button {
    background: var(--cream);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 14px 8px;
    border-radius: 4px;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 500;
    transition: all 0.15s;
  }
  .donate-amounts button:hover { border-color: var(--brand); }
  .donate-amounts button.active {
    background: var(--brand);
    color: var(--cream);
    border-color: var(--brand);
  }
  .donate-custom {
    width: 100%;
    background: var(--cream);
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 14px 16px;
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 14px;
    margin-bottom: 16px;
  }
  .donate-custom:focus { outline: 2px solid var(--brand); outline-offset: -1px; }

  .stock-allocation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid var(--line-soft);
  }
  .stock-allocation > div { padding: 0 12px; border-left: 1px solid var(--line-soft); }
  .stock-allocation > div:first-child { border-left: none; padding-left: 0; }
  .stock-allocation .alloc-num {
    font-family: var(--serif);
    font-size: 26px; line-height: 1;
    font-weight: 500;
    margin-bottom: 4px;
  }
  .stock-allocation .alloc-lab {
    font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--ink-mute); font-weight: 500;
  }

  /* ---------- Events ---------- */
  #events { background: var(--cream-2); padding: 120px 0; }
  .event-list {
    display: flex; flex-direction: column;
    border-top: 1px solid var(--line);
  }
  .event {
    display: grid;
    grid-template-columns: 110px 1fr 200px 140px;
    gap: 32px;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid var(--line-soft);
    transition: background 0.2s, padding 0.2s;
    cursor: pointer;
  }
  .event:hover { background: var(--cream-deep); padding-left: 12px; padding-right: 12px; }
  .event-date {
    text-align: center;
    border-right: 1px solid var(--line-soft);
    padding-right: 24px;
  }
  .event-date .month {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent-deep); font-weight: 600;
    margin-bottom: 4px;
  }
  .event-date .day {
    font-family: var(--serif);
    font-size: 48px; font-weight: 500; line-height: 1;
  }
  .event-info h4 {
    font-family: var(--serif);
    font-size: 24px; font-weight: 500;
    margin: 0 0 6px;
    line-height: 1.2;
  }
  .event-info p {
    font-size: 14px; color: var(--ink-mute); margin: 0;
    line-height: 1.5;
    max-width: 520px;
  }
  .event-meta {
    font-size: 13px; color: var(--ink-soft);
    line-height: 1.5;
  }
  .event-meta strong { display: block; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
  .event-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
  }
  .event-tag.work { background: var(--brand); color: var(--cream); border-color: var(--brand); }
  .event-tag.derby { background: var(--accent); color: var(--cream); border-color: var(--accent); }

  /* ---------- Store ---------- */
  #store { background: var(--cream); padding: 120px 0; }
  .store-controls {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line-soft);
  }
  .store-filters { display: flex; gap: 8px; }
  .store-filters button {
    background: transparent;
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: all 0.15s;
  }
  .store-filters button:hover { border-color: var(--brand); color: var(--brand); }
  .store-filters button.active {
    background: var(--ink); color: var(--cream); border-color: var(--ink);
  }
  .store-sort { font-size: 13px; color: var(--ink-mute); }
  .store-sort select {
    border: none; background: transparent;
    font-family: var(--sans); font-size: 13px;
    color: var(--ink); font-weight: 500;
    cursor: pointer;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
  }
  .product {
    cursor: pointer;
  }
  .product .ph {
    aspect-ratio: 4/5;
    background: var(--cream-2);
    border: 1px solid var(--line-soft);
    border-radius: 6px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: background 0.2s;
  }
  .product:hover .ph { background: var(--cream-deep); }
  .product .ph::before {
    content: "";
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 14px,
      rgba(30,26,20,0.04) 14px,
      rgba(30,26,20,0.04) 15px
    );
  }
  .product .ph .ph-label {
    position: absolute;
    bottom: 14px; left: 14px;
    font-family: var(--mono);
    font-size: 10.5px;
    color: var(--ink-mute);
    background: var(--cream);
    padding: 4px 8px;
    border-radius: 3px;
    border: 1px solid var(--line-soft);
    letter-spacing: 0.04em;
  }
  .product .ph .ph-art {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
    opacity: 0.45;
  }
  .product .ph .ph-art svg { width: 60%; height: 60%; }
  .product .ph .badge {
    position: absolute; top: 14px; left: 14px;
    background: var(--ink); color: var(--cream);
    font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
    padding: 5px 10px; border-radius: 999px;
    font-weight: 500;
  }
  .product .ph .badge.new { background: var(--accent); }
  .product .quick-add {
    position: absolute; bottom: 14px; right: 14px;
    width: 38px; height: 38px;
    background: var(--ink); color: var(--cream);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, background 0.2s;
    font-size: 18px;
  }
  .product:hover .quick-add { opacity: 1; transform: translateY(0); }
  .product .quick-add:hover { background: var(--accent); }
  .product .meta-line {
    display: flex; justify-content: space-between; align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
  }
  .product h4 {
    font-family: var(--serif);
    font-size: 18px; font-weight: 500;
    margin: 0;
    flex: 1; min-width: 0;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  }
  .product .price {
    font-family: var(--serif);
    font-size: 18px; font-weight: 500;
    flex-shrink: 0;
  }
  .product .desc {
    font-size: 13px; color: var(--ink-mute);
    margin: 0;
  }

  /* ---------- Cart drawer ---------- */
  .cart-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(440px, 92vw);
    background: var(--cream);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; flex-direction: column;
    box-shadow: -20px 0 60px -10px rgba(0,0,0,0.25);
  }
  .cart-drawer.open { transform: translateX(0); }
  .cart-overlay {
    position: fixed; inset: 0; background: rgba(20,30,22,0.5);
    z-index: 99; opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .cart-overlay.open { opacity: 1; pointer-events: auto; }
  .cart-head {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--line-soft);
    display: flex; justify-content: space-between; align-items: center;
  }
  .cart-head h3 {
    font-family: var(--serif); font-size: 28px; font-weight: 500; margin: 0;
  }
  .cart-close {
    background: transparent; border: none; font-size: 22px; color: var(--ink); padding: 4px 8px;
  }
  .cart-items {
    flex: 1; overflow-y: auto; padding: 16px 28px;
  }
  .cart-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-soft);
    align-items: center;
  }
  .cart-item-img {
    aspect-ratio: 1;
    background: var(--cream-2);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand);
  }
  .cart-item h5 { font-family: var(--serif); font-size: 17px; margin: 0 0 2px; font-weight: 500; }
  .cart-item .v { font-size: 12px; color: var(--ink-mute); }
  .cart-item .qty {
    display: flex; align-items: center; gap: 6px; margin-top: 6px;
  }
  .cart-item .qty button {
    width: 22px; height: 22px;
    background: var(--cream-2); border: 1px solid var(--line-soft);
    border-radius: 3px; font-size: 14px; line-height: 1;
    color: var(--ink-soft);
  }
  .cart-item .qty span { font-size: 13px; min-width: 18px; text-align: center; }
  .cart-item .price { font-family: var(--serif); font-size: 17px; font-weight: 500; }
  .cart-empty {
    text-align: center;
    padding: 80px 28px;
    color: var(--ink-mute);
    font-size: 15px;
  }
  .cart-empty svg { width: 60px; height: 60px; margin: 0 auto 16px; color: var(--ink-mute); opacity: 0.4; }
  .cart-foot {
    padding: 24px 28px 28px;
    border-top: 1px solid var(--line-soft);
    background: var(--cream-2);
  }
  .cart-totals {
    display: flex; justify-content: space-between; margin-bottom: 18px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
  }
  .cart-totals .small { font-family: var(--sans); font-size: 13px; color: var(--ink-mute); font-weight: 500; }
  .checkout-btn {
    width: 100%; padding: 18px;
    background: var(--ink); color: var(--cream);
    border: none; border-radius: 999px;
    font-size: 14px; font-weight: 500;
    letter-spacing: 0.06em;
    transition: background 0.2s;
  }
  .checkout-btn:hover { background: var(--brand); }

  /* ---------- Modal (subscribe / donate) ---------- */
  .modal-overlay {
    position: fixed; inset: 0;
    background: rgba(20,30,22,0.65);
    z-index: 200;
    display: none;
    align-items: center; justify-content: center;
    padding: 28px;
    backdrop-filter: blur(4px);
  }
  .modal-overlay.open { display: flex; animation: fadeIn 0.2s; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  .modal {
    background: var(--cream);
    border-radius: 8px;
    width: 100%;
    max-width: 520px;
    padding: 40px 40px 32px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-close {
    position: absolute; top: 20px; right: 20px;
    background: transparent; border: none; font-size: 22px; color: var(--ink-mute);
  }
  .modal h3 {
    font-family: var(--serif);
    font-size: 32px; font-weight: 500;
    margin: 0 0 8px;
  }
  .modal .modal-sub {
    font-size: 14px; color: var(--ink-mute);
    margin-bottom: 28px;
  }
  .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
  .form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-row label {
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    font-weight: 500; color: var(--ink-mute);
  }
  .form-row input, .form-row select {
    padding: 12px 14px;
    background: var(--cream-2);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
  }
  .form-row input:focus, .form-row select:focus { outline: 2px solid var(--brand); outline-offset: -1px; }
  .modal .summary {
    background: var(--cream-2);
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    padding: 16px;
    margin: 8px 0 24px;
    display: flex; justify-content: space-between; align-items: center;
  }
  .modal .summary .name { font-family: var(--serif); font-size: 18px; font-weight: 500; }
  .modal .summary .price { font-family: var(--serif); font-size: 24px; font-weight: 500; }
  .modal .summary .price span { font-size: 13px; color: var(--ink-mute); }

  .payment-element-wrap { margin-bottom: 16px; }
  .card-error {
    display: none;
    font-size: 13px;
    color: var(--accent-deep);
    margin: -8px 0 16px;
  }
  .card-error.show { display: block; }

  /* ---------- Membership interval toggle (mirrors .donate-amounts) ---------- */
  .tier-toggle { display: flex; gap: 8px; margin-bottom: 20px; }
  .tier-toggle button {
    flex: 1;
    padding: 10px 0;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: 4px;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.15s;
  }
  .tier-toggle button:hover { border-color: var(--brand); }
  .tier-toggle button.active {
    background: var(--brand);
    color: var(--cream);
    border-color: var(--brand);
  }

  /* ---------- Footer ---------- */
  footer {
    background: var(--ink);
    color: var(--cream);
    padding: 80px 0 32px;
  }
  .foot-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  .foot-grid h5 {
    font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 500; color: rgba(244,236,220,0.55);
    margin: 0 0 18px;
  }
  .foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot-grid ul a { font-size: 14px; opacity: 0.9; }
  .foot-grid ul a:hover { color: var(--accent); }
  .foot-brand { max-width: 320px; }
  .foot-brand .brandmark .name { color: var(--cream); }
  .foot-brand .brandmark .name small { color: rgba(244,236,220,0.55); }
  .foot-brand p { font-size: 14px; line-height: 1.6; margin: 18px 0; opacity: 0.78; }
  .foot-news { display: flex; gap: 0; margin-top: 18px; }
  .foot-news input {
    flex: 1; padding: 12px 14px;
    background: rgba(244,236,220,0.06);
    border: 1px solid rgba(244,236,220,0.18);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: var(--cream);
    font-family: var(--sans);
    font-size: 13px;
  }
  .foot-news input::placeholder { color: rgba(244,236,220,0.4); }
  .foot-news button {
    background: var(--accent); color: var(--cream);
    border: none; padding: 0 20px;
    border-radius: 0 4px 4px 0;
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em;
  }
  .foot-bottom {
    border-top: 1px solid rgba(244,236,220,0.12);
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; opacity: 0.6;
    letter-spacing: 0.04em;
  }

  /* ---------- Toast ---------- */
  .toast {
    position: fixed;
    top: 100px; right: 24px;
    transform: translateY(-200px);
    background: var(--ink); color: var(--cream);
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 13.5px;
    z-index: 300;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 12px 32px -10px rgba(0,0,0,0.4);
  }
  .toast.show { transform: translateY(0); }
  .toast .check {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent); color: var(--cream);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px;
  }

  /* ---------- Boat parade feature ---------- */
  #parade, #highlights {
    position: relative;
    background: url('img/beach.jpg') center/cover;
    color: var(--cream);
    padding: 0;
    min-height: 600px;
    display: flex; align-items: stretch;
  }
  #parade::before, #highlights::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(110deg, rgba(20,30,22,0.85) 0%, rgba(20,30,22,0.55) 50%, rgba(20,30,22,0.2) 100%);
  }
  .parade-inner {
    position: relative;
    padding: 120px 28px;
    max-width: 720px;
    margin-left: max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  }
  .parade-inner .eyebrow { color: #E8B27A; }
  .parade-inner h2 {
    font-family: var(--serif); font-weight: 500;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.02; letter-spacing: -0.02em;
    margin: 0 0 24px;
    color: var(--cream);
  }
  .parade-inner h2 em { font-style: italic; color: #E8B27A; }
  .parade-inner p { font-size: 17px; line-height: 1.65; opacity: 0.9; max-width: 540px; margin: 0 0 28px; }
  .parade-stats {
    display: grid; grid-template-columns: repeat(3, auto); gap: 0;
    margin-top: 36px; border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px; max-width: 540px;
  }
  .parade-stats > div { padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.14); margin-right: 32px; }
  .parade-stats > div:last-child { border-right: none; }
  .parade-stats .num { font-family: var(--serif); font-size: 32px; font-weight: 500; line-height: 1; margin-bottom: 4px; }
  .parade-stats .lab { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.75; font-weight: 500; }

  /* ---------- Water quality ---------- */
  #water { background: var(--cream-2); }
  .water-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-top: 32px; }
  .water-card {
    background: var(--cream); border: 1px solid var(--line-soft);
    border-radius: 6px; padding: 32px 28px;
  }
  .water-card .meter {
    display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px;
  }
  .water-card .val { font-family: var(--serif); font-size: 44px; font-weight: 500; line-height: 1; color: var(--brand); }
  .water-card .unit { font-family: var(--sans); font-size: 13px; color: var(--ink-mute); letter-spacing: 0.04em; }
  .water-card h4 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 14px 0 6px; }
  .water-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 16px; }
  .water-card .trend { font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: #2D7A48; display: flex; align-items: center; gap: 6px; }
  .water-card .trend.warn { color: #B8693E; }

  /* ---------- Facebook feed ---------- */
  #feed { background: var(--cream); }
  .feed-head {
    display: flex; justify-content: space-between; align-items: end;
    margin-bottom: 36px; gap: 32px;
  }
  .feed-head h3 {
    font-family: var(--serif); font-size: clamp(36px, 4.4vw, 52px);
    font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; margin: 0;
  }
  .feed-head h3 em { font-style: italic; color: var(--brand); }
  .fb-link {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 20px; border: 1px solid var(--line);
    border-radius: 999px; font-size: 13px; font-weight: 500;
    color: var(--ink-soft); transition: all 0.15s; flex-shrink: 0;
  }
  .fb-link:hover { border-color: var(--brand); color: var(--brand); }
  .fb-link svg { width: 16px; height: 16px; }
  .feed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .post {
    background: var(--cream-2); border: 1px solid var(--line-soft);
    border-radius: 6px; overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
  }
  .post:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -20px rgba(0,0,0,0.18); }
  .post-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
  .post-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
  .post-meta {
    display: flex; align-items: center; gap: 10px;
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-mute); font-weight: 500; margin-bottom: 10px;
  }
  .post-meta .author-dot { width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 10px; font-family: var(--serif); }
  .post-body p {
    font-size: 14.5px; line-height: 1.55; color: var(--ink-soft);
    margin: 0 0 16px; flex: 1;
  }
  .post-body p strong { color: var(--ink); font-weight: 600; }
  .post-react {
    display: flex; gap: 18px;
    border-top: 1px solid var(--line-soft); padding-top: 14px;
    font-size: 12px; color: var(--ink-mute);
  }
  .post-react span { display: flex; align-items: center; gap: 6px; }

  /* ---------- Gallery ---------- */
  #gallery { background: var(--brand-deep); padding: 120px 0; color: var(--cream); }
  #gallery .section-head h2 { color: var(--cream); }
  #gallery .section-head h2 em { color: #E8B27A; }
  #gallery .section-head .left .eyebrow { color: #E8B27A; }
  #gallery .section-head .right p { color: rgba(244,236,220,0.78); }
  .photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 16px;
  }
  .photo {
    background-size: cover; background-position: center;
    border-radius: 4px;
    transition: transform 0.3s;
    cursor: pointer;
  }
  .photo:hover { transform: scale(1.02); }
  .photo:nth-child(1) { grid-row: span 2; }
  .photo-credits {
    margin-top: 24px;
    font-family: var(--serif); font-style: italic;
    font-size: 14px; opacity: 0.7;
    text-align: right;
  }

  /* ---------- Responsive (basic) ---------- */
  @media (max-width: 1024px) {
    .hero[data-layout="split"] { grid-template-columns: 1fr; }
    .hero[data-layout="split"] .hero-img { min-height: 400px; }
    .lake-grid, .stock-grid { grid-template-columns: 1fr; gap: 48px; }
    .lake-img-2 { display: none; }
    .member-card { grid-template-columns: 1fr; }
    .mc-left, .mc-right { padding: 40px 32px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .species-row { grid-template-columns: repeat(2, 1fr); }
    .event { grid-template-columns: 90px 1fr; gap: 18px; }
    .event-meta, .event-tag { display: none; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }
    .topbar .meta { display: none; }
    .nav-links { display: none; }
  }
