/* =========================================================
   Heritage Boatyard — Main Stylesheet
   Palette: white nav / dark-navy hero & pages / gold accent
   Fonts: Playfair Display (headings) + Inter (body)
   ========================================================= */

:root {
  /* Dark navy — hero, page sections */
  --navy:        #0D1B2A;
  --navy-mid:    #122035;
  --navy-light:  #1A2E47;

  /* Gold accent */
  --gold:        #C9A044;
  --gold-light:  #D9B566;

  /* Nav (white) */
  --nav-bg:      #ffffff;
  --nav-fg:      #0D1B2A;
  --nav-border:  #e2e8f0;

  /* Text */
  --fg:          #ffffff;
  --fg-muted:    rgba(255,255,255,0.72);
  --fg-dark:     #0D1B2A;
  --fg-dark-muted:#4a5568;

  /* Cards / UI */
  --card-bg:     rgba(255,255,255,0.07);
  --card-border: rgba(255,255,255,0.15);
  --shadow:      0 4px 24px rgba(0,0,0,0.3);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.12);

  /* Fonts */
  --font-display:'Jim Nightshade', cursive;
  --font-heading:'Bricolage Grotesque', Arial, sans-serif;
  --font-body:   'Urbanist', Arial, sans-serif;

  /* Layout */
  --nav-h:       76px;
  --radius:      5px;
  --max-w:       1100px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html { scroll-padding-top: calc(var(--nav-h) + 24px); }
body {
  background: var(--navy);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; }
h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

/* ── Nav ─────────────────────────────────────────────────── */
/* ── Nav shell ───────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: var(--shadow-sm);
  padding-top: 8px;
  padding-bottom: 18px; /* extra space for submenu below */
}

/* Main row */
.site-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 2.5rem;
}

/* Logo block */
.site-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.site-nav .nav-logo img {
  height: 76px;
  width: 76px;
  object-fit: contain;
  border-radius: 6px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--nav-fg);
  letter-spacing: 0.02em;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-dark-muted);
}

/* Main nav links */
.site-nav nav {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
.site-nav nav a,
.site-nav nav .nav-item-wrap > a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--nav-fg);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.site-nav nav a:hover,
.site-nav nav .nav-item-wrap > a:hover { color: var(--gold); }
.site-nav nav a.active,
.site-nav nav .nav-item-wrap > a.active {
  color: var(--nav-fg);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

/* nav-item-wrap: positions sub-items absolutely beneath the parent link */
.nav-item-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* Sub-items appear in the reserved whitespace below the main nav row */
.nav-sub-items {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 4px 10px 4px 0;
  display: none;
  white-space: nowrap;
  gap: 1.25rem;
  background: #fff;
  z-index: 10;
}
.nav-sub-items.is-visible {
  display: flex;
  z-index: 10;
}
.nav-item-wrap:hover .nav-sub-items,
.nav-item-wrap:focus-within .nav-sub-items {
  display: flex;
  z-index: 20;
}

/* Hide visible sub-menus only in NON-hovered nav items */
#siteNav:has(.nav-item-wrap:hover) .nav-item-wrap:not(:hover) .nav-sub-items.is-visible {
  display: none;
}

.site-nav .nav-sub-items a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-dark-muted);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site-nav .nav-sub-items a:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.site-nav .nav-sub-items a.active {
  color: var(--navy);
  font-weight: 600;
  border-bottom-color: var(--gold);
}

/* Mobile-only sub-link — hidden on desktop */
.nav-sub-mobile { display: none !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--nav-fg);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Flash Messages ──────────────────────────────────────── */
.flash-messages {
  padding: 0 2.5rem;
  max-width: var(--max-w);
  margin: 1rem auto 0;
}
.flash {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.flash.success { background: #1a6b3a; border-left: 4px solid #2ecc71; }
.flash.error   { background: #7b1e1e; border-left: 4px solid #e74c3c; }
.flash.info    { background: var(--navy-light); border-left: 4px solid var(--gold); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - var(--nav-h));
  padding: 5rem 2rem;
  background: var(--navy);
  /* Subtle texture */
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.018) 0px,
      rgba(255,255,255,0.018) 1px,
      transparent 1px,
      transparent 60px
    );
}

.hero-logo {
  width: 163px;
  height: 163px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
  max-width: 820px;
}

.hero .tagline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 540px;
  margin-bottom: 2.75rem;
  line-height: 1.65;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-text {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
  background: var(--navy-light);
  border: 1.5px solid var(--navy-light);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0.65rem 1.75rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-text:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  text-decoration: none;
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.02em;
  padding: 0.65rem 1.75rem;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--fg);
}

