:root {
    --purple-dark: #3d1f6b;
    --purple:       #4a2380;
    --purple-deep:  #2c1754;
    --lavender:     #b9a3d6;
    --lavender-soft:#d7c8ea;
    --cream:        #f5ecdc;
    --cream-warm:   #efe4d0;
    --cream-light:  #fbf6eb;
    --gold:         #c69b4a;
    --gold-light:   #e6c98a;
    --ink:          #2c1754;
    --ink-soft:     #4b3a6c;
  }

  *,*::before,*::after { box-sizing: border-box; }
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
  img, video { max-width: 100%; height: auto; }

  /* ---------- NAV ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(45, 23, 84, 0.95);
    backdrop-filter: blur(8px);
    padding: 14px 28px;
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    box-shadow: 0 2px 14px rgba(0,0,0,0.15);
  }
  .nav a {
    color: #f3e8cf;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: color .25s;
  }
  .nav a:hover { color: var(--gold-light); }

  /* ---------- SHARED PAGE FRAME WITH FLORAL SIDES ---------- */
  .page {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: var(--cream);
    padding: 0 120px;
  }
  .floral-side {
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 5;
    background-repeat: repeat-y;
    background-size: 120px auto;
    background-position: center top;
  }
  .floral-side.left  { left: 0;  background-image: url("assets/floral-left.png"); }
  .floral-side.right { right: 0; background-image: url("assets/floral-right.png"); }

  /* ---------- SECTION BASE ---------- */
  section { position: relative; z-index: 2; }

  /* ---------- LOGO PNG (used in podcast section) ---------- */
  .logo-img {
    width: 140px;
    height: 140px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
  }

  /* ==========================================================
     HERO — clean sunset photo + overlaid logo/title/button
     ========================================================== */
  .hero {
    position: relative;
    overflow: hidden;
    /* break out of the .page cream padding so the sunset fills edge-to-edge */
    margin: 0 -120px;
    padding-top: 0;
  }
  .hero-scene {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
    isolation: isolate;
  }
  /* Blurred sunset fills the sides so there's no flat color border */
  .hero-scene::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: url("assets/hero-sunset-clean.jpg") center center / cover no-repeat;
    filter: blur(55px) saturate(1.08);
    z-index: 0;
  }
  .hero-scene img.hero-img {
    position: relative;
    z-index: 1;
    width: 82%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  .hero-scene::after {
    /* soft bottom gradient so text reads well on the photo */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
                rgba(255,240,220,0) 55%,
                rgba(247,229,200,.55) 85%,
                rgba(247,229,200,.75) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 20px 30px;
    text-align: center;
  }
  .hero-overlay .logo-img {
    width: 120px;
    height: 120px;
    margin-bottom: 28px;
  }
  .hero-title {
    color: var(--purple-deep);
    margin-top: 8px;
  }
  .hero-title .script {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    color: var(--purple-deep);
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(255,255,255,.6);
  }
  .hero-title .name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 58px;
    letter-spacing: 3px;
    color: var(--purple-deep);
    display: block;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(255,255,255,.5);
  }
  .hero-subtitle {
    color: var(--purple-dark);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    margin: 14px 0 22px;
    text-shadow: 0 2px 6px rgba(255,255,255,.5);
  }
  .btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(180deg, #5e2fa0 0%, #3d1f6b 100%);
    color: #fdf6e3;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 40px;
    box-shadow: 0 6px 14px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.15);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 10px 18px rgba(0,0,0,.28); }
  .btn.wide { padding-left: 46px; padding-right: 46px; }

  /* ---------- MISSION ---------- */
  .mission {
    background: var(--cream-light);
    text-align: center;
    padding: 60px 40px 70px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--purple-dark);
    letter-spacing: 6px;
    text-transform: uppercase;
    font-size: 28px;
    margin: 0 0 8px;
  }
  .section-divider {
    display: inline-block;
    width: 70px;
    height: 2px;
    background: var(--gold);
    position: relative;
    margin: 6px auto 26px;
  }
  .section-divider::after {
    content: "";
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
    position: absolute;
    top: -3px; left: 50%;
    margin-left: -4px;
  }
  .mission p {
    max-width: 600px;
    margin: 0 auto 18px;
    color: var(--ink);
    font-size: 18px;
    font-family: 'Lato', sans-serif;
  }
  .mission p strong { font-weight: 700; }
  .mission .verse {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--purple);
    font-size: 20px;
  }

  /* ---------- TWIN CARDS ---------- */
  .twin-cards {
    background: linear-gradient(180deg, #c7b1e4 0%, #b9a3d6 100%);
    padding: 56px 30px 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
  .card {
    background: var(--cream-light);
    border-radius: 6px;
    padding: 38px 30px 34px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(60,30,100,.18);
  }
  .card-icon {
    width: 70px; height: 70px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle, #fff4d1 10%, transparent 70%);
    color: var(--gold);
    font-size: 34px;
  }
  .card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--purple-dark);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0 0 14px;
  }
  .card p { color: var(--ink); font-size: 15px; margin: 0 0 18px; }
  .card textarea, .card input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #c8b8de;
    border-radius: 4px;
    background: #fbf6eb;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 10px;
    resize: vertical;
  }
  .card textarea:focus, .card input:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(74,35,128,.15);
  }
  .card .btn { width: 100%; margin-top: 6px; border-radius: 4px; }

  /* ---------- PODCAST ---------- */
  .podcast {
    background:
      linear-gradient(180deg,
        rgba(255,228,196,.18) 0%,
        rgba(255,214,170,.12) 35%,
        rgba(120,70,160,.35) 75%,
        rgba(61,31,107,.55) 100%),
      url("assets/podcast-hero.jpg") center 35%/cover no-repeat;
    padding: 56px 40px 64px;
    text-align: center;
  }
  .podcast .logo-img {
    margin: 0 auto 32px;
  }
  .podcast-title {
    margin-top: 8px;
  }
  .podcast-title .script {
    font-family: 'Great Vibes', cursive;
    font-size: 58px;
    color: var(--purple-deep);
    display: block;
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .podcast-title .name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 4px;
    color: var(--purple-deep);
    display: block;
  }
  .podcast .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--purple);
    margin: 16px 0 4px;
  }
  .podcast .sub {
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    font-size: 20px;
    margin: 0 0 26px;
  }
  .btn-youtube {
    background: linear-gradient(180deg, #5e2fa0 0%, #3d1f6b 100%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    border-radius: 40px;
  }
  .btn-youtube .yt {
    width: 28px; height: 20px;
    background: #cc0000;
    border-radius: 5px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 10px;
  }
  .shorts-label {
    margin-top: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--purple-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 6px;
    font-size: 18px;
    text-transform: uppercase;
  }
  .shorts-label::before, .shorts-label::after {
    content: ""; width: 80px; height: 1px; background: var(--gold);
  }
  .shorts-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .short {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: url("assets/podcast-hero.jpg") center 35%/cover no-repeat, #2c1754;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    cursor: pointer;
  }
  .short::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.55) 100%);
  }
  .short .silhouette { display: none; }
  .short .label {
    position: absolute;
    top: 10px; left: 12px; right: 12px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--cream-light);
    font-size: 16px;
    line-height: 1.15;
    text-shadow: 0 2px 4px rgba(0,0,0,.5);
  }
  .short .play {
    position: absolute;
    bottom: 8px; left: 10px;
    width: 20px; height: 14px;
    background: #cc0000;
    border-radius: 3px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 8px;
  }
  .short .time {
    position: absolute;
    bottom: 10px; left: 36px;
    color: #fdf6e3;
    font-size: 11px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
  }
  .watch-more { margin-top: 34px; }

  /* ---------- SHOP ---------- */
  .shop {
    background: var(--cream-warm);
    padding: 60px 40px 50px;
    text-align: center;
  }
  .cross {
    display: inline-block;
    font-size: 44px;
    color: var(--purple-deep);
    margin-bottom: 10px;
  }
  .tjh-logo {
    display: block;
    width: 56px;
    height: auto;
    margin: 0 auto 14px;
  }
  .shop h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--purple-deep);
    font-size: 40px;
    margin: 0 0 8px;
  }
  .shop .sub {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--ink);
    font-size: 22px;
    margin: 0 0 16px;
  }
  .shop-grid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    background: linear-gradient(180deg, rgba(245,231,214,.75) 0%, rgba(238,219,205,.6) 100%);
    padding: 40px 32px 44px;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(198,155,74,.3), 0 6px 18px rgba(61,31,107,.08);
  }
  .shirt {
    text-align: center;
    background: #ffffff;
    padding: 18px 16px 22px;
    border-radius: 12px;
    box-shadow:
      0 2px 4px rgba(61,31,107,.06),
      0 12px 28px rgba(61,31,107,.18),
      0 24px 48px rgba(61,31,107,.12);
    border: 1px solid rgba(198,155,74,.25);
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .shirt:hover {
    transform: translateY(-6px);
    box-shadow:
      0 4px 8px rgba(61,31,107,.08),
      0 18px 36px rgba(61,31,107,.24),
      0 30px 60px rgba(61,31,107,.16);
  }
  .shirt-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    margin: 0 auto 14px;
    border-radius: 8px;
  }
  .shirt h4 {
    font-family: 'Playfair Display', serif;
    color: var(--purple-deep);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
    margin: 6px 0 6px;
  }
  .shirt .price { color: var(--ink); font-size: 13px; margin: 0 0 14px; font-family: 'Lato', sans-serif; }
  .shirt .btn { display: inline-block; padding: 10px 22px; font-size: 11px; letter-spacing: 2.5px; border-radius: 999px; min-width: 160px; }
  .shop .tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--purple-deep);
    font-size: 22px;
    margin: 32px auto 0;
    max-width: 520px;
  }

  /* ---------- DONATE ---------- */
  .donate {
    background: var(--cream-warm);
    padding: 60px 60px 70px;
    text-align: center;
  }
  .donate h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--purple-deep);
    font-size: 40px;
    margin: 0 0 6px;
    line-height: 1.1;
  }
  .donate h2 span { display: block; }
  .donate .topline { font-size: 30px; font-weight: 500; }
  .donate .section-divider { margin-top: 10px; }
  .donate p {
    max-width: 520px;
    margin: 0 auto 22px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--ink);
  }
  .donate .btn-thanks {
    padding: 14px 50px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    color: var(--gold-light);
    background: linear-gradient(180deg, #5e2fa0 0%, #3d1f6b 100%);
    border: 1px solid rgba(255,215,130,.35);
    text-shadow: 0 1px 2px rgba(0,0,0,.25);
  }
  .donate .gratitude {
    margin-top: 34px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--purple);
    font-size: 20px;
    line-height: 1.6;
  }
  .donate .donate-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    padding: 14px 34px;
    border-radius: 40px;
    background: linear-gradient(180deg, #5e2fa0 0%, #3d1f6b 100%);
    color: #fdf6e3;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    border: 1px solid rgba(255,215,130,.35);
  }
  .donate .donate-link .yt-badge {
    width: 28px; height: 28px;
    background: #cc0000;
    border-radius: 6px;
    display: inline-flex;
    align-items: center; justify-content: center;
    color: #fff;
    font-weight: 700;
  }
  .partnered {
    margin-top: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 18px;
  }
  .partnered::before, .partnered::after {
    content: ""; width: 80px; height: 1px; background: var(--gold);
  }
  .partner-img {
    display: block;
    margin: 18px auto 0;
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0,0,0,.15);
  }
  .btn-visit {
    display: inline-block;
    margin: 18px auto 0;
    padding: 12px 36px;
    font-size: 13px;
    letter-spacing: 3px;
    border-radius: 999px;
  }

  /* ---------- CONTACT ---------- */
  .contact {
    background: linear-gradient(180deg, #c7b1e4 0%, #b9a3d6 100%);
    padding: 60px 40px 70px;
    text-align: center;
  }
  .contact h2 {
    font-family: 'Playfair Display', serif;
    color: var(--purple-deep);
    font-weight: 700;
    font-size: 38px;
    letter-spacing: 3px;
    margin: 0 0 4px;
    text-transform: uppercase;
  }
  .contact .lead {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--purple-dark);
    font-size: 20px;
    max-width: 560px;
    margin: 12px auto 26px;
  }
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 26px;
    max-width: 820px;
    margin: 0 auto;
  }
  .contact-info, .contact-form {
    background: var(--cream-light);
    border-radius: 6px;
    padding: 30px 26px;
    box-shadow: 0 12px 28px rgba(60,30,100,.18);
    text-align: left;
  }
  .contact-info h3, .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--purple-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 16px;
    margin: 0 0 14px;
    text-align: center;
  }
  .contact-info ul { list-style: none; padding: 0; margin: 0; }
  .contact-info li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(198,155,74,.18);
    font-size: 15px;
  }
  .contact-info li:last-child { border-bottom: none; }
  .contact-info li i {
    color: var(--purple);
    width: 22px; text-align: center;
    font-size: 18px;
    margin-top: 3px;
  }
  .contact-info li strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: var(--purple-dark);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }
  .contact-info a { color: var(--ink); text-decoration: none; }
  .contact-info a:hover { color: var(--purple); }
  .socials-label {
    margin-top: 22px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--purple-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
  }
  .contact-socials {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 14px;
  }
  .contact-socials a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--purple);
    color: var(--cream-light);
    display: inline-flex;
    align-items: center; justify-content: center;
    text-decoration: none;
    transition: background .2s, transform .2s;
  }
  .contact-socials a:hover { background: var(--purple-deep); transform: translateY(-2px); }
  .contact-form label {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    color: var(--purple-dark);
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 10px 0 4px;
  }
  .contact-form input, .contact-form textarea, .contact-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #c8b8de;
    border-radius: 4px;
    background: #fbf6eb;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--ink);
  }
  .contact-form textarea { min-height: 110px; resize: vertical; }
  .contact-form .btn { width: 100%; margin-top: 16px; border-radius: 4px; }

  /* ---------- FOOTER ---------- */
  footer {
    background: var(--purple-deep);
    color: #e9ddf2;
    padding: 42px 40px 24px;
    text-align: center;
  }
  footer .foot-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  footer p { margin: 4px 0; font-size: 14px; }
  footer .verse {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--lavender-soft);
    margin: 14px 0 20px;
  }
  footer .foot-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin: 10px 0 20px;
  }
  footer .foot-nav a {
    color: #e9ddf2; text-decoration: none; font-size: 13px;
    letter-spacing: 2px; text-transform: uppercase;
  }
  footer .foot-nav a:hover { color: var(--gold-light); }
  footer .copyright {
    margin-top: 18px;
    font-size: 12px;
    color: rgba(233,221,242,.6);
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 16px;
  }

  /* ==========================================================
     PAGE TRANSITIONS — each page enters with its own motion
     ========================================================== */
  @keyframes heroFadeZoom {
    from { opacity: 0; transform: scale(1.03); }
    to   { opacity: 1; transform: scale(1); }
  }
  @keyframes podcastRise {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes shopPop {
    0%   { opacity: 0; transform: translateY(14px) scale(.985); }
    60%  { opacity: 1; transform: translateY(-3px) scale(1.003); }
    100% { opacity: 1; transform: translateY(0)    scale(1); }
  }
  @keyframes donateGlow {
    from { opacity: 0; filter: blur(6px) brightness(1.2); }
    to   { opacity: 1; filter: blur(0)   brightness(1);   }
  }
  @keyframes contactSlideLeft {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes navFadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Nav fades in quickly on every page */
  .nav { animation: navFadeDown .55s ease-out both; }

  /* Main content animation, unique per page */
  body.page-home    .page { animation: heroFadeZoom   1.0s ease-out both; }
  body.page-podcast .page { animation: podcastRise    .85s ease-out both; }
  body.page-shop:not(.locked) .page { animation: shopPop .9s cubic-bezier(.2,.8,.2,1) both; }
  body.page-donate  .page { animation: donateGlow     1.0s ease-out both; }
  body.page-contact .page { animation: contactSlideLeft .85s ease-out both; }

  /* Respect users who prefer reduced motion */
  @media (prefers-reduced-motion: reduce) {
    .nav, body .page { animation: none !important; }
  }

  /* ---------- RESPONSIVE ---------- */
  /* Medium laptops / small tablets — narrow the floral frame */
  @media (max-width: 1100px) {
    .page { padding: 0 90px; }
    .floral-side { width: 90px; background-size: 90px auto; }
    .hero { margin: 0 -90px; }
  }
  /* Tablets — stack to one column and shrink the decorative frame */
  @media (max-width: 820px) {
    .page { padding: 0 60px; }
    .floral-side { width: 60px; background-size: 60px auto; }
    .hero { margin: 0 -60px; }
    .twin-cards, .contact-wrap { grid-template-columns: 1fr; }
    .shorts-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title .script { font-size: 46px; }
    .hero-title .name { font-size: 48px; letter-spacing: 2px; }
    .hero-subtitle { font-size: 18px; }
    .hero-overlay { padding: 20px 14px 22px; }
    .hero-overlay .logo-img { width: 90px; height: 90px; }
    .podcast-title .name { font-size: 36px; }
    .podcast-title .script { font-size: 46px; }
    .nav { gap: 14px; padding: 10px 12px; }
    .nav a { font-size: 13px; letter-spacing: 1.5px; }
    .shop h2, .donate h2 { font-size: 30px; }
    .mission { padding: 44px 24px 54px; }
    .shop, .donate, .podcast, .contact { padding-left: 24px; padding-right: 24px; }
    .shop-grid { padding: 26px 18px; gap: 18px; }
    .shirt-img { aspect-ratio: auto; }
  }
  /* Phones — keep the same visual rhythm as the laptop layout */
  @media (max-width: 520px) {
    .page { padding: 0 18px; }
    .floral-side { width: 18px; background-size: 18px auto; opacity: .6; }
    .hero { margin: 0 -18px; }

    /* Fill the hero width on small screens (no blurred side bars) */
    .hero-scene img.hero-img { width: 100%; max-width: none; }
    .hero-scene::before { inset: 0; filter: blur(30px); }

    /* Hero overlay — keep the logo + title prominent like on desktop */
    .hero-overlay { padding: 22px 14px 22px; }
    .hero-overlay .logo-img { width: 86px; height: 86px; margin-bottom: 18px; }
    .hero-title .script { font-size: 38px; }
    .hero-title .name { font-size: 34px; letter-spacing: 2px; }
    .hero-subtitle { font-size: 15px; margin: 10px 0 16px; }

    .section-title { font-size: 22px; letter-spacing: 3px; }

    /* Podcast hero proportions */
    .podcast { padding: 44px 22px 52px; }
    .podcast .logo-img { width: 100px; height: 100px; margin-bottom: 22px; }
    .podcast-title .script { font-size: 40px; }
    .podcast-title .name { font-size: 28px; letter-spacing: 2px; }
    .podcast .tagline { font-size: 19px; }
    .podcast .sub { font-size: 16px; }

    /* Cards and grids — stack to a single column cleanly */
    .twin-cards, .contact-wrap { grid-template-columns: 1fr; gap: 22px; }
    .shorts-grid, .shop-grid { grid-template-columns: 1fr; gap: 18px; }
    .shop, .donate, .contact { padding-left: 22px; padding-right: 22px; }
    .shop h2, .donate h2 { font-size: 28px; }
    .donate .topline { font-size: 22px; }

    /* Shirts — keep the pop-out card feel with proper aspect */
    .shirt-img { aspect-ratio: 1 / 1; }

    /* Mission — comfortable reading block, like desktop centered column */
    .mission { padding: 40px 18px 48px; }
    .mission .body { font-size: 16px; padding: 0; line-height: 1.7; }
    .mission .body p { margin-bottom: 18px; }

    /* Buttons keep their pill shape and presence */
    .btn { padding: 13px 30px; font-size: 12px; letter-spacing: 2px; }
    .btn.wide { padding-left: 36px; padding-right: 36px; }

    /* Nav — allow wrap and center for narrow phones */
    .nav { gap: 12px; padding: 10px 12px; flex-wrap: wrap; justify-content: center; }
    .nav a { font-size: 12px; letter-spacing: 1.5px; }

    footer { padding: 34px 20px 22px; }
    footer .foot-nav { gap: 14px; flex-wrap: wrap; justify-content: center; }
  }

  /* Very small phones — extra breathing room adjustments */
  @media (max-width: 380px) {
    .hero-title .script { font-size: 32px; }
    .hero-title .name { font-size: 28px; letter-spacing: 1.5px; }
    .podcast-title .script { font-size: 34px; }
    .podcast-title .name { font-size: 24px; }
    .nav a { font-size: 11px; letter-spacing: 1.2px; }
  }

/* ---------- Mission page content ---------- */
.mission .body {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.75;
    padding: 0 20px;
}
.mission .body p { margin: 0 0 22px; }
.mission .body strong { color: var(--ink); font-weight: 600; }
.mission .body u { text-decoration: underline; text-decoration-color: rgba(61,31,107,.5); text-underline-offset: 2px; }
.mission .body em { color: var(--ink); font-style: italic; }
.mission .body .testimony-head { margin: 10px 0 6px; }
.mission ul.testimony-list {
    list-style: disc;
    padding: 0 0 0 20px;
    margin: 0 auto 22px;
    width: fit-content;
    text-align: left;
    color: var(--ink);
}
.mission ul.testimony-list li {
    font-size: 16px;
    line-height: 1.8;
    padding: 0;
}
.mission .body .closing-line {
    margin-top: 10px;
    font-style: normal;
    color: var(--ink);
}

/* Nav active state */
.nav a.active { color: var(--gold-light); border-bottom: 2px solid var(--gold); padding-bottom: 2px; }
