/* ============================================
   MARK RAMPOLLA — Website Styles
   Brand: Navy / Coral / Sky Blue / Gradient
   ============================================ */

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

:root {
  --navy: #021E3E;
  --navy-deep: #01152B;
  --coral: #F77A43;
  --sky-blue: #7ACBF0;
  --off-white: #F7F8FA;
  --white: #FFFFFF;
  --pale-blue: #EBF5FB;
  --olive: #BABC33;
  --navy-light: rgba(2, 30, 62, 0.7);
  --navy-lighter: rgba(2, 30, 62, 0.04);
  --coral-hover: #e5693a;
  --text-body: #3a3a3a;
  --sky-blue-light: rgba(122, 203, 240, 0.12);
  --border-light: rgba(2, 30, 62, 0.08);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text-body);
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn--coral:hover {
  background: var(--coral-hover);
  border-color: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 122, 67, 0.3);
}

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

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: transparent;
  color: var(--navy);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 12px rgba(2, 30, 62, 0.06);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  transition: opacity 0.3s;
}

.nav__logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.nav.scrolled .nav__logo img {
  filter: none;
}

.nav--dark .nav__logo img {
  filter: none;
}

.nav--dark .nav__link {
  color: var(--navy);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s;
  position: relative;
}

.nav.scrolled .nav__link {
  color: var(--navy);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s;
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  padding: 8px 24px;
  border-radius: 50px;
  background: var(--coral);
  color: var(--white) !important;
  font-weight: 600;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--coral-hover);
  transform: translateY(-1px);
}

/* Mobile nav */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav.scrolled .nav__toggle span,
.nav--dark .nav__toggle span {
  background: var(--navy);
}

/* --- Hero (Homepage) --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, #0a3a6b 70%, #1a5a8a 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(122, 203, 240, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(247, 122, 67, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__label {
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 span {
  color: var(--coral);
}

.hero__tagline {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Section Spacing --- */
.section {
  padding: 100px 0;
}

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

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

.section--navy p {
  color: rgba(255,255,255,0.75);
}

.section--gradient {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 30%, #0e4470 60%, #1a5a8a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section--gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(247, 122, 67, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(122, 203, 240, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.section--gradient p {
  color: rgba(255,255,255,0.75);
}

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

.section__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.section__header .label {
  margin-bottom: 12px;
  display: block;
}

.section__header h2 {
  margin-bottom: 16px;
}

.section__header p {
  max-width: 600px;
  margin: 0 auto;
}

/* --- Founder Puberty Section --- */
.puberty__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.puberty__text h2 {
  margin-bottom: 20px;
}

.puberty__text p {
  margin-bottom: 16px;
}

.puberty__pull-quote {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  border-left: 4px solid var(--coral);
  padding-left: 24px;
  margin: 32px 0;
}

.puberty__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(2, 30, 62, 0.05);
  transition: transform 0.3s;
  border: 1px solid var(--border-light);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(2, 30, 62, 0.08);
}

.stat-card__number {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--coral);
  display: block;
  margin-bottom: 8px;
}

.stat-card__text {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--navy-light);
  line-height: 1.5;
}

/* --- Four Lenses --- */
.lenses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lens-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  border-top: 4px solid transparent;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(2, 30, 62, 0.04);
  border: 1px solid var(--border-light);
  border-top: 4px solid transparent;
}

.lens-card:nth-child(1) { border-top-color: var(--coral); }
.lens-card:nth-child(2) { border-top-color: var(--sky-blue); }
.lens-card:nth-child(3) { border-top-color: var(--olive); }
.lens-card:nth-child(4) { border-top-color: var(--navy); }

.lens-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(2, 30, 62, 0.1);
  border-color: transparent;
}

.lens-card:nth-child(1):hover { border-top-color: var(--coral); }
.lens-card:nth-child(2):hover { border-top-color: var(--sky-blue); }
.lens-card:nth-child(3):hover { border-top-color: var(--olive); }
.lens-card:nth-child(4):hover { border-top-color: var(--navy); }

.lens-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.lens-card h4 {
  margin-bottom: 12px;
  color: var(--navy);
}

.lens-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Archetypes Section --- */
.archetypes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.archetype {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.archetype:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--coral);
  transform: translateY(-2px);
}

.archetype__marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  margin-top: 8px;
}

.archetype h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.archetype p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* --- Book Section --- */
.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.book__image {
  position: relative;
}

.book__cover {
  max-width: 360px;
  margin: 0 auto;
}

.book__text h2 {
  margin-bottom: 20px;
}

.book__text p {
  margin-bottom: 16px;
}

