/* ═══════════════════════════════════════════════════════════════
   DYED FOR AMERICA — Phase 3 Styles
═══════════════════════════════════════════════════════════════ */
 
/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --navy:      #0B1F3D;
  --navy-deep: #061429;
  --red:       #C41E3A;
  --gold:      #C8922A;
  --gold-l:    #E0AE45;
  --cream:     #F7F2E8;
  --cream-w:   #EFE8D8;
  --bone:      #FFFFFF;
  --line:      rgba(11,31,61,0.12);
  --shadow-sm: 0 2px 8px rgba(11,31,61,0.08);
  --shadow-md: 0 12px 32px rgba(11,31,61,0.14);
  --shadow-lg: 0 28px 64px rgba(11,31,61,0.22);
  --ease:      cubic-bezier(0.22,1,0.36,1);
  --wood-dark: #1a0a04;
  --wood-mid:  #3b1c09;
  --wood-lite: #5c3317;
}
 
/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
section { scroll-margin-top: 80px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1,h2,h3,h4 {
  font-family: 'Teko', sans-serif;
  font-weight: 600; line-height: 0.95;
  letter-spacing: 0.01em; text-transform: uppercase;
}
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--red); margin-bottom: 18px; display: block;
}
 
/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 40px;
  display: flex; align-items: center;
  background: rgba(11,31,61,0.96);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: all 0.3s var(--ease);
}
.navbar.scrolled { padding: 8px 40px; }
 
.nav-brand { display: flex; align-items: center; gap: 14px; width: 100%; }
.nav-logo {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--gold);
  overflow: hidden; flex-shrink: 0;
}
.nav-logo img { width: 100%; height: 100%; object-fit: cover; }
 
.nav-brand-text {
  display: flex; flex-direction: column; gap: 2px;
  flex: 1;
}
.nav-wordmark {
  font-family: 'Teko', sans-serif;
  font-weight: 700; font-size: 22px;
  color: var(--cream);
  line-height: 1; letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-star { color: var(--gold); font-size: 10px; vertical-align: middle; margin: 0 3px; }
.nav-subline {
  font-family: 'Teko', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-l); line-height: 1;
  display: flex; align-items: center; gap: 6px;
}
.nav-flag-svg {
  width: 22px; height: 14px;
  border-radius: 1px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
 
@media(max-width:900px) {
  .navbar { padding: 10px 20px; }
  .nav-wordmark { font-size: 18px; }
  .nav-subline { font-size: 10px; letter-spacing: 0.14em; }
  .nav-logo { width: 44px; height: 44px; }
}
 
/* ══════════════════════════════════════════════════════════════
   WOOD PLANK HERO
══════════════════════════════════════════════════════════════ */
.hero-plank {
  position: relative;
  min-height: 44vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-top: 78px;
  background:
    repeating-linear-gradient(90deg, transparent 0px, rgba(0,0,0,0.03) 1px, transparent 2px, transparent 18px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.015) 0px, transparent 3px, transparent 40px),
    linear-gradient(160deg, #1a0a04 0%, #3b1c09 20%, #5c3317 40%, #4a2510 55%, #3b1c09 70%, #2C1810 85%, #1a0a04 100%);
  border-top: 6px solid #0f0603;
  border-bottom: 6px solid #0f0603;
  box-shadow:
    inset 0 0 60px rgba(0,0,0,0.55),
    inset 0 4px 30px rgba(0,0,0,0.7),
    inset 0 -4px 30px rgba(0,0,0,0.7),
    inset 60px 0 80px rgba(0,0,0,0.25),
    inset -60px 0 80px rgba(0,0,0,0.25),
    0 10px 50px rgba(0,0,0,0.6);
}
.plank-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    repeating-linear-gradient(180deg,
      transparent 0px, rgba(0,0,0,0.06) 1px, transparent 2px,
      rgba(255,200,120,0.04) 4px, transparent 6px,
      rgba(0,0,0,0.04) 8px, transparent 12px,
      rgba(255,180,80,0.03) 16px, transparent 22px,
      rgba(0,0,0,0.05) 24px, transparent 32px,
      rgba(255,160,60,0.03) 38px, transparent 48px
    ),
    repeating-linear-gradient(175deg,
      transparent 0px, rgba(0,0,0,0.03) 2px,
      transparent 60px, rgba(180,100,30,0.04) 62px, transparent 120px
    );
  mix-blend-mode: overlay; opacity: 0.9;
}
.nail, .p-nail {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4a853, #8B6914, #5c4010);
  box-shadow: 0 2px 6px rgba(0,0,0,0.6), inset 0 1px 2px rgba(255,220,100,0.3);
  z-index: 2;
}
.nail { width: 16px; height: 16px; }
.nail-tl { top: 18px;  left: 24px; }
.nail-tr { top: 18px;  right: 24px; }
.nail-bl { bottom: 18px; left: 24px; }
.nail-br { bottom: 18px; right: 24px; }
 
