/* Palmetto Bass Academy — premium coaching brand */
:root {
  --navy: #0b1f33;
  --palmetto: #1f4d3a;
  --lake: #1e5f74;
  --sand: #f4efe6;
  --off-white: #fafaf7;
  --accent: #b9472f;
  --text: #16211f;
  --muted: #5f6b66;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(11, 31, 51, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 51, 0.1);
  --shadow-lg: 0 20px 50px rgba(11, 31, 51, 0.14);
  --radius: 14px;
  --radius-lg: 20px;
  --font-heading: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5.5rem;
  --max-width: 1120px;
  --nav-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--lake);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid var(--lake);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: var(--space-sm);
  top: var(--space-sm);
  width: auto;
  height: auto;
  padding: var(--space-xs) var(--space-sm);
  background: var(--white);
  z-index: 10000;
}

/* Netlify honeypot — hidden from view, still in DOM */
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Layout ——— */
.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

@media (max-width: 400px) {
  .container {
    width: min(100% - 1.25rem, var(--max-width));
  }
}

.section {
  padding-block: var(--space-xl);
}

.section--sand {
  background: var(--sand);
}

.section--white {
  background: var(--white);
}

.section--dark {
  background: linear-gradient(160deg, var(--navy) 0%, #0a1628 50%, var(--palmetto) 100%);
  color: var(--off-white);
}

.section__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--space-sm);
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.375rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 var(--space-md);
  color: var(--text);
  overflow-wrap: break-word;
}

.section--dark .section__title {
  color: var(--off-white);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38rem;
  margin: 0 0 var(--space-lg);
}

.section--dark .section__lead {
  color: rgba(244, 239, 230, 0.85);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  padding: 0.95rem 1.75rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease, color 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--lake);
  outline-offset: 3px;
}

.btn--primary:focus-visible,
.btn--solid-light:focus-visible {
  outline-color: var(--off-white);
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  background: #a33d28;
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--off-white);
  border-color: rgba(250, 250, 247, 0.45);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(250, 250, 247, 0.7);
}

.btn--solid-light {
  background: var(--off-white);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn--solid-light:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn--outline-dark {
  background: transparent;
  color: var(--palmetto);
  border-color: var(--palmetto);
}

.btn--outline-dark:hover {
  background: var(--palmetto);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero__card-copy {
  margin: var(--space-md) 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(244, 239, 230, 0.88);
}

/* ——— Header / Nav ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11, 31, 51, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  gap: var(--space-md);
  min-width: 0;
}

/* Logo: header (assets/logo.png) */
.nav__brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}

.nav__brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.nav__logo {
  display: block;
  width: auto;
  max-width: min(100%, 200px);
  max-height: clamp(38px, 10vw, 48px);
  height: auto;
  object-fit: contain;
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  position: relative;
}

.nav__toggle-bar::before,
.nav__toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav__toggle-bar::before {
  top: -7px;
}

.nav__toggle-bar::after {
  top: 7px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text);
  text-decoration: none;
}

.nav__links a:hover {
  color: var(--lake);
  text-decoration: none;
}

.nav__cta .btn {
  padding: 0.75rem 1.35rem;
  font-size: 0.9375rem;
}

@media (max-width: 768px) {
  .nav {
    gap: var(--space-xs);
  }

  .nav__brand {
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100vw - 4.5rem);
  }

  .nav__toggle {
    display: flex;
    flex-shrink: 0;
  }

  .nav__menu {
    position: fixed;
    inset: var(--nav-height) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--off-white);
    padding: var(--space-md);
    border-bottom: 1px solid rgba(11, 31, 51, 0.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .nav__links a {
    font-size: 1.125rem;
    padding-block: 0.35rem;
  }

  .nav__cta {
    width: 100%;
  }

  .nav__cta .btn {
    width: 100%;
    margin-top: var(--space-sm);
  }

  body.nav-open {
    overflow: hidden;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  padding-block: var(--space-2xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2840 42%, var(--palmetto) 100%);
  color: var(--off-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 70% 20%, rgba(30, 95, 116, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 10% 90%, rgba(31, 77, 58, 0.4), transparent 50%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr minmax(280px, 380px);
    gap: var(--space-lg);
  }
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.85);
  margin: 0 0 var(--space-sm);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 var(--space-md);
  color: var(--off-white);
  overflow-wrap: break-word;
}

.hero__copy {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.88);
  max-width: 36rem;
  margin: 0 0 var(--space-lg);
}