/* Generic solid button (used in inner pages) */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.6rem;
  background: var(--gold);
  color: var(--navy);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
}
.btn:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--fg); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: var(--navy-mid);
  text-align: center;
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--card-border);
}
.page-hero .eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.page-hero p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ── Sections ────────────────────────────────────────────── */
.section {
  padding: 5.5rem 2.5rem;
}
.section--alt {
  background: var(--navy-mid);
}
.section--darker {
  background: var(--navy);
}
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 400;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--fg);
}
.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.75rem;
  border-radius: 2px;
}
.section-lead {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 1.5rem;
  color: var(--fg-muted);
  font-size: 1.05rem;
}

/* ── Cards ───────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
  margin-top: 2.25rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s, box-shadow 0.22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.card-map {
  width: 100%;
  height: 210px;
  border: none;
}
.card-body {
  padding: 1.35rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}
.card-body p { color: var(--fg-muted); font-size: 0.95rem; flex: 1; }
.card-body .btn,
.card-body .btn-ghost { margin-top: 1.25rem; align-self: flex-start; }

/* ── History / Article ───────────────────────────────────── */
.history-text {
  max-width: 800px;
  margin: 0 auto;
}
.history-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: var(--fg-muted);
}
.history-text p:last-child { margin-bottom: 0; }
.history-text a { text-decoration: underline; color: var(--fg); }
.history-cta { text-align: center; margin-top: 2.75rem; }

/* ── Media Embeds ────────────────────────────────────────── */
.embed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.25rem;
}
.embed-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.embed-card h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}
.embed-card iframe { width: 100%; border: none; border-radius: var(--radius); }

/* CBC link fallback */
.cbc-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 2rem 1rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--fg);
  transition: background 0.2s;
}
.cbc-link-card:hover { background: rgba(0,0,0,0.35); }
.cbc-thumb {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.cbc-label { font-weight: 700; font-size: 1rem; text-align: center; }
.cbc-sub   { font-size: 0.85rem; color: var(--fg-muted); text-align: center; }

/* ── Contact Form ────────────────────────────────────────── */
.contact-section { background: var(--navy); }
.contact-wrap { max-width: 660px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 1rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button[type=submit] {
  align-self: flex-start;
  padding: 0.7rem 2.25rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-form button[type=submit]:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* Form status messages */
.form-status {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}
.form-status.success {
  background-color: rgba(72, 187, 120, 0.1);
  border: 1px solid rgba(72, 187, 120, 0.3);
  color: #2f855a;
}
.form-status.error {
  background-color: rgba(245, 101, 101, 0.1);
  border: 1px solid rgba(245, 101, 101, 0.3);
  color: #c53030;
}

/* ── Event Cards ─────────────────────────────────────────── */
.event-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 2.25rem;
  margin-bottom: 2rem;
}
.event-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
  color: var(--fg);
}
.event-date {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.event-card p { color: var(--fg-muted); margin-bottom: 0.75rem; }
.event-card h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--fg); }
.event-card img {
  max-width: 480px; width: 100%;
  margin: 1.5rem auto 0;
  border-radius: var(--radius);
}

/* ── Light Sections (white / warm bg, dark text) ────────── */
.section--light {
  background: #ffffff;
}
.section--warm {
  background: #F5F3EE;
}

