:root {
  --cream: #fbf7f1;
  --cream-deep: #f3eadf;
  --sand: #efe2d1;
  --sage: #dce9dd;
  --sage-deep: #c9d9c9;
  --rose: #f4d8d6;
  --lavender: #e7ddff;
  --ink: #2d2b32;
  --muted: #6c6573;
  --purple: #7553d9;
  --purple-dark: #5c3dbc;
  --terracotta: #b87962;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(69, 54, 93, 0.12);
  --soft-shadow: 0 16px 35px rgba(86, 72, 56, 0.1);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(244, 216, 214, 0.42), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(220, 233, 221, 0.56), transparent 32rem),
    var(--cream);
  color: var(--ink);
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 247, 241, 0.92);
  border-bottom: 1px solid rgba(86, 72, 56, 0.1);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(10px, 1.5vw, 14px);
  color: #766961;
  font-family: Georgia, "Times New Roman", serif;
  text-decoration: none;
  white-space: nowrap;
}

.logo-mark {
  display: block;
  width: clamp(72px, 7vw, 96px);
  height: auto;
  flex: 0 0 auto;
  border: 2px solid rgba(185, 148, 79, 0.34);
  border-radius: 0;
  background: transparent;
  box-shadow: 0 10px 26px rgba(86, 72, 56, 0.12);
  object-fit: contain;
}

.logo-text {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.logo-amp {
  color: #b9944f;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 0.94rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--purple-dark);
}

.hero,
.page-hero,
section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 20px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: center;
  gap: 34px;
  min-height: 620px;
}

.topic-hero {
  min-height: 560px;
  padding-bottom: 42px;
}

.hero-content,
.page-hero,
.tinted-section,
.cta-section {
  background:
    radial-gradient(circle at top left, rgba(244, 216, 214, 0.9), transparent 38%),
    radial-gradient(circle at bottom right, rgba(220, 233, 221, 0.95), transparent 42%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.96), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(86, 72, 56, 0.1);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

.hero-content {
  padding: clamp(34px, 6vw, 70px);
}

.topic-hero-content {
  position: relative;
  overflow: hidden;
}

.topic-hero-content::after {
  content: "";
  position: absolute;
  right: clamp(22px, 6vw, 70px);
  bottom: clamp(18px, 4vw, 42px);
  width: 112px;
  height: 112px;
  border: 1px solid rgba(184, 121, 98, 0.28);
  border-radius: 50%;
  box-shadow: inset 22px 0 0 rgba(220, 233, 221, 0.42);
  opacity: 0.75;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: clamp(2.45rem, 7vw, 5rem);
  letter-spacing: -0.05em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.hero-copy,
.page-hero p,
.section-heading p,
.cta-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(117, 83, 217, 0.24);
}

.button-primary:hover,
.button-primary:focus {
  background: var(--purple-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--purple-dark);
  border: 1px solid rgba(117, 83, 217, 0.18);
}

.hero-card,
.info-card,
.topic-card,
.video-card,
.quote-card,
details {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(86, 72, 56, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
}

.intention-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(243, 234, 223, 0.82)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.hero-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.hero-card strong {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.topics-section {
  padding-top: 32px;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.topic-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  align-items: center;
  min-height: 150px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.topic-card:hover,
.topic-card:focus {
  transform: translateY(-4px);
  border-color: rgba(117, 83, 217, 0.24);
  box-shadow: 0 24px 55px rgba(86, 72, 56, 0.14);
}

.topic-icon {
  display: inline-grid;
  grid-row: span 2;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1.5px solid rgba(92, 61, 188, 0.18);
  border-radius: 20px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.95), transparent 42%),
    var(--cream-deep);
  color: var(--purple-dark);
  font-size: 1.55rem;
  line-height: 1;
}

.topic-label {
  align-self: end;
  font-size: clamp(1.16rem, 2.3vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
}

.topic-note {
  align-self: start;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}
.affirmation-result {
  position: relative;
  overflow: hidden;
  max-width: 820px;
  margin: clamp(26px, 5vw, 42px) auto 0;
  padding: clamp(28px, 5vw, 44px);
  text-align: center;
  background:
    radial-gradient(circle at 18% 14%, rgba(244, 216, 214, 0.78), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(220, 233, 221, 0.9), transparent 36%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.98), rgba(250, 244, 237, 0.96));
  border: 1px solid rgba(86, 72, 56, 0.11);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 22px 58px rgba(86, 72, 56, 0.13);
}

.affirmation-result::before {
  content: "✧";
  position: absolute;
  top: 20px;
  right: clamp(20px, 5vw, 38px);
  color: rgba(92, 61, 188, 0.16);
  font-size: clamp(2.2rem, 8vw, 4.6rem);
  line-height: 1;
}

.affirmation-result[hidden] {
  display: none;
}

.affirmation-kicker,
.affirmation-library-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.affirmation-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.affirmation-result h3 {
  position: relative;
  margin: 8px 0 18px;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  line-height: 1.15;
}

.affirmation-message {
  max-width: 660px;
  margin: 0 auto 18px;
  color: var(--purple-dark);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.45;
}

.affirmation-support {
  max-width: 620px;
  margin: 0 auto 24px;
  color: var(--ink);
  font-size: 1.02rem;
}

.affirmation-library-note {
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.topic-card.is-selected {
  border-color: rgba(92, 61, 188, 0.28);
  box-shadow: 0 24px 55px rgba(86, 72, 56, 0.16);
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.path-grid .info-card:first-child,
.path-grid .info-card:nth-child(2) {
  grid-column: span 1;
}

.info-card {
  display: block;
  padding: 28px;
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover,
.info-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(69, 54, 93, 0.16);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--purple-dark);
  font-size: 1.3rem;
}

.info-card p,
.small-text,
.quote-card p,
.benefit-list,
.step-list,
details p {
  color: var(--muted);
}

.tinted-section,
.cta-section {
  padding: clamp(32px, 6vw, 58px);
}

.more-videos-heading {
  margin-top: 46px;
  text-align: center;
}

.featured-video {
  max-width: 850px;
  margin: 0 auto;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.video-card {
  padding: 16px;
}

.featured-card {
  padding: 18px;
}

.video-card h3 {
  margin: 15px 0 0;
  font-size: 1.05rem;
}

.video-frame,
.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(117, 83, 217, 0.16), rgba(244, 216, 214, 0.55)),
    var(--lavender);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
  color: var(--purple-dark);
  border: 1px dashed rgba(117, 83, 217, 0.32);
}

.play-symbol {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 1.8rem;
}

.video-placeholder p {
  margin: 12px 0 0;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: center;
  gap: 28px;
}

.home-about-section {
  padding-top: 42px;
}

.quote-card {
  padding: 30px;
}

.page-hero {
  margin-top: 42px;
  text-align: center;
}

.page-hero p {
  margin-right: auto;
  margin-left: auto;
}

.videos-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  margin-bottom: 0;
  padding-top: clamp(54px, 8vw, 84px);
  padding-bottom: clamp(54px, 8vw, 84px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 229, 194, 0.88), transparent 38%),
    radial-gradient(circle at 18% 24%, rgba(244, 216, 214, 0.72), transparent 34%),
    radial-gradient(circle at 84% 74%, rgba(220, 233, 221, 0.9), transparent 40%),
    linear-gradient(135deg, rgba(255, 251, 245, 0.98), rgba(255, 255, 255, 0.9));
}