.hero__card {
  background: rgba(250, 250, 247, 0.08);
  border: 1px solid rgba(250, 250, 247, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.hero__card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 var(--space-md);
  color: var(--off-white);
}

/* ——— Cards ——— */
.card-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .card-grid--5 {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .card-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--5 .rhythm-card:last-child {
    grid-column: 1 / -1;
    max-width: 24rem;
    margin-inline: auto;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 31, 51, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: var(--navy);
}

.card__text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* F.I.S.H. framework cards */
.fish-grid {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .fish-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .fish-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fish-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-radius: var(--radius);
  padding: var(--space-lg);
  border: 1px solid rgba(30, 95, 116, 0.12);
  box-shadow: var(--shadow-sm);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.fish-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--palmetto), var(--lake));
}

.fish-card__letter {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--lake);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-xs);
}

.fish-card__word {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 var(--space-sm);
}

.fish-card__desc {
  margin: 0;
  font-size: 0.9875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Session cards */
.sessions-grid {
  display: grid;
  gap: var(--space-md);
}

.sessions-grid > * {
  min-width: 0;
}

@media (min-width: 720px) {
  .sessions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sessions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.session-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(11, 31, 51, 0.08);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.session-card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--sand);
}

.session-card__meta {
  margin-bottom: var(--space-sm);
}

.session-card__label {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.35rem;
}