.plank-content {
  position: relative; z-index: 3;
  text-align: center; padding: 40px 60px; width: 100%;
}
.plank-eyebrow {
  font-family: 'Teko', sans-serif;
  font-size: 13px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; opacity: 0.9;
}
.plank-headline {
  font-family: 'Rye', serif;
  font-size: clamp(40px, 9.5vw, 999px);
  font-weight: 400; text-transform: none;
  letter-spacing: 0.02em; line-height: 1;
  color: var(--cream); white-space: nowrap;
  text-shadow: 0 0 60px rgba(200,146,42,0.15), 2px 2px 0 rgba(0,0,0,0.8), 4px 4px 0 rgba(0,0,0,0.4);
  filter: drop-shadow(0 0 8px rgba(200,100,0,0.2));
}
@media(max-width:480px) {
  .plank-headline { white-space: normal; font-size: clamp(36px, 11vw, 80px); }
}
.plank-sub {
  font-family: 'Caveat', cursive;
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--gold-l); margin-top: 16px;
  opacity: 0.85; letter-spacing: 0.02em;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}
 
/* ══════════════════════════════════════════════════════════════
   3x3 GALLERY GRID
══════════════════════════════════════════════════════════════ */
.gallery-section { background: var(--navy-deep); padding: 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; max-width: 100%;
}
.cat-tile {
  position: relative; aspect-ratio: 1;
  overflow: hidden; background: var(--navy); cursor: pointer; touch-action: pan-y;
}
.cat-carousel { display: flex; width: 100%; height: 100%; transition: transform 0.45s var(--ease); }
.cat-slide { flex: 0 0 100%; width: 100%; height: 100%; position: relative; }
.cat-slide img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cat-tile:hover .cat-slide img { transform: scale(1.04); }
.cat-slide-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3260 100%);
  color: rgba(200,146,42,0.5); gap: 12px;
}
.cat-slide-placeholder i { font-size: 32px; }
.cat-slide-placeholder span {
  font-family: 'Teko', sans-serif; font-size: 14px;
  letter-spacing: 0.2em; text-transform: uppercase; color: rgba(200,146,42,0.5);
}
.cat-tile-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, transparent 30%, rgba(6,20,41,0.7) 70%, rgba(6,20,41,0.92) 100%);
  pointer-events: none; transition: opacity 0.3s ease;
}
.cat-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 3; padding: 12px 14px 14px;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.cat-name {
  font-family: 'Teko', sans-serif; font-size: clamp(14px, 2vw, 22px);
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--cream); cursor: pointer; line-height: 1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8); transition: color 0.2s;
}
.cat-name:hover { color: var(--gold-l); }
.cat-nav { display: flex; gap: 6px; z-index: 3; }
.cat-nav-btn {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(11,31,61,0.7); border: 1px solid rgba(200,146,42,0.4);
  color: var(--gold); font-size: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; cursor: pointer; backdrop-filter: blur(4px);
}
.cat-nav-btn:hover { background: var(--gold); color: var(--navy); }
.cat-dots {
  position: absolute; bottom: 44px; left: 0; right: 0;
  z-index: 3; display: flex; justify-content: center; gap: 5px; pointer-events: none;
}
.cat-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(247,242,232,0.4); transition: all 0.25s ease;
}
.cat-dot.active { background: var(--gold); transform: scale(1.3); }
.cat-count {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: var(--red); color: var(--cream);
  font-family: 'Teko', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.cat-count.empty { background: rgba(11,31,61,0.7); color: rgba(247,242,232,0.5); }
.slide-sold-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; /* let clicks pass through to the img below */
}
.slide-sold-badge {
  background: var(--navy); color: var(--cream);
  font-family: 'Teko', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 16px; border: 2px solid var(--red); transform: rotate(-12deg);
}
 