.videos-hero h1 {
  max-width: 760px;
  color: #263229;
}

.videos-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #6f6762;
}

.blog-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 960px;
  min-height: 390px;
  margin-top: 56px;
  margin-bottom: 8px;
  padding: clamp(52px, 8vw, 88px) clamp(24px, 6vw, 72px);
  border-radius: 42px;
}

.blog-hero h1 {
  max-width: 760px;
}

.blog-hero p:not(.eyebrow) {
  max-width: 690px;
}

.blog-topics {
  max-width: 1040px;
  padding-top: 64px;
}

.blog-topics .section-heading {
  margin-bottom: 36px;
}

.content-section {
  max-width: 980px;
}

.benefit-list,
.step-list {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 22px;
  font-size: 1.05rem;
}

.benefit-list li,
.step-list li {
  padding-left: 8px;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.related-links a {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--purple-dark);
  border: 1px solid rgba(117, 83, 217, 0.16);
  font-weight: 800;
  text-decoration: none;
}

.topic-links a {
  background: rgba(255, 255, 255, 0.86);
}

.faq-section {
  max-width: 860px;
}

details {
  padding: 18px 22px;
  margin-bottom: 14px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.cta-section {
  margin-bottom: 72px;
  text-align: center;
}

.cta-section p {
  margin-right: auto;
  margin-left: auto;
}

footer {
  padding: 28px 20px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header,
  .home-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .home-hero {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 16px;
  }

  .logo {
    gap: 10px;
  }

  .logo-mark {
    width: 64px;
    height: auto;
  }

  .logo-text {
    font-size: clamp(1rem, 5vw, 1.18rem);
  }

  .site-nav {
    gap: 8px 12px;
    font-size: 0.9rem;
  }

  .hero,
  .page-hero,
  section {
    padding: 48px 16px;
  }

  .hero-content,
  .tinted-section,
  .cta-section {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .blog-hero {
    min-height: 340px;
    margin-top: 28px;
    padding: 44px 20px;
    border-radius: 28px;
  }

  .blog-topics {
    padding-top: 52px;
  }

  .topic-hero-content::after {
    width: 78px;
    height: 78px;
  }

  .card-grid,
  .topic-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .topic-card {
    min-height: 132px;
  }

  .affirmation-result {
    padding: 28px 18px;
    border-radius: 24px;
  }

  .affirmation-result::before {
    top: 14px;
    right: 18px;
  }

  .info-card,
  .topic-card,
  .hero-card,
  .quote-card,
  details {
    border-radius: 22px;
  }

  .button {
    width: 100%;
  }
}

/* YouTube page redesign */
.youtube-section {
  max-width: 1060px;
  padding: 68px 20px 0;
}

.youtube-section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.youtube-section-heading h2,
.youtube-channel-cta h2 {
  color: #263229;
}

.youtube-section-heading p,
.youtube-channel-cta p {
  margin: 0 auto;
  max-width: 680px;
  color: #756f70;
  font-size: 1.08rem;
}

.youtube-featured-card,
.youtube-video-card,
.youtube-channel-cta {
  border: 1px solid rgba(68, 91, 71, 0.11);
  box-shadow: 0 24px 60px rgba(66, 78, 63, 0.12);
}

.youtube-featured-card {
  padding: clamp(14px, 2.5vw, 22px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
}

.youtube-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  isolation: isolate;
}

.youtube-thumbnail::before,
.youtube-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.youtube-thumbnail::before {
  opacity: 0.98;
}

.youtube-thumbnail::after {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.2), transparent 11%),
    linear-gradient(180deg, rgba(24, 31, 31, 0.08), rgba(18, 30, 24, 0.72));
}