.book__text .btn {
  margin-top: 16px;
}

.book__quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--coral);
  padding-left: 20px;
  margin: 24px 0;
  font-weight: 400;
}

.book__quote cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--coral);
  margin-top: 8px;
  font-weight: 600;
}

/* --- CTA Banner --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #0e4470 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(247, 122, 67, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(122, 203, 240, 0.08) 0%, transparent 40%);
}

.cta-banner__inner {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 32px;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, #0e4470 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(122, 203, 240, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
  position: relative;
}

/* --- About Page --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.about__photo {
  border-radius: 16px;
  width: 100%;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(2, 30, 62, 0.15);
}

.about__bio h3 {
  margin-bottom: 16px;
}

.about__bio p {
  margin-bottom: 16px;
}

.about__credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.credential {
  text-align: center;
  padding: 24px 16px;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.credential__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  display: block;
}

.credential__text {
  font-size: 0.82rem;
  color: var(--navy-light);
  margin-top: 4px;
}

/* --- Media Page --- */
.media__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(2, 30, 62, 0.04);
  transition: all 0.3s;
  border: 1px solid var(--border-light);
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(2, 30, 62, 0.12);
  border-color: transparent;
}

.media-card__type {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.media-card__type--watch {
  background: rgba(247, 122, 67, 0.12);
  color: var(--coral);
}

.media-card__type--listen {
  background: var(--sky-blue-light);
  color: #1a8fc4;
}

.media-card__type--read {
  background: rgba(186, 188, 51, 0.15);
  color: #7a7b22;
}

.media-card__body {
  padding: 28px 24px;
}

.media-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.media-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--navy-light);
}

.media-card__link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-card__link:hover {
  text-decoration: underline;
}

/* --- Contact Page --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.contact__info h3 {
  margin-bottom: 16px;
}

.contact__info p {
  margin-bottom: 24px;
}

.contact__social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.contact__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--off-white);
  color: var(--navy);
  transition: all 0.3s;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
}

.contact__social a:hover {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.contact__form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(2, 30, 62, 0.06);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px var(--sky-blue-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- Work With Mark (Coming Soon) --- */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, #0e4470 70%, #1a5a8a 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(247, 122, 67, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(122, 203, 240, 0.08) 0%, transparent 50%);
}

.coming-soon__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.coming-soon .label {
  margin-bottom: 20px;
  display: block;
}

.coming-soon h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.coming-soon h1 span {
  color: var(--coral);
}

.coming-soon__tagline {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 32px;
}

.coming-soon__desc {
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.coming-soon__email {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.coming-soon__email input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
}

.coming-soon__email input::placeholder {
  color: rgba(255,255,255,0.4);
}

.coming-soon__email input:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px rgba(122, 203, 240, 0.2);
}

.coming-soon__fine {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.coming-soon__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 72px;
  text-align: center;
}

.cs-feature__icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  display: block;
}

.cs-feature h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.cs-feature p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* --- Hero with Portrait --- */
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero__portrait {
  position: relative;
}

.hero__portrait img {
  width: 100%;
  max-width: 440px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  display: block;
}

@media (max-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__portrait {
    order: -1;
    text-align: center;
  }
  .hero__portrait img {
    max-width: 300px;
  }
}

/* --- Footer --- */
.footer {
  background: var(--navy-deep);
  padding: 60px 0 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__links {
  display: flex;
  gap: 28px;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer__social a:hover {
  color: var(--coral);
}

/* --- Top Banner --- */
.top-banner {
  background: var(--navy);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.top-banner p {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}

.top-banner a {
  color: var(--sky-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-banner a:hover {
  opacity: 0.85;
}

.nav--has-banner {
  top: 38px;
}

.nav--has-banner.scrolled {
  top: 0;
}

/* --- Media Card Thumbnails --- */
.media-card__thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.media-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.media-card:hover .media-card__thumb img {
  transform: scale(1.05);
}

a.media-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* --- Ebook Section --- */
.ebook__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.ebook__text h2 {
  margin-bottom: 20px;
}

.ebook__text p {
  margin-bottom: 20px;
}

.ebook__list {
  list-style: none;
  padding: 0;
}

.ebook__list li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-body);
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.6;
}

.ebook__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

.ebook__form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(2, 30, 62, 0.08);
  border: 1px solid var(--border-light);
}

.ebook__form-card h4 {
  margin-bottom: 24px;
  text-align: center;
}

.ebook__form .form-group {
  margin-bottom: 16px;
}

.ebook__form input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.ebook__form input:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px var(--sky-blue-light);
}

.ebook__fine {
  font-size: 0.75rem;
  color: var(--navy-light);
  text-align: center;
  margin-top: 12px;
}

.ebook__success {
  text-align: center;
  padding: 24px 0;
}

/* --- Instagram Section --- */
.instagram-section {
  padding: 80px 0;
  background: var(--off-white);
}

.instagram__header {
  text-align: center;
}

.instagram__header h2 {
  margin-bottom: 16px;
  color: var(--navy);
}

.instagram__header p {
  max-width: 560px;
  margin: 0 auto;
}

/* --- Playbook Landing Page --- */
.playbook-hero {
  padding: 140px 0 80px;
  background: var(--white);
  position: relative;
}

.playbook-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.playbook-hero__content .label {
  display: block;
  margin-bottom: 16px;
}

.playbook-hero__content h1 {
  margin-bottom: 12px;
}

.playbook-hero__subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
}