/* ══════════════════════════════════════════════════════════════
   TAGLINE + SCROLL CUE
══════════════════════════════════════════════════════════════ */
.tagline-strip {
  background: var(--navy); padding: 36px 20px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  border-top: 2px solid rgba(200,146,42,0.3); border-bottom: 2px solid rgba(200,146,42,0.3);
}
.tagline-word {
  font-family: 'Teko', sans-serif; font-size: clamp(28px, 5vw, 52px);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream);
}
.tagline-star { display: flex; align-items: center; }
.tiedye-star-svg {
  width: clamp(36px, 5vw, 56px); height: clamp(36px, 5vw, 56px);
  filter: drop-shadow(0 0 8px rgba(224,64,251,0.4));
  animation: spin-slow 12s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
 
.scroll-cue-wrap {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 200; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  opacity: 1; transition: opacity 0.4s ease; pointer-events: none;
}
.scroll-cue-wrap.hidden { opacity: 0; }
.scroll-label {
  font-family: 'Caveat', cursive; font-size: 16px; font-weight: 700;
  color: var(--gold-l); text-shadow: 0 1px 4px rgba(0,0,0,0.6); white-space: nowrap;
}
.scroll-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(11,31,61,0.75); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 13px;
  animation: bob 2.2s ease-in-out infinite;
  backdrop-filter: blur(6px);
}
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
 
/* ══════════════════════════════════════════════════════════════
   ABOUT — CAPTAIN'S CREW N' CREED
══════════════════════════════════════════════════════════════ */
.about { background: var(--cream); }
 
.about-flag-strip { width: 100%; height: 320px; overflow: hidden; position: relative; }
.about-flag-strip img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 45%; filter: brightness(0.82);
}
.about-flag-strip::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
 
/* Section heading */
.crew-heading {
  text-align: center; padding: 36px 40px 36px;
  background: var(--cream);
}
.crew-heading h2 {
  font-size: clamp(40px, 6vw, 80px); color: var(--navy); line-height: 0.92;
  margin-top: 12px;
}
.crew-heading h2 em { font-style: italic; font-weight: 500; color: var(--red); }
 
 
 
/* ── Wood section corner nails ──────────────────────────────── */
.wood-nail {
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #d4a853, #8B6914, #5c4010);
  box-shadow: 0 2px 8px rgba(0,0,0,0.6), inset 0 1px 2px rgba(255,220,100,0.3);
  z-index: 5;
}
.wood-nail-tl { top: 22px;  left: 28px; }
.wood-nail-tr { top: 22px;  right: 28px; }
.wood-nail-bl { bottom: 22px; left: 28px; }
.wood-nail-br { bottom: 22px; right: 28px; }
 
/* ── Full-width wood section behind crew grid ────────────────── */
.crew-wood-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
 
  /* Same wood gradient as hero plank */
  background:
    repeating-linear-gradient(90deg, transparent 0px, rgba(0,0,0,0.03) 1px, transparent 2px, transparent 18px),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.015) 0px, transparent 3px, transparent 40px),
    linear-gradient(160deg, #1a0a04 0%, #3b1c09 20%, #5c3317 40%, #4a2510 55%, #3b1c09 70%, #2C1810 85%, #1a0a04 100%);
  border-top: 6px solid #0f0603;
  border-bottom: 6px solid #0f0603;
  box-shadow:
    inset 0 0 60px rgba(0,0,0,0.5),
    inset 60px 0 80px rgba(0,0,0,0.2),
    inset -60px 0 80px rgba(0,0,0,0.2),
    0 10px 40px rgba(0,0,0,0.5);
}
 
/* Wood grain overlay on the section */
.crew-wood-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    repeating-linear-gradient(180deg,
      transparent 0px, rgba(0,0,0,0.06) 1px, transparent 2px,
      rgba(255,200,120,0.04) 4px, transparent 6px,
      rgba(0,0,0,0.04) 8px, transparent 12px,
      rgba(255,180,80,0.03) 16px, transparent 22px,
      rgba(0,0,0,0.05) 24px, transparent 32px,
      rgba(255,160,60,0.03) 38px, transparent 48px
    ),
    repeating-linear-gradient(175deg,
      transparent 0px, rgba(0,0,0,0.03) 2px,
      transparent 60px, rgba(180,100,30,0.04) 62px, transparent 120px
    );
  mix-blend-mode: overlay; opacity: 0.9;
}
 
/* Crew grid sits inside the wood section — keep layout max-width */
.crew-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px 1fr;
  gap: 50px; align-items: start;
  padding: 0 40px;
  position: relative; z-index: 2;
}
 
/* Three-column crew grid — overridden by .crew-wood-section context above */
.crew-grid-DISABLED {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px 1fr;
  gap: 50px; align-items: start;
  padding: 0 40px 80px;
}
.crew-col { display: flex; flex-direction: column; gap: 20px; }
 
/* CTD Bio left */
.crew-bio-left p {
  font-size: 15px; line-height: 1.85;
  color: rgba(247,242,232,0.85);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  font-weight: 400;
}
.crew-bio-left p + p { margin-top: 16px; }
 