.youtube-featured-thumbnail {
  display: flex;
  min-height: 380px;
  align-items: flex-end;
  padding: clamp(24px, 5vw, 46px);
}

.youtube-thumbnail-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: var(--white);
}

.youtube-thumbnail-content h3 {
  margin: 14px 0 0;
  font-size: clamp(1.55rem, 4.2vw, 3.15rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.26);
}

.youtube-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(220, 233, 221, 0.82);
  color: #416347;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.youtube-featured-pill {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.youtube-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(74px, 10vw, 104px);
  height: clamp(74px, 10vw, 104px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(28, 43, 33, 0.28);
  transform: translate(-50%, -50%);
}

.youtube-play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid #4d7a55;
}

.youtube-play-button-small {
  width: 56px;
  height: 56px;
}

.youtube-play-button-small::before {
  margin-left: 5px;
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 16px;
}

.youtube-duration {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 4;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(33, 38, 34, 0.78);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.youtube-visual-ocean::before {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 226, 148, 0.94) 0 8%, transparent 9%),
    linear-gradient(180deg, rgba(145, 183, 208, 0.9) 0 36%, rgba(246, 164, 117, 0.92) 37% 53%, rgba(71, 139, 147, 0.92) 54% 72%, rgba(25, 84, 89, 0.96) 73% 100%),
    radial-gradient(ellipse at 28% 78%, rgba(246, 232, 177, 0.5), transparent 34%);
}