.session-card__value {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.session-card__focus {
  flex: 1;
  margin-bottom: var(--space-md);
}

.session-card__focus ul {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.session-card__focus li {
  margin-bottom: 0.35rem;
}

.session-card .btn {
  width: 100%;
  margin-top: auto;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(244, 239, 230, 0.85);
  padding-block: var(--space-xl);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.site-footer__name {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.0625rem, 2.8vw, 1.25rem);
  color: var(--off-white);
}

.site-footer__tagline {
  margin: 0 0 var(--space-xs);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.site-footer__loc {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(244, 239, 230, 0.65);
}

.site-footer__email {
  margin: 0;
  font-size: 0.9375rem;
}

.site-footer__email a {
  font-weight: 600;
  word-break: break-all;
}

.site-footer a {
  color: rgba(244, 239, 230, 0.9);
}

/* Logo: footer (assets/logo.png) */
.site-footer__brand {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}

.site-footer__brand:hover {
  opacity: 0.92;
  text-decoration: none;
}

.site-footer__logo {
  display: block;
  width: auto;
  max-width: min(100%, 300px);
  max-height: clamp(72px, 14vw, 96px);
  height: auto;
  object-fit: contain;
}

.site-footer__cta {
  margin: var(--space-xs) 0;
}

.btn--footer {
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
}

.site-footer__copy {
  margin: var(--space-sm) 0 0;
  font-size: 0.8125rem;
  color: rgba(244, 239, 230, 0.55);
}

/* Logo badge: hero (assets/logo-badge.png) */
.hero__main {
  position: relative;
}

.hero__body {
  min-width: 0;
}

.hero__badge-wrap {
  flex-shrink: 0;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
}

.hero__badge-img {
  display: block;
  width: clamp(6.5rem, 28vw, 9rem);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (min-width: 900px) {
  .hero__main {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: var(--space-lg);
    align-items: center;
  }

  .hero__badge-wrap {
    margin-bottom: 0;
    grid-row: 1;
    align-self: center;
  }

  .hero__badge-img {
    width: clamp(7.5rem, 11vw, 9.5rem);
  }

  .hero__body {
    grid-column: 2;
  }
}

.hero__tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: rgba(244, 239, 230, 0.95);
  margin: -0.5rem 0 var(--space-lg);
  max-width: 36rem;
}

.hero__buttons {
  align-items: stretch;
}

@media (max-width: 640px) {
  .hero__buttons {
    flex-direction: column;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

.chip-row {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(30, 95, 116, 0.35);
  border: 1px solid rgba(250, 250, 247, 0.2);
  color: var(--off-white);
  max-width: 100%;
}

.hero__aside {
  align-self: stretch;
}

.hero__card .hero__card-title {
  font-size: 1.35rem;
}


/* ——— Academy join-in section ——— */
.academy-intro {
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--space-sm);
}

.academy-list {
  margin: 0 0 var(--space-lg);
  padding-left: 1.25rem;
  color: var(--muted);
}

.academy-list li {
  margin-bottom: 0.4rem;
}

.academy-close {
  margin: 0;
  font-size: 1.0625rem;
  color: var(--text);
  max-width: 42rem;
  line-height: 1.7;
}

/* ——— Academy Ladder ——— */
.section--ladder {
  background: linear-gradient(165deg, #071424 0%, var(--navy) 38%, #0f3048 100%);
}

.section--ladder .section__eyebrow {
  color: rgba(250, 250, 247, 0.75);
}

.ladder {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.ladder::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 3px;
  background: linear-gradient(180deg, var(--lake), var(--palmetto));
  border-radius: 3px;
  opacity: 0.6;
}

.ladder__step {
  position: relative;
  padding: var(--space-md) 0 var(--space-md) 3.25rem;
  border-bottom: 1px solid rgba(250, 250, 247, 0.08);
}

.ladder__step:last-child {
  border-bottom: none;
}

.ladder__num {
  position: absolute;
  left: 0;
  top: var(--space-md);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--palmetto), var(--lake));
  color: var(--off-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.ladder__title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0 0 var(--space-xs);
  color: var(--off-white);
}

.ladder__text {
  margin: 0;
  font-size: 0.9875rem;
  line-height: 1.6;
  color: rgba(244, 239, 230, 0.82);
}

@media (min-width: 960px) {
  .ladder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-md);
  }

  .ladder::before {
    display: none;
  }

  .ladder__step {
    padding: var(--space-md) var(--space-sm);
    border-bottom: none;
    background: rgba(250, 250, 247, 0.06);
    border: 1px solid rgba(250, 250, 247, 0.1);
    border-radius: var(--radius);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ladder__num {
    position: static;
    margin-bottom: var(--space-sm);
  }

  .ladder__title {
    font-size: 1rem;
  }

  .ladder__text {
    font-size: 0.875rem;
  }
}

@media (min-width: 1200px) {
  .ladder {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

/* F.I.S.H. quote */
.section-quote {
  margin: var(--space-lg) 0 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--navy);
  border-left: 4px solid var(--lake);
  padding-left: var(--space-md);
  max-width: 36rem;
}

/* Session cards — pricing + flagship */
.session-card__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(11, 31, 51, 0.08);
}

.session-card__price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.session-card__duration {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--muted);
}

.session-card--flagship {
  position: relative;
  background: linear-gradient(180deg, #fafdf9 0%, #eef6f3 100%);
  border: 2px solid var(--palmetto);
  box-shadow: var(--shadow-lg);
  padding-top: calc(var(--space-lg) + 0.5rem);
}

.session-card__badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.session-card--flagship .session-card__title {
  padding-right: 5rem;
}

.pull-quote {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--navy);
  margin: var(--space-lg) 0 0;
}

.pull-quote a {
  color: var(--palmetto);
  font-weight: 700;
}

.pull-quote a:hover {
  color: var(--lake);
}

/* Built-for list */
.built-list {
  margin: var(--space-sm) 0 0;
  padding-left: 1.25rem;
  max-width: 40rem;
  color: var(--muted);
}

.built-list li {
  margin-bottom: 0.5rem;
}

/* Future programs (not bookable) */
.section--future .section__eyebrow {
  color: var(--muted);
}

.future-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-md);
}