/* ── PORTHOLE ──────────────────────────────────────────────── */
.porthole-col { align-items: center; }
 
.porthole-wood {
  position: relative;
  width: 340px; min-height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 20px 20px 28px;
  /* No bg gradient — parent is already wood. Just inset shadow for depth. */
  border: 3px solid rgba(15,6,3,0.6);
  border-radius: 6px;
  box-shadow:
    inset 0 0 50px rgba(0,0,0,0.4),
    inset 30px 0 50px rgba(0,0,0,0.15),
    inset -30px 0 50px rgba(0,0,0,0.15);
}
 
/* porthole-wood-grain removed — parent .crew-wood-section already provides grain */
 
/* Porthole corner nails */
.p-nail { width: 13px; height: 13px; }
.p-nail-tl { top: 12px;  left: 14px; }
.p-nail-tr { top: 12px;  right: 14px; }
.p-nail-bl { bottom: 12px; left: 14px; }
.p-nail-br { bottom: 12px; right: 14px; }
 
/* "The Tie Dye Tale" curved text SVG — sits above the ring */
.tale-arc-svg {
  width: 300px; height: 110px;
  position: relative; z-index: 4;
  margin-bottom: -10px; /* overlap slightly onto ring top */
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.9));
}
 
/* Porthole ring */
.porthole-ring {
  position: relative; z-index: 3;
  width: 260px; height: 260px;
  border-radius: 50%;
  /* Layered brass ring effect */
  border: 10px solid #7a5c1a;
  box-shadow:
    0 0 0 3px #4a3008,
    0 0 0 7px #C8922A,
    0 0 0 9px #7a5c1a,
    inset 0 0 0 4px rgba(0,0,0,0.35),
    inset 0 0 40px rgba(0,0,0,0.7),
    0 10px 30px rgba(0,0,0,0.6);
  overflow: hidden;
  background: var(--navy-deep);
}
 
.porthole-inner {
  width: 100%; height: 100%;
  position: relative; overflow: hidden; border-radius: 50%;
}
 
.porthole-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: rgba(200,146,42,0.4);
}
.porthole-placeholder i { font-size: 36px; }
.porthole-placeholder span {
  font-family: 'Teko', sans-serif; font-size: 14px;
  letter-spacing: 0.2em; text-transform: uppercase;
}
 
.porthole-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease;
}
.porthole-slide.active { opacity: 1; }
.porthole-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
 
.porthole-dots {
  position: absolute; bottom: -22px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.porthole-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(200,146,42,0.4); cursor: pointer;
  transition: all 0.25s ease;
}
.porthole-dot.active { background: var(--gold); transform: scale(1.4); }
 
/* ── Barrel stamp ──────────────────────────────────────────── */
.barrel-stamp-wrap { display: flex; justify-content: center; }
.barrel-stamp-svg { width: 160px; height: 160px; }
 
/* ── Rascal bio ────────────────────────────────────────────── */
.rascal-name {
  font-size: 26px; color: var(--gold-l); letter-spacing: 0.06em;
  margin-bottom: 10px; line-height: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.rascal-bio p {
  font-size: 14px; line-height: 1.85;
  color: rgba(247,242,232,0.8);
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  font-weight: 400;
}
 
/* ══════════════════════════════════════════════════════════════
   LOVE SECTION — WHY WE LOVE CTD
══════════════════════════════════════════════════════════════ */
.love-section {
  background: var(--navy); padding: 80px 40px;
}
 
.love-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px; align-items: start;
}
 
/* ── About carousels (Team + Dev Process) ──────────────────── */
.about-carousel-wrap { display: flex; flex-direction: column; gap: 14px; }
 
.about-car-label {
  font-family: 'Teko', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,146,42,0.3);
  text-align: center;
}
 
.about-carousel {
  position: relative; overflow: hidden;
  background: var(--navy-deep);
  border: 1px solid rgba(200,146,42,0.2);
  min-height: 260px;
}
 
.about-car-track {
  display: flex;
  transition: transform 0.4s var(--ease);
  height: 100%;
}
 
.about-car-slide {
  flex: 0 0 100%;
  position: relative;
  min-height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.about-car-slide img {
  width: 100%; height: 260px; object-fit: cover; display: block;
}
 
/* Video embed inside development process carousel */
.video-embed-wrap {
  position: relative; width: 100%; padding-top: 56.25%;
  background: #000;
}
.video-embed-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  border: none;
}
 
.about-car-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; padding: 40px 20px;
  color: rgba(200,146,42,0.35);
  text-align: center; min-height: 260px; width: 100%;
}
.about-car-empty i { font-size: 40px; }
.about-car-empty span {
  font-family: 'Teko', sans-serif; font-size: 14px;
  letter-spacing: 0.16em; text-transform: uppercase;
}
 