/* Eyebrow, heading, body on light bg */
.l-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.l-heading {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.1rem;
  line-height: 1.2;
}
.l-body {
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.l-body a { color: var(--navy); text-decoration: underline; }
.l-divider {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem;
  border-radius: 2px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.two-col-main { display: flex; flex-direction: column; }

/* CTA row */
.l-ctas {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Solid dark button (light sections) */
.btn-dark {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: var(--radius);
  padding: 0.7rem 1.6rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-dark:hover { background: var(--navy-light); border-color: var(--navy-light); }

/* Inline text link with arrow */
.link-arrow {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.18s;
}
.link-arrow:hover { color: var(--navy); }

.section-anchor {
  display: inline-block;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 0.65em;
  vertical-align: super;
  margin-left: 0.25rem;
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
}
.section-anchor:hover { color: var(--navy); }
.section-anchor,
[id] {
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

/* Aside card (beige pullout) */
.aside-card {
  background: #F0EBE0;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
}
.aside-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
}
.aside-card p {
  font-size: 0.97rem;
  color: #3a3a3a;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.aside-card p:last-child { margin-bottom: 0; }
.aside-caption {
  font-size: 0.85rem !important;
  color: #7a6f5e !important;
  font-style: italic;
}

/* Light-section cards grid */
.l-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.l-card {
  background: #ffffff;
  border: 1px solid #e2ddd6;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.22s, box-shadow 0.22s;
}
.l-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.l-card-img-wrap {
  height: 200px;
  background: #e8e4dc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.l-card-img-wrap img {
  height: 120px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}
.l-card-map {
  width: 100%;
  height: 200px;
  border: none;
}
.l-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
}
.l-card-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  display: block;
}
.l-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.55rem;
}
.l-card-body p { font-size: 0.92rem; color: #4a5568; line-height: 1.65; }
.l-card-body a { color: var(--navy); }

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.sponsor-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e5ddd0;
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.sponsor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: var(--gold);
}
.sponsor-card img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #f0ece4;
  border-radius: 4px;
  padding: 0.5rem;
}
.sponsor-card--dark img {
  background: var(--navy);
}
.sponsor-card h3 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: var(--navy);
}
.sponsor-card p {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Sponsor become-a-sponsor CTA card */
.sponsor-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--navy);
  border: 1px solid rgba(201,160,68,0.35);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  gap: 0;
}
.sponsor-cta-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  margin-bottom: 1.25rem;
}
.sponsor-cta-rule {
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.sponsor-cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.sponsor-cta-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.sponsor-cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-top: auto;
}
.sponsor-cta-btn:hover {
  background: #d9b254;
  transform: translateY(-2px);
}

/* Light contact form overrides */
.section--light .contact-form label { color: #4a5568; }
.section--light .contact-form input,
.section--light .contact-form textarea {
  background: #f9f8f6;
  border-color: #d1cdc6;
  color: var(--navy);
}
.section--light .contact-form input::placeholder,
.section--light .contact-form textarea::placeholder { color: #9a9490; }
.section--light .contact-form input:focus,
.section--light .contact-form textarea:focus { border-color: var(--gold); }

/* Responsive */
@media (max-width: 820px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── Timeline ────────────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 2.5rem 0 3rem;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,160,68,0.3));
}
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem 0;
  position: relative;
}
.timeline-year {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.6rem;
  white-space: nowrap;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid #F5F3EE;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.timeline-body {
  font-size: 0.88rem;
  color: #4a5568;
  line-height: 1.6;
}

/* Timeline CTA cards */
.timeline-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}
.timeline-cta-card {
  background: #ffffff;
  border: 1px solid #e2ddd6;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.timeline-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}
.timeline-cta-card p {
  font-size: 0.92rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

/* Responsive timeline */
@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .timeline-item { align-items: flex-start; text-align: left; padding: 0 0 1.5rem 2rem; border-left: 2px solid rgba(201,160,68,0.4); }
  .timeline-dot { position: absolute; left: -7px; top: 22px; }
  .timeline-year { margin-bottom: 0.25rem; }
}
@media (max-width: 600px) {
  .timeline { grid-template-columns: 1fr; }
  .timeline-cta { grid-template-columns: 1fr; }
}

/* ── History Article (Our History page) ──────────────────── */
.history-article {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  align-items: start;
}
.history-article-body { max-width: 680px; }
.history-lead {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 2rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.history-h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 2rem 0 0.65rem;
}
.history-article-body p {
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.history-callout {
  background: #F0EBE0;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-style: italic;
  color: var(--navy) !important;
  margin-top: 1.5rem;
}
.history-callout a { color: var(--navy); text-decoration: underline; }

/* Visit card sidebar */
.history-visit-card {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 0;
}
.history-visit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1.1rem;
}
.visit-detail {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
}
.visit-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.history-visit-card a { color: #fff; text-decoration: underline; }
.history-visit-card a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .history-article { grid-template-columns: 1fr; }
  .history-sidebar { order: -1; }
}

/* ── Light Event Cards ───────────────────────────────────── */
.l-event-card {
  background: #ffffff;
  border: 1px solid #e2ddd6;
  border-radius: var(--radius);
  padding: 2.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.l-event-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin: 0.4rem 0 0.1rem;
}
.l-event-date {
  font-size: 0.88rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}
.l-event-sub {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--navy);
  margin: 1.25rem 0 0.5rem;
}
.l-event-img {
  max-width: 340px;
  width: 100%;
  margin-top: 1.5rem;
  border-radius: var(--radius);
  opacity: 0.85;
}
.l-event-card a { color: var(--navy); text-decoration: underline; }