.future-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 600px) {
  .future-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .future-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.future-card {
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(31, 77, 58, 0.35);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9875rem;
}

.future-note {
  margin: var(--space-md) 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 40rem;
  font-style: italic;
}

/* About block */
.about-block__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 40rem;
}

.about-block__body p {
  margin: 0 0 var(--space-md);
}

.about-block__body p:last-child {
  margin-bottom: 0;
}

/* Join section + form */
.join-section {
  padding-bottom: var(--space-2xl);
}

/* Logo badge: join (assets/logo-badge.png; smaller than hero) */
.join-section__badge {
  text-align: center;
  margin-bottom: var(--space-sm);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
}

.join-section__badge-img {
  display: block;
  width: clamp(3.75rem, 16vw, 5.25rem);
  height: auto;
  max-width: 100%;
  margin-inline: auto;
  object-fit: contain;
}

.join-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  color: var(--off-white);
  text-align: center;
}

.join-section__lead {
  margin: 0 auto var(--space-md);
  max-width: 40rem;
  text-align: center;
  font-size: 1.125rem;
  color: rgba(244, 239, 230, 0.88);
  line-height: 1.65;
}

.join-section__loc {
  text-align: center;
  color: rgba(244, 239, 230, 0.7);
  margin: 0 0 var(--space-lg);
  font-size: 0.9375rem;
}

.join-panel {
  max-width: 36rem;
  margin-inline: auto;
  background: rgba(250, 250, 247, 0.06);
  border: 1px solid rgba(250, 250, 247, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.join-panel__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--off-white);
  margin: 0 0 var(--space-sm);
  text-align: center;
}

.join-panel__hint {
  margin: 0 0 var(--space-sm);
  font-size: 0.9375rem;
  color: rgba(244, 239, 230, 0.75);
  text-align: center;
  line-height: 1.55;
}

.join-panel__reassurance {
  margin: 0 0 var(--space-lg);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  color: rgba(244, 239, 230, 0.92);
}

.join-form__row {
  margin-bottom: var(--space-md);
}

.join-form__row--half {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 500px) {
  .join-form__row--half {
    grid-template-columns: 1fr 1fr;
  }
}

.join-form__label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.85);
  margin-bottom: 0.4rem;
}

.join-form__optional {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(244, 239, 230, 0.55);
}

.join-form__input {
  width: 100%;
  max-width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(250, 250, 247, 0.2);
  background: rgba(250, 250, 247, 0.95);
  color: var(--text);
}

.join-form__input:focus-visible {
  outline: 3px solid var(--lake);
  outline-offset: 2px;
  border-color: rgba(30, 95, 116, 0.55);
}

.join-form__textarea {
  min-height: 6rem;
  resize: vertical;
}

.join-form__select {
  cursor: pointer;
}

.join-form__submit {
  width: 100%;
  margin-top: var(--space-sm);
}

.join-panel__alt {
  margin: var(--space-md) 0 0;
  text-align: center;
  font-size: 0.9375rem;
  color: rgba(244, 239, 230, 0.7);
}

.join-panel__alt a {
  color: rgba(244, 239, 230, 0.95);
  font-weight: 600;
}

.join-panel__alt a:hover {
  color: var(--off-white);
}

/* Thank you page */
.thank-you-page {
  padding-block: var(--space-2xl);
}

.thank-you {
  max-width: 36rem;
  margin-inline: auto;
  text-align: center;
}

.thank-you__title {
  margin-bottom: var(--space-md);
}

.thank-you__lead {
  margin: 0 0 var(--space-lg);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
}

.thank-you__cta {
  margin: 0 0 var(--space-md);
}

.thank-you__email {
  margin: 0;
  font-size: 1.0625rem;
}

.thank-you__email a {
  font-weight: 600;
  color: var(--lake);
}