.about-car-dots {
  display: flex; justify-content: center; gap: 6px;
  padding: 10px 0 0;
}
.about-car-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(200,146,42,0.3); cursor: pointer;
  transition: all 0.25s ease;
}
.about-car-dot.active { background: var(--gold); transform: scale(1.35); }
 
.about-car-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(11,31,61,0.8); color: var(--cream);
  border: 1px solid rgba(200,146,42,0.3);
  font-size: 12px; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; cursor: pointer;
}
.about-car-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.about-car-prev { left: 8px; }
.about-car-next { right: 8px; }
 
/* ── Love center column ────────────────────────────────────── */
.love-center {
  display: flex; flex-direction: column; gap: 28px;
  padding: 0 10px;
}
 
.love-title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--cream); line-height: 1; margin-bottom: 4px;
  text-align: center;
}
 
.love-bio-text {
  font-size: 15px; line-height: 1.85;
  color: rgba(247,242,232,0.78);
  text-align: center;
}
 
 
/* ── Love title colored spans ───────────────────────────────── */
.love-red { color: var(--red); }
.love-tiedye {
  background: linear-gradient(90deg, #E040FB 0%, #FF6B35 25%, #FFD600 50%, #00E5FF 75%, #00C853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.guy-gold {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  font-weight: 700;
}
 
 
/* ── Named character color spans ────────────────────────────── */
.ctd-name {
  background: linear-gradient(90deg, #E040FB 0%, #FF6B35 25%, #FFD600 50%, #00E5FF 75%, #00C853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;  /* inline-block required for webkit-background-clip */
  font-weight: inherit;   /* match surrounding text weight in bios */
  color: #E040FB;         /* fallback if gradient unsupported */
}
.rascal-name {
  /* Inline uses: match surrounding text size, gold gloss effect */
  font-size: 1em !important;   /* force match to surrounding text — no upscaling */
  color: var(--gold);
  font-weight: inherit;
  text-shadow:
    0 1px 0 rgba(255,240,160,0.6),
    0 -1px 0 rgba(120,80,0,0.4),
    0 0 8px rgba(200,146,42,0.3);
}
.rascal-header {
  /* The "RASCAL" h4 heading — large, bold, gloss */
  font-family: 'Teko', sans-serif;
  font-size: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--gold-l);
  font-weight: 700;
  text-shadow:
    0 2px 0 rgba(255,240,160,0.5),
    0 -1px 0 rgba(100,60,0,0.5),
    0 0 12px rgba(200,146,42,0.4);
}
.general-name {
  color: #6B8E23;  /* Army olive green */
  font-weight: 700;
}
.zero-red       { color: var(--red); }
.compromise-gold{ color: var(--gold); }
 
/* Product Promise */
.product-promise {
  background: rgba(200,146,42,0.07);
  border: 1px solid rgba(200,146,42,0.25);
  padding: 24px;
  text-align: center;
  position: relative;
}
 
.promise-star {
  font-size: 22px; color: var(--gold); margin-bottom: 10px;
  animation: spin-slow 8s linear infinite;
  display: inline-block;
}
 
.promise-title {
  font-size: 22px; color: var(--gold-l); letter-spacing: 0.1em;
  margin-bottom: 12px;
}
 
.product-promise p {
  font-size: 13px; line-height: 1.8;
  color: rgba(247,242,232,0.75);
  font-style: italic;
}
 
 
/* ── Mission heading two-line layout ───────────────────────── */
.zero-compromise {
  display: block;
  color: var(--cream);
  font-style: italic;
  line-height: 1.1;
  margin-top: 4px;
}
 
 
/* ── Mission heading italic & swoosh ───────────────────────── */
.mission .section-head h2 em {
  font-style: italic;
  color: var(--cream);
}
.promise-gold {
  color: var(--gold);
  font-style: italic;
}
.swoosh-wrap {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}
.swoosh-underline {
  width: clamp(280px, 60%, 600px);
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(196,30,58,0.35));
}
 