/* CBC News card — clickable thumbnail with play overlay */
.cbc-card-thumb {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1b2a;
  line-height: 0;
}
.cbc-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.cbc-card-thumb:hover img { transform: scale(1.03); }
.cbc-card-thumb .cbc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  padding-left: 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: background 0.18s, color 0.18s;
}
.cbc-card-thumb:hover .cbc-play {
  background: var(--gold);
  color: #fff;
}
.cbc-card-title {
  margin: 1rem 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.cbc-card-date {
  margin: 0 0 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.cbc-card-desc {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--fg-dark-muted);
}

/* ── Project feature card (Projects page) ────────────────── */
.project-feature {
  max-width: 860px;
  margin: 0 auto 3rem;
  background: #ffffff;
  border: 1px solid #e2ddd6;
  border-radius: var(--radius);
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  overflow: hidden;
}
.project-feature:last-child { margin-bottom: 0; }
.project-slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #1a1a1a;
  overflow: hidden;
  outline: none;
}
.project-slideshow:focus-visible {
  box-shadow: inset 0 0 0 3px var(--gold);
}
@supports not (aspect-ratio: 1) {
  .project-slideshow { padding-top: 62.5%; height: 0; }
}
.project-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #1a1a1a;
  opacity: 0;
  transition: opacity 1s ease;
}
.project-slide.is-active { opacity: 1; }

.project-slideshow-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
  pointer-events: none;
}
.project-slideshow-dot {
  pointer-events: auto;
  appearance: none;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(0,0,0,0.25);
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.project-slideshow-dot:hover {
  background: var(--gold-light);
  transform: scale(1.15);
}
.project-slideshow-dot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.project-slideshow-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .project-slide { transition: none; }
  .project-slideshow-dot { transition: none; }
}

.project-feature-body {
  padding: 2.25rem 2.5rem 2.5rem;
}
.project-date-pill {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1rem;
}
.project-feature-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--navy);
  margin: 0 0 1.4rem;
  line-height: 1.15;
}
.project-feature-body p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-dark-muted);
  margin-bottom: 1rem;
}
.project-feature-body p:last-child { margin-bottom: 0; }

.project-feature-body p a,
.project-update-body p a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.18s ease, text-decoration-thickness 0.18s ease;
}
.project-feature-body p a:hover,
.project-feature-body p a:focus-visible,
.project-update-body p a:hover,
.project-update-body p a:focus-visible {
  color: var(--gold-light);
  text-decoration-thickness: 2px;
}

.project-update {
  border-top: 1px solid rgba(13, 27, 42, 0.08);
  padding: 2rem 2.5rem 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}
.project-update-body { min-width: 0; }
.project-update-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  color: var(--navy);
  margin: 0 0 0.85rem;
  line-height: 1.25;
}
.project-update-body p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-dark-muted);
  margin: 0;
}
.project-update-figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--navy);
}
.project-update-figure img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 720px) {
  .project-update {
    grid-template-columns: 1fr;
    padding: 1.6rem 1.4rem 1.8rem;
    gap: 1.4rem;
  }
}

.project-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg-dark-muted);
}
.project-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.project-feature-list li:last-child { margin-bottom: 0; }

.projects-intro {
  max-width: 860px;
  margin: 0 auto 2.25rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--fg-dark-muted);
  text-align: center;
}
.projects-intro a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.projects-intro a:hover,
.projects-intro a:focus-visible { color: var(--gold-light); }

.project-feature-embed {
  padding: 1.75rem 2.5rem 2.25rem;
}
.project-feature-embed .l-embed-card {
  max-width: 520px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 600px) {
  .project-feature-embed { padding: 1.25rem 1.4rem 1.6rem; }
}

@media (max-width: 600px) {
  .project-feature-body { padding: 1.6rem 1.4rem 1.8rem; }
}

/* ── Events page ─────────────────────────────────────────── */
.events-list {
  max-width: 760px;
  margin: 2rem auto 0;
}
.l-event-rsvp {
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
}
.l-event-rsvp a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.15s;
}
.l-event-rsvp a:hover { color: var(--gold); }
.events-fb-link {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.events-fb-link a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.events-fb-link a:hover { color: var(--gold); }

/* ── Light Media Embeds ──────────────────────────────────── */
.l-embed-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2rem;
}
.l-embed-card {
  background: #ffffff;
  border: 1px solid #e2ddd6;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.l-embed-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
  align-self: flex-start;
}
.l-embed-card iframe { width: 100%; border: none; border-radius: var(--radius); }
.l-embed-link {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  align-self: flex-start;
}
.l-embed-link a { color: var(--fg-dark-muted); text-decoration: underline; }
.l-embed-link a:hover { color: var(--navy); }