.playbook-hero__desc {
  margin-bottom: 32px;
}

.playbook-hero__form-wrap {
  max-width: 480px;
}

.playbook-hero__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.playbook-hero__inputs input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.playbook-hero__inputs input:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px var(--sky-blue-light);
}

.playbook-hero__fine {
  font-size: 0.75rem;
  color: var(--navy-light);
  text-align: center;
  margin-top: 10px;
}

.playbook-hero__mockup {
  display: flex;
  justify-content: center;
}

.playbook-hero__book-cover {
  width: 280px;
  min-height: 380px;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, #0e4470 100%);
  border-radius: 8px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(2, 30, 62, 0.25), 4px 4px 0 rgba(2, 30, 62, 0.15);
  position: relative;
  overflow: hidden;
}

.playbook-hero__book-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(247, 122, 67, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(122, 203, 240, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.playbook-hero__book-cover * {
  position: relative;
  z-index: 1;
}

.playbook-hero__book-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  display: block;
}

.playbook-hero__book-cover h3 {
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.playbook-hero__book-cover p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin-bottom: 24px;
}

.playbook-hero__book-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  display: block;
  margin-top: auto;
}

/* Pull Quotes */
.playbook-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.playbook-quote {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  border-left: 3px solid var(--coral);
  padding-left: 24px;
  margin: 0;
  font-style: normal;
}

/* Credibility */
.playbook-credibility {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.playbook-credibility__text p {
  margin-bottom: 16px;
}

.playbook-credibility__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* 7 Shifts */
.playbook-shifts__grid {
  max-width: 800px;
  margin: 0 auto;
}

.playbook-shift {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}

.playbook-shift:last-child {
  border-bottom: none;
}

.playbook-shift__number {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--coral);
  flex-shrink: 0;
  width: 48px;
  line-height: 1;
  padding-top: 4px;
}

.playbook-shift h4 {
  margin-bottom: 4px;
  color: var(--navy);
}

.playbook-shift p {
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Qualifier */
.playbook-qualifier {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.playbook-qualifier__list {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.playbook-qualifier__list li {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-body);
  padding: 10px 0 10px 28px;
  position: relative;
  line-height: 1.6;
}

.playbook-qualifier__list--yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--coral);
  border-radius: 50%;
}

.playbook-qualifier__list--no li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 2px;
  background: var(--navy-light);
  margin-top: 4px;
}

/* Final CTA */
.playbook-final-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.playbook-final-cta__text h2 {
  margin-bottom: 16px;
}

.playbook-final-cta__text p {
  margin-bottom: 12px;
}

/* --- Workshop Landing Page --- */
.workshop-hero {
  padding: 140px 0 80px;
  background: var(--white);
}

.workshop-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.workshop-hero__content .label {
  display: block;
  margin-bottom: 16px;
}

.workshop-hero__content h1 {
  margin-bottom: 8px;
}

.workshop-hero__subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy-light);
  margin-bottom: 20px;
  font-style: italic;
}

.workshop-hero__desc {
  margin-bottom: 32px;
}

.workshop-hero__form-wrap {
  max-width: 480px;
}

.workshop-hero__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.workshop-hero__inputs input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--navy);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.workshop-hero__inputs input:focus {
  outline: none;
  border-color: var(--sky-blue);
  box-shadow: 0 0 0 3px var(--sky-blue-light);
}

.workshop-hero__fine {
  font-size: 0.75rem;
  color: var(--navy-light);
  text-align: center;
  margin-top: 10px;
}

.workshop-hero__image img {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(2, 30, 62, 0.15);
  margin: 0 auto;
  display: block;
}