/* ══════════════════════════════════════════════════════════════
   MISSION SECTION
══════════════════════════════════════════════════════════════ */
.mission { padding: 140px 40px; background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.mission .section-head h2 { color: var(--cream); }
.mission .section-head .eyebrow { color: var(--gold); }
.section-head { text-align: center; max-width: 800px; margin: 0 auto 80px; padding: 0 20px; }
.section-head h2 { font-size: clamp(48px,7vw,96px); color: var(--navy); margin-bottom: 22px; line-height: 0.9; }
.section-head h2 em { font-style: italic; color: var(--red); font-weight: 500; }
.mission-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 4px; }
.mission-card { padding: 50px 28px; background: var(--navy-deep); border: 1px solid rgba(200,146,42,0.15); text-align: center; transition: all 0.4s var(--ease); }
.mission-card:hover { background: var(--red); border-color: var(--red); transform: translateY(-6px); }
.mission-icon { width: 64px; height: 64px; margin: 0 auto 22px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 22px; transition: all 0.4s var(--ease); }
.mission-card:hover .mission-icon { border-color: var(--cream); color: var(--cream); transform: scale(1.1); }
.mission-card h3 { font-size: 24px; color: var(--cream); margin-bottom: 14px; letter-spacing: 0.04em; }
.mission-card p { font-size: 14px; line-height: 1.7; color: rgba(247,242,232,0.7); }
.mission-card:hover p { color: rgba(255,255,255,0.92); }
 