/* Light contact form overrides for section--warm */
.section--warm .contact-form label { color: #4a5568; }
.section--warm .contact-form input,
.section--warm .contact-form textarea {
  background: #ffffff;
  border-color: #d1cdc6;
  color: var(--navy);
}
.section--warm .contact-form input::placeholder,
.section--warm .contact-form textarea::placeholder { color: #9a9490; }
.section--warm .contact-form input:focus,
.section--warm .contact-form textarea:focus { border-color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #fff; }

/* Visit the Boatyard band */
.footer-visit {
  background: var(--navy-mid);
  padding: 3rem 2.5rem;
}
.footer-visit-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}
.footer-visit-lead h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-visit-lead p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.footer-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.footer-info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.footer-info-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-info-card a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-info-card a:hover { color: #fff; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.footer-social-icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  fill: currentColor;
  vertical-align: middle;
}

/* Bottom bar */
.footer-bottom {
  background: var(--navy);
  padding: 2rem 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.footer-brand-tag {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}
.footer-nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 0 1.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* Responsive footer */
@media (max-width: 900px) {
  .footer-visit-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-info-cards { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 580px) {
  .footer-info-cards { grid-template-columns: 1fr; }
  .footer-nav { gap: 1rem; }
}

/* ── Contact Page ─────────────────────────────────────────── */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.contact-info-lead {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
  font-size: 0.93rem;
  color: #2d3748;
  line-height: 1.65;
}
.contact-info-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-info-block address { font-style: normal; }
.contact-info-link { color: var(--navy); text-decoration: underline; }
.contact-info-link:hover { color: var(--gold); }
.contact-form-note {
  font-size: 0.78rem;
  color: #9a9490;
  margin-top: 0.65rem;
}
@media (max-width: 780px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.contact-map {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  display: block;
}

/* ── Home page — Boatbuilding Shed section ───────────────── */
.shed-header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}
.shed-intro {
  max-width: 680px;
}
.shed-slideshow-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.13);
}
.shed-slideshow-wrap .project-slideshow {
  border-radius: var(--radius);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 56px; }
  .nav-toggle { display: flex; }
  .site-nav { padding: 0 1.25rem; padding-bottom: 0; }
  .site-nav-row { padding: 0; height: var(--nav-h); }
  .site-nav .nav-logo img { height: 40px; width: 40px; }
  .nav-logo-name { font-size: 20px; }
  .nav-logo-sub { font-size: 0.58rem; }
  .site-nav nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    padding: 0.75rem 0;
    z-index: 99;
    box-shadow: var(--shadow-sm);
  }
  .site-nav nav.open { display: flex; }
  .site-nav nav a {
    padding: 0.8rem 1.5rem;
    border-bottom: none;
    border-left: 2px solid transparent;
    width: 100%;
    box-sizing: border-box;
  }
  .site-nav nav a:hover,
  .site-nav nav a.active {
    border-left-color: var(--gold);
    border-bottom: none;
    background: rgba(201,160,68,0.06);
  }

  /* Mobile: hide desktop sub-items, show inline sub-link instead */
  .site-nav { padding-bottom: 0; }
  .nav-sub-items { display: none !important; }
  .nav-item-wrap { display: contents; }
  .nav-sub-mobile {
    display: flex !important;
    padding: 0.6rem 1.5rem 0.6rem 2.75rem !important;
    font-size: 0.85rem !important;
    color: var(--fg-dark-muted) !important;
    border-left: 2px solid rgba(201,160,68,0.3) !important;
    border-bottom: none !important;
    margin-left: 0 !important;
    background: none;
  }
  .nav-sub-mobile:hover {
    color: var(--navy) !important;
    background: rgba(201,160,68,0.06) !important;
    border-left-color: var(--gold) !important;
  }
  .nav-sub-mobile.active {
    color: var(--navy) !important;
    font-weight: 600 !important;
    border-left-color: var(--gold) !important;
    background: rgba(201,160,68,0.06) !important;
  }
  .hero-logo { width: 125px; height: 125px; }
  .section { padding: 3.5rem 1.25rem; }
  .embed-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 3rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3.5rem 1.25rem; }
  .hero h1 { font-size: 2.2rem; }
}