.workshop-hero__video {
  width: 100%;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, #0e4470 100%);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(2, 30, 62, 0.2);
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(247, 122, 67, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(122, 203, 240, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.video-placeholder__play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  padding-left: 4px;
  position: relative;
  z-index: 1;
}

.video-placeholder__text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Credibility Bar */
.cred-bar {
  background: var(--navy);
  padding: 28px 0;
}

.cred-bar__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cred-bar__item {
  text-align: center;
  flex: 1;
}

.cred-bar__number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
  display: block;
  margin-bottom: 4px;
}

.cred-bar__text {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Workshop Checklist */
.workshop-checklist {
  list-style: none;
  padding: 0;
}

.workshop-checklist li {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-body);
  padding: 12px 0 12px 32px;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid var(--border-light);
}

.workshop-checklist li:last-child {
  border-bottom: none;
}

.workshop-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--coral);
  border-radius: 3px;
}

/* What You'll Learn */
.workshop-learns__grid {
  max-width: 800px;
  margin: 0 auto;
}

.workshop-learn {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
}

.workshop-learn:last-child {
  border-bottom: none;
}

.workshop-learn__icon {
  color: var(--coral);
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 6px;
}

.workshop-learn h4 {
  margin-bottom: 6px;
  color: var(--navy);
}

.workshop-learn p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Host Section */
.workshop-host {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.workshop-host__photo img {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(2, 30, 62, 0.15);
}

.workshop-host__bio p {
  margin-bottom: 16px;
}

/* Credential Cards */
.workshop-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.workshop-cred {
  text-align: center;
  padding: 20px 16px;
  background: var(--off-white);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* Workshop Qualifier */
.workshop-qualifier {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

/* Workshop Details */
.workshop-details__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.workshop-detail {
  padding: 24px 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.workshop-detail h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 8px;
}

.workshop-detail p {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 400;
}

/* Workshop Blockquote */
.workshop-blockquote {
  position: relative;
  z-index: 2;
}

.workshop-blockquote p {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 20px;
}

.workshop-blockquote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--coral);
  font-weight: 600;
}

/* Workshop Final CTA */
.workshop-final-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.workshop-final-cta__text h2 {
  margin-bottom: 16px;
}

.workshop-final-cta__text p {
  margin-bottom: 12px;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .lenses__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .puberty__grid,
  .book__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__credentials {
    grid-template-columns: repeat(3, 1fr);
  }

  .media__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .archetypes__grid {
    grid-template-columns: 1fr;
  }

  .coming-soon__features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ebook__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .playbook-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .playbook-hero__image {
    order: -1;
    text-align: center;
  }

  .playbook-hero__book-cover {
    width: 220px;
    min-height: 300px;
    margin: 0 auto;
    padding: 36px 24px;
  }

  .playbook-quotes {
    grid-template-columns: 1fr;
  }

  .playbook-credibility {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .playbook-qualifier {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .playbook-final-cta {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshop-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshop-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshop-hero__video {
    order: -1;
  }

  .workshop-hero__image {
    order: -1;
    text-align: center;
  }

  .workshop-hero__image img {
    max-width: 280px;
  }

  .cred-bar__grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  .cred-bar__item {
    flex: 0 0 auto;
    min-width: 120px;
  }

  .workshop-host {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshop-host__photo {
    text-align: center;
  }

  .workshop-host__photo img {
    max-width: 280px;
  }

  .workshop-creds {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-qualifier {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .workshop-details__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-final-cta {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links .nav__link {
    color: var(--navy) !important;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 140px 0 60px;
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }

  .lenses__grid {
    grid-template-columns: 1fr;
  }

  .puberty__stats {
    grid-template-columns: 1fr 1fr;
  }

  .about__credentials {
    grid-template-columns: 1fr 1fr;
  }

  .media__grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .coming-soon__email {
    flex-direction: column;
  }

  .top-banner p {
    font-size: 0.75rem;
  }

  .playbook-hero {
    padding: 120px 0 60px;
  }

  .playbook-hero__inputs {
    grid-template-columns: 1fr;
  }

  .playbook-credibility__stats {
    grid-template-columns: 1fr 1fr;
  }

  .workshop-hero {
    padding: 120px 0 60px;
  }

  .workshop-hero__inputs {
    grid-template-columns: 1fr;
  }

  .cred-bar__grid {
    gap: 16px;
  }

  .cred-bar__number {
    font-size: 1.2rem;
  }

  .workshop-creds {
    grid-template-columns: 1fr;
  }

  .workshop-details__grid {
    grid-template-columns: 1fr 1fr;
  }

  .workshop-blockquote p {
    font-size: 1.15rem;
  }
}