/* ══════════════════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════════════════ */
.contact { padding: 140px 40px; background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(196,30,58,0.15) 0%, transparent 60%); }
.contact .section-head h2 { color: var(--cream); }
.contact .section-head .eyebrow { color: var(--gold); }
.contact .section-head h2 em { color: var(--gold); }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; position: relative; z-index: 2; }
.contact-info h3 { font-family: 'Teko', sans-serif; font-size: 34px; color: var(--gold); margin-bottom: 28px; text-transform: uppercase; }
.contact-list { list-style: none; margin-bottom: 36px; }
.contact-list li { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(200,146,42,0.18); }
.contact-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 16px; flex-shrink: 0; }
.contact-meta .label { font-family: 'Teko', sans-serif; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 6px; }
.contact-meta .val { font-size: 15px; color: var(--cream); font-weight: 500; }
.contact-form { background: var(--navy-deep); padding: 48px 44px; border: 1px solid rgba(200,146,42,0.18); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: 'Teko', sans-serif; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 9px; }
.form-group input,.form-group textarea { width: 100%; padding: 13px 15px; background: rgba(247,242,232,0.04); border: 1px solid rgba(200,146,42,0.2); color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 15px; transition: all 0.3s ease; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus,.form-group textarea:focus { outline: none; border-color: var(--gold); background: rgba(247,242,232,0.08); }
.form-group input::placeholder,.form-group textarea::placeholder { color: rgba(247,242,232,0.4); }
.submit-btn { width: 100%; padding: 17px; background: var(--red); color: var(--cream); font-family: 'Teko', sans-serif; font-size: 18px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; border: 2px solid var(--red); transition: all 0.3s var(--ease); display: flex; align-items: center; justify-content: center; gap: 12px; cursor: pointer; }
.submit-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
 
/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer { background: var(--navy-deep); color: var(--cream); padding: 40px 40px 28px; border-top: 3px solid var(--gold); }
.foot-bottom { max-width: 1200px; margin: 0 auto; padding-top: 26px; border-top: 1px solid rgba(200,146,42,0.2); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.foot-bottom p,.foot-bottom a { font-size: 12px; color: rgba(247,242,232,0.5); letter-spacing: 0.1em; }
.vet-mark { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: 'Teko', sans-serif; letter-spacing: 0.2em; text-transform: uppercase; font-size: 13px; }
 
/* ══════════════════════════════════════════════════════════════
   CATEGORY PAGE OVERLAY
══════════════════════════════════════════════════════════════ */
.cat-overlay { position: fixed; top: 78px; left: 0; right: 0; bottom: 0; z-index: 800; background: var(--cream); transform: translateY(100%); transition: transform 0.5s var(--ease); overflow-y: auto; }
.cat-overlay.open { transform: translateY(0); }
.cat-page { max-width: 1300px; margin: 0 auto; padding: 0 24px 80px; }
.cat-page-header { position: sticky; top: 0; z-index: 10; background: var(--cream); padding: 20px 0 16px; display: flex; align-items: center; gap: 20px; border-bottom: 2px solid var(--gold); margin-bottom: 40px; }
.cat-back { display: flex; align-items: center; gap: 8px; font-family: 'Teko', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--navy); padding: 8px 16px; border: 2px solid var(--navy); transition: all 0.2s; }
.cat-back:hover { background: var(--navy); color: var(--cream); }
.cat-page-title { font-size: clamp(28px,5vw,52px); color: var(--navy); line-height: 1; }
.cat-page-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 28px; }
.cp-card { background: var(--bone); border: 1px solid var(--line); overflow: hidden; transition: all 0.4s var(--ease); display: flex; flex-direction: column; }
.cp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.cp-img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; cursor: pointer; }
.cp-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cp-card:hover .cp-img-wrap img { transform: scale(1.04); }
.cp-size-badge { position: absolute; top: 12px; right: 12px; background: var(--gold); color: var(--navy); font-family: 'Teko', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 10px; }
.cp-sold-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; pointer-events: none; }
.cp-sold-badge { background: var(--navy); color: var(--cream); font-family: 'Teko', sans-serif; font-size: 18px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 8px 20px; border: 2px solid var(--red); transform: rotate(-12deg); }
.cp-info { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.cp-cat { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.cp-name { font-size: 22px; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.cp-desc { font-size: 13px; color: rgba(11,31,61,0.7); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.cp-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); }
.cp-price { font-family: 'Teko', sans-serif; font-size: 28px; font-weight: 700; color: var(--navy); }
.cp-buy { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; background: var(--red); color: var(--cream); font-family: 'Teko', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; transition: background 0.2s; }
.cp-buy:hover { background: var(--navy); }
.cp-buy-disabled { padding: 10px 18px; background: #9ca3af; color: #fff; font-family: 'Teko', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; cursor: not-allowed; }
 
/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════════ */
.lightbox { position: fixed; top: 78px; left: 0; right: 0; bottom: 0; z-index: 1100; background: rgba(6,20,41,0.97); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.35s ease; overflow-y: auto; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-close { position: absolute; top: 16px; right: 20px; width: 52px; height: 52px; border-radius: 50%; background: rgba(11,31,61,0.9); color: var(--cream); font-size: 20px; z-index: 1110; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; transition: all 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.6); }
.lb-close:hover { background: var(--red); border-color: var(--red); transform: scale(1.1); }
.lb-prev,.lb-next { position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; background: rgba(247,242,232,0.1); color: var(--cream); font-size: 16px; z-index: 5; border: 1px solid rgba(247,242,232,0.2); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-prev:hover,.lb-next:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.lb-track-wrap { width: 100%; max-width: 680px; overflow: hidden; flex-shrink: 0; padding-top: 16px; }
.lb-track { display: flex; transition: transform 0.4s var(--ease); }
.lb-slide { flex: 0 0 100%; display: flex; align-items: center; justify-content: center; padding: 0 80px; }
.lb-slide img { max-height: 52vh; max-width: 100%; object-fit: contain; border-radius: 2px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lb-info-panel { width: 100%; max-width: 680px; padding: 16px 30px 20px; text-align: center; flex-shrink: 0; }
.lb-dots { display: flex; justify-content: center; gap: 8px; margin-bottom: 14px; }
.lb-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(247,242,232,0.3); transition: all 0.25s; cursor: pointer; }
.lb-dot.active { background: var(--gold); transform: scale(1.4); }
.lb-name { font-family: 'Teko', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--cream); margin-bottom: 4px; }
.lb-size { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.lb-desc { font-size: 13px; color: rgba(247,242,232,0.7); line-height: 1.6; margin-bottom: 16px; max-height: 56px; overflow: hidden; }
.lb-foot { display: flex; align-items: center; justify-content: center; gap: 20px; padding-top: 14px; border-top: 1px solid rgba(200,146,42,0.25); }
.lb-price { font-family: 'Teko', sans-serif; font-size: 32px; font-weight: 700; color: var(--gold); }
.lb-buy { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; background: var(--red); color: var(--cream); font-family: 'Teko', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; transition: background 0.2s; }
.lb-buy:hover { background: var(--gold); color: var(--navy); }
 
/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media(max-width:1100px) {
  .crew-grid { grid-template-columns: 1fr 340px 1fr; gap: 36px; }
  .love-grid { grid-template-columns: 1fr 1fr; }
  .love-center { grid-column: 1 / -1; order: -1; }
  .mission-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:900px) {
  .crew-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 22px 60px; }
  .porthole-col { order: 2; }
  .crew-bio-left { order: 1; }
  .crew-bio-right { order: 3; }
  .porthole-wood { width: 100%; max-width: 340px; margin: 0 auto; }
  .love-grid { grid-template-columns: 1fr; gap: 40px; }
  .love-center { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .mission,.contact { padding: 100px 22px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-slide { padding: 0 52px; }
  .lb-slide img { max-height: 40vh; }
}
@media(max-width:560px) {
  .gallery-grid { gap: 2px; }
  .cat-nav { display: none; }
  .tagline-strip { flex-wrap: wrap; gap: 12px; padding: 24px 16px; }
  .mission-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 22px 26px; }
  .foot-bottom { flex-direction: column; text-align: center; }
}
 
/* ══════════════════════════════════════════════════════════════
   COME ABOARD SECTION
══════════════════════════════════════════════════════════════ */
.come-aboard {
  background: var(--navy-deep) !important;
  padding: 100px 40px 80px;
  position: relative;
  overflow: hidden;
}
.come-aboard::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,30,58,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(200,146,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}
 
/* ── Header area ─────────────────────────────────────────────── */
.aboard-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.aboard-title {
  font-size: clamp(52px, 8vw, 100px);
  color: var(--cream);
  line-height: 0.9;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(200,146,42,0.2);
}
.aboard-tagline {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(247,242,232,0.88);
  line-height: 1.7;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
}
.aboard-red { color: var(--red); font-weight: 700; }
.aboard-bottle {
  font-family: 'Caveat', cursive;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--gold-l);
  line-height: 1.5;
}
.aboard-star {
  color: var(--gold);
  margin-right: 6px;
  font-size: 1.1em;
}
 
/* ── Success message ─────────────────────────────────────────── */
.form-success {
  text-align: center;
  padding: 40px 20px;
  color: var(--gold);
  max-width: 600px;
  margin: 0 auto 40px;
  border: 1px solid rgba(200,146,42,0.3);
  background: rgba(200,146,42,0.06);
}
.form-success i { font-size: 40px; margin-bottom: 16px; display: block; }
.form-success p {
  font-family: 'Teko', sans-serif; font-size: 22px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.form-success.hidden { display: none; }
 
/* ── Application form ────────────────────────────────────────── */
.aboard-form {
  max-width: 760px;
  margin: 0 auto 60px;
  position: relative; z-index: 2;
}
 
/* Radio buttons */
.aboard-radio-group {
  margin-bottom: 32px;
  text-align: center;
}
.radio-prompt {
  font-family: 'Teko', sans-serif;
  font-size: 16px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 18px;
}
.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin: 0 20px;
  position: relative;
}
.radio-label input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0;
}
.radio-custom {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid rgba(200,146,42,0.5);
  background: rgba(247,242,232,0.04);
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
  position: relative;
}
.radio-custom::after {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0; transition: opacity 0.2s ease;
}
.radio-label input[type="radio"]:checked ~ .radio-custom {
  border-color: var(--gold);
  background: rgba(200,146,42,0.1);
}
.radio-label input[type="radio"]:checked ~ .radio-custom::after { opacity: 1; }
.radio-text {
  font-family: 'Teko', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); transition: color 0.2s;
}
.radio-label input[type="radio"]:checked ~ .radio-text { color: var(--gold); }
 
/* Form fields — reuse contact styles on dark bg */
.aboard-fields .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px; }
.aboard-fields .form-group { margin-bottom: 20px; }
.aboard-fields .form-group label {
  display: block; font-family: 'Teko', sans-serif;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 9px;
}
.aboard-fields .form-group input,
.aboard-fields .form-group textarea {
  width: 100%; padding: 13px 15px;
  background: rgba(247,242,232,0.04);
  border: 1px solid rgba(200,146,42,0.2);
  color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: 15px;
  transition: all 0.3s ease; resize: vertical;
}
.aboard-fields .form-group input:focus,
.aboard-fields .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  background: rgba(247,242,232,0.08);
}
.aboard-fields .form-group input::placeholder,
.aboard-fields .form-group textarea::placeholder { color: rgba(247,242,232,0.35); }
.aboard-fields .form-group textarea { min-height: 110px; }
 
/* Submit button */
.aboard-submit-btn {
  width: 100%; padding: 17px;
  background: var(--red); color: var(--cream);
  font-family: 'Teko', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 2px solid var(--red); cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 8px;
}
.aboard-submit-btn:hover:not(:disabled) { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.aboard-submit-btn:disabled { background: var(--muted, #6B7280); border-color: transparent; cursor: not-allowed; }
 
/* ── Program description ─────────────────────────────────────── */
.program-desc {
  max-width: 760px; margin: 0 auto;
  padding: 36px 40px;
  border: 1px solid rgba(200,146,42,0.2);
  background: rgba(247,242,232,0.03);
  position: relative; z-index: 2;
  text-align: center;
}
.program-desc p {
  font-size: 15px; line-height: 1.85;
  color: rgba(247,242,232,0.75);
}
.program-desc strong { color: var(--gold-l); font-weight: 700; }
 
/* ── Responsive ──────────────────────────────────────────────── */
@media(max-width:700px) {
  .come-aboard { padding: 70px 22px 60px; }
  .aboard-fields .form-row { grid-template-columns: 1fr; }
  .program-desc { padding: 28px 22px; }
}