.youtube-visual-sunrise::before {
  background:
    radial-gradient(circle at 74% 21%, rgba(255, 223, 132, 0.92) 0 10%, transparent 11%),
    linear-gradient(155deg, transparent 0 46%, rgba(73, 105, 79, 0.64) 47% 63%, transparent 64%),
    linear-gradient(28deg, rgba(83, 107, 79, 0.76) 0 28%, transparent 29%),
    radial-gradient(circle at 18% 82%, rgba(248, 178, 167, 0.78) 0 8%, transparent 9%),
    linear-gradient(180deg, #f8c391 0%, #f5d3af 44%, #9fb883 100%);
}

.youtube-visual-lake::before {
  background:
    radial-gradient(ellipse at 50% 68%, rgba(255, 255, 255, 0.28) 0 16%, transparent 17%),
    linear-gradient(180deg, rgba(132, 112, 178, 0.94) 0 48%, rgba(110, 137, 174, 0.9) 49% 62%, rgba(86, 111, 149, 0.96) 63% 100%),
    radial-gradient(circle at 24% 24%, rgba(230, 212, 255, 0.74), transparent 28%);
}

.youtube-visual-abundance::before {
  background:
    radial-gradient(circle at 62% 23%, rgba(255, 235, 158, 0.94) 0 11%, transparent 12%),
    linear-gradient(100deg, transparent 0 40%, rgba(255, 224, 132, 0.62) 41% 54%, transparent 55%),
    linear-gradient(180deg, #e8a666 0%, #f4ca83 43%, #796f47 100%),
    radial-gradient(ellipse at 48% 94%, rgba(97, 75, 38, 0.8), transparent 32%);
}

.youtube-visual-self-love::before {
  background:
    radial-gradient(circle at 62% 22%, rgba(255, 231, 203, 0.92) 0 9%, transparent 10%),
    radial-gradient(ellipse at 46% 74%, rgba(210, 83, 104, 0.55) 0 10%, transparent 11%),
    linear-gradient(180deg, #f5a9b9 0%, #f9c5b3 48%, #d7a176 49%, #b98566 100%);
}


.youtube-featured-experience {
  display: grid;
  gap: 22px;
}

.youtube-featured-card .youtube-thumbnail,
.youtube-sample-grid .youtube-thumbnail {
  background: #e8f1e6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.youtube-featured-card .youtube-thumbnail::after,
.youtube-sample-grid .youtube-thumbnail::after {
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.24), transparent 12%),
    linear-gradient(180deg, rgba(24, 31, 31, 0.03), rgba(18, 30, 24, 0.38));
}

.youtube-embed-label {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}


.youtube-featured-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  background: #e8f1e6;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.youtube-featured-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-featured-body {
  min-height: auto;
  padding: clamp(20px, 3vw, 28px);
}

.youtube-featured-body h3 {
  max-width: 720px;
  font-size: clamp(1.5rem, 3.8vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.youtube-featured-body p {
  max-width: 700px;
  margin: 0;
  color: #756f70;
  font-size: 1.05rem;
  line-height: 1.6;
}

.youtube-sample-grid {
  margin-top: 4px;
}

.youtube-latest-section {
  padding-top: 74px;
}

.youtube-video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.youtube-video-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.youtube-card-thumbnail {
  border-radius: 28px 28px 0 0;
}

.youtube-card-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8f1e6;
}

.youtube-card-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-card-body {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
}

.youtube-card-body h3 {
  margin: 0;
  color: #28352c;
  font-size: 1.05rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.youtube-channel-cta {
  margin-top: 76px;
  margin-bottom: 72px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, 0.92), transparent 22%),
    linear-gradient(135deg, rgba(232, 244, 229, 0.96), rgba(205, 226, 203, 0.96));
}

.youtube-channel-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.youtube-channel-cta h2 {
  margin-bottom: 12px;
}

.youtube-channel-cta p {
  margin-left: 0;
}

.youtube-channel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #4f8356;
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(79, 131, 86, 0.24);
  transition: transform 180ms ease, background 180ms ease;
}

.youtube-channel-button:hover,
.youtube-channel-button:focus {
  background: #416f48;
  transform: translateY(-2px);
}

.youtube-channel-icon {
  position: relative;
  width: clamp(108px, 16vw, 158px);
  height: clamp(108px, 16vw, 158px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.76), transparent 32%),
    #ffffff;
  box-shadow: inset 0 0 0 1px rgba(68, 91, 71, 0.1), 0 18px 38px rgba(68, 91, 71, 0.14);
}

.youtube-channel-icon::before {
  content: "";
  position: absolute;
  inset: 34% 25%;
  border-radius: 16px;
  background: #4f8356;
}

.youtube-channel-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--white);
  transform: translate(-50%, -50%);
}

@media (max-width: 980px) {
  .youtube-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .youtube-section {
    padding: 52px 16px 0;
  }

  .youtube-featured-card,
  .youtube-channel-cta,
  .youtube-video-card {
    border-radius: 24px;
  }

  .youtube-featured-thumbnail {
    min-height: 300px;
    padding: 22px;
    border-radius: 20px;
  }

  .youtube-featured-embed {
    border-radius: 20px;
  }

  .youtube-video-grid,
  .youtube-channel-content {
    grid-template-columns: 1fr;
  }

  .youtube-card-thumbnail {
    border-radius: 24px 24px 0 0;
  }

  .youtube-card-body {
    min-height: auto;
  }

  .youtube-channel-icon {
    justify-self: center;
    order: -1;
  }

  .youtube-channel-button {
    width: 100%;
  }
}

.about-hero {
  max-width: 960px;
  padding-top: clamp(52px, 8vw, 88px);
  padding-bottom: clamp(52px, 8vw, 88px);
}

.about-hero h1 {
  margin-right: auto;
  margin-left: auto;
}

.about-section {
  max-width: 920px;
  padding-top: 24px;
}

.about-card {
  padding: clamp(30px, 6vw, 58px);
  background:
    radial-gradient(circle at top right, rgba(231, 221, 255, 0.55), transparent 34%),
    radial-gradient(circle at bottom left, rgba(220, 233, 221, 0.74), transparent 40%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(86, 72, 56, 0.1);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.about-card p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

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

.mission-box {
  margin: 34px 0;
  padding: clamp(24px, 4vw, 34px);
  background: linear-gradient(135deg, rgba(251, 247, 241, 0.92), rgba(255, 255, 255, 0.94));
  border: 1px solid rgba(117, 83, 217, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.mission-box .eyebrow {
  margin-bottom: 10px;
}

.mission-box p:not(.eyebrow) {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.3vw, 1.35rem);
  font-weight: 800;
  line-height: 1.55;
}
