:root {
      --peach: #fcdfca;
      --sage: #d3d9c8;
      --blue: #cddfe3;
      --rose: #efd3df;
      --ink: #24302b;
      --muted: #6a756f;
      --line: #e8e6df;
      --paper: #fffdf8;
      --white: #ffffff;
      --shadow: 0 20px 60px rgba(49, 65, 58, 0.12);
      --soft-shadow: 0 12px 34px rgba(49, 65, 58, 0.08);
      --radius: 8px;
      --max: 1180px;
      --font: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--ink);
      background:
        radial-gradient(circle at 8% 14%, rgba(252, 223, 202, 0.42), transparent 29rem),
        radial-gradient(circle at 90% 10%, rgba(205, 223, 227, 0.45), transparent 25rem),
        var(--paper);
      font-size: 16px;
      line-height: 1.65;
    }

    body.menu-open {
      overflow: hidden;
    }

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

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    button,
    input {
      font: inherit;
    }

    .screen-reader-text {
      position: absolute;
      width: 1px;
      height: 1px;
      margin: -1px;
      padding: 0;
      border: 0;
      overflow: hidden;
      clip: rect(0 0 0 0);
      clip-path: inset(50%);
      white-space: nowrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      border-bottom: 1px solid rgba(232, 230, 223, 0.82);
      background: rgba(255, 253, 248, 0.9);
      backdrop-filter: blur(18px);
    }

    .nav-wrap {
      width: min(100% - 40px, var(--max));
      min-height: 76px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--peach), var(--sage) 52%, var(--blue));
      box-shadow: 0 8px 18px rgba(67, 82, 74, 0.12);
    }

    .brand-mark svg {
      width: 27px;
      height: 27px;
    }

    .brand-name {
      display: grid;
      line-height: 1;
    }

    .brand-name span:first-child {
      font-size: 1.24rem;
    }

    .brand-name span:last-child {
      margin-top: 4px;
      color: var(--muted);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

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

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav-links ul,
    .footer-links ul {
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: inherit;
      list-style: none;
    }

    .nav-links a {
      color: #35423c;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 180ms ease;
    }

    .nav-links a:hover {
      color: #7f6255;
    }

    .menu-toggle {
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: var(--white);
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      width: 18px;
      height: 2px;
      border-radius: 99px;
      background: var(--ink);
      content: "";
      display: block;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle span::before {
      transform: translateY(-6px);
    }

    .menu-toggle span::after {
      transform: translateY(4px);
    }

    .menu-open .menu-toggle span {
      transform: rotate(45deg);
    }

    .menu-open .menu-toggle span::before {
      opacity: 0;
    }

    .menu-open .menu-toggle span::after {
      transform: translateY(-2px) rotate(-90deg);
    }

    .btn {
      min-height: 46px;
      border: 1px solid transparent;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 22px;
      color: var(--ink);
      background: var(--white);
      font-weight: 800;
      line-height: 1;
      cursor: pointer;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

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

    .btn-primary {
      background: var(--ink);
      color: var(--white);
    }

    .btn-secondary {
      border-color: rgba(36, 48, 43, 0.16);
      background: rgba(255, 255, 255, 0.72);
    }

    .btn-subtle {
      background: var(--peach);
      color: #3d3029;
    }

    main {
      overflow: hidden;
    }

    .section {
      width: min(100% - 40px, var(--max));
      margin: 0 auto;
      padding: 86px 0;
    }

    .hero {
      width: min(100% - 40px, var(--max));
      min-height: calc(100vh - 76px);
      max-height: 860px;
      margin: 0 auto;
      padding: 72px 0 58px;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
      align-items: center;
      gap: 54px;
    }

    .eyebrow {
      margin: 0 0 18px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #53625b;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      width: 36px;
      height: 1px;
      background: currentColor;
      content: "";
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 720px;
      margin-bottom: 24px;
      font-size: clamp(3.4rem, 8vw, 6.7rem);
      font-weight: 200;
      line-height: 0.98;
      letter-spacing: 0;
    }

    h1 strong {
      display: block;
      font-weight: 800;
    }

    .hero-copy {
      max-width: 610px;
      color: var(--muted);
      font-size: clamp(1.05rem, 1.8vw, 1.24rem);
    }

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

    .hero-art {
      position: relative;
      min-height: 560px;
      display: grid;
      place-items: center;
      isolation: isolate;
    }

    .pastel-shape {
      position: absolute;
      border-radius: 999px;
      filter: blur(0.2px);
      opacity: 0.9;
      z-index: -2;
    }

    .shape-peach {
      width: 74%;
      aspect-ratio: 1;
      top: 6%;
      right: 6%;
      background: var(--peach);
      border-radius: 42% 58% 48% 52%;
    }

    .shape-blue {
      width: 54%;
      aspect-ratio: 1;
      bottom: 6%;
      left: 2%;
      background: var(--blue);
      border-radius: 56% 44% 62% 38%;
    }

    .shape-rose {
      width: 42%;
      aspect-ratio: 1;
      top: 15%;
      left: 7%;
      background: var(--rose);
      border-radius: 64% 36% 46% 54%;
    }

    .mandala-panel {
      width: min(420px, 92%);
      aspect-ratio: 1;
      border: 1px solid rgba(36, 48, 43, 0.08);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255, 255, 255, 0.52);
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .mandala {
      width: 82%;
      height: 82%;
      color: rgba(36, 48, 43, 0.8);
    }

    .floating-note {
      position: absolute;
      right: 2%;
      bottom: 14%;
      width: 188px;
      border: 1px solid rgba(36, 48, 43, 0.08);
      border-radius: var(--radius);
      padding: 18px;
      background: rgba(255, 255, 255, 0.76);
      box-shadow: var(--soft-shadow);
      backdrop-filter: blur(12px);
    }

    .floating-note span {
      color: #7b6b62;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .floating-note p {
      margin: 8px 0 0;
      color: var(--ink);
      font-weight: 700;
      line-height: 1.35;
    }

    .section-header {
      max-width: 680px;
      margin-bottom: 34px;
    }

    .section-header h2,
    .intro-panel h2,
    .subscribe-box h2,
    .about h2 {
      margin-bottom: 14px;
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 300;
      line-height: 1.08;
      letter-spacing: 0;
    }

    .section-header p,
    .intro-panel p,
    .subscribe-box p,
    .about p {
      color: var(--muted);
      font-size: 1.04rem;
    }

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

    .article-card,
    .learn-card,
    .audio-card {
      border: 1px solid rgba(36, 48, 43, 0.08);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.74);
      box-shadow: var(--soft-shadow);
    }

    .article-card {
      overflow: hidden;
    }

    .article-image {
      position: relative;
      min-height: 235px;
      background:
        radial-gradient(circle at 28% 35%, rgba(255, 255, 255, 0.65) 0 13%, transparent 14%),
        linear-gradient(135deg, var(--sage), var(--peach));
    }

    .article-card:nth-child(2) .article-image {
      background:
        radial-gradient(circle at 64% 36%, rgba(255, 255, 255, 0.62) 0 12%, transparent 13%),
        linear-gradient(135deg, var(--rose), var(--blue));
    }

    .article-card:nth-child(3) .article-image {
      background:
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.62) 0 12%, transparent 13%),
        linear-gradient(135deg, var(--blue), var(--sage));
    }

    .article-image::after {
      position: absolute;
      inset: 22px;
      border: 1px solid rgba(255, 255, 255, 0.68);
      border-radius: 50%;
      content: "";
    }

    .article-body {
      padding: 24px;
    }

    .label {
      display: inline-flex;
      margin-bottom: 14px;
      color: #5f6c65;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .article-card h3,
    .learn-card h3,
    .audio-card h3 {
      margin-bottom: 10px;
      font-size: 1.35rem;
      line-height: 1.25;
      font-weight: 800;
      letter-spacing: 0;
    }

    .article-card p,
    .learn-card p,
    .audio-card p {
      color: var(--muted);
      line-height: 1.55;
    }

    .read-link {
      display: inline-flex;
      margin-top: 8px;
      color: #53625b;
      font-weight: 800;
    }

    .learn {
      width: 100%;
      background: linear-gradient(90deg, rgba(211, 217, 200, 0.45), rgba(205, 223, 227, 0.28));
    }

    .learn-inner {
      width: min(100% - 40px, var(--max));
      margin: 0 auto;
      padding: 92px 0;
      display: grid;
      grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
      gap: 44px;
      align-items: start;
    }

    .intro-panel {
      position: sticky;
      top: 112px;
    }

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

    .learn-card {
      padding: 26px;
    }

    .card-number {
      width: 42px;
      height: 42px;
      margin-bottom: 26px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--white);
      color: #6c7a70;
      font-weight: 800;
      box-shadow: 0 8px 18px rgba(49, 65, 58, 0.08);
    }

    .listen {
      display: grid;
      grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
      gap: 34px;
      align-items: center;
    }

    .audio-card {
      position: relative;
      overflow: hidden;
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(239, 211, 223, 0.58), rgba(252, 223, 202, 0.55)),
        var(--white);
    }

    .audio-card::before {
      position: absolute;
      width: 240px;
      height: 240px;
      right: -70px;
      top: -86px;
      border: 1px solid rgba(36, 48, 43, 0.11);
      border-radius: 50%;
      content: "";
    }

    .audio-meta {
      margin: 24px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .pill {
      border: 1px solid rgba(36, 48, 43, 0.12);
      border-radius: 999px;
      padding: 8px 13px;
      background: rgba(255, 255, 255, 0.48);
      color: #4d5b54;
      font-size: 0.82rem;
      font-weight: 800;
    }

    .wave {
      height: 78px;
      margin: 26px 0;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .wave span {
      width: 7px;
      border-radius: 999px;
      background: rgba(36, 48, 43, 0.5);
    }

    .wave span:nth-child(1) { height: 25px; }
    .wave span:nth-child(2) { height: 44px; }
    .wave span:nth-child(3) { height: 67px; }
    .wave span:nth-child(4) { height: 38px; }
    .wave span:nth-child(5) { height: 56px; }
    .wave span:nth-child(6) { height: 30px; }
    .wave span:nth-child(7) { height: 72px; }
    .wave span:nth-child(8) { height: 42px; }
    .wave span:nth-child(9) { height: 61px; }
    .wave span:nth-child(10) { height: 34px; }
    .wave span:nth-child(11) { height: 50px; }
    .wave span:nth-child(12) { height: 24px; }

    .subscribe {
      width: min(100% - 40px, var(--max));
      margin: 16px auto 0;
      padding: 74px;
      border-radius: 8px;
      background:
        radial-gradient(circle at 86% 26%, rgba(255, 255, 255, 0.48), transparent 14rem),
        linear-gradient(135deg, var(--sage), var(--blue));
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
      gap: 42px;
      align-items: center;
    }

    .subscribe-box h2 {
      max-width: 530px;
    }

    .signup-form {
      display: flex;
      gap: 12px;
      padding: 10px;
      border: 1px solid rgba(36, 48, 43, 0.1);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.62);
      box-shadow: var(--soft-shadow);
    }

    .signup-form label {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap;
    }

    .signup-form input {
      min-width: 0;
      width: 100%;
      border: 0;
      outline: 0;
      padding: 0 12px 0 18px;
      background: transparent;
      color: var(--ink);
    }

    .signup-form input::placeholder {
      color: #69776f;
    }

    .about {
      width: min(100% - 40px, 930px);
      margin: 0 auto;
      padding: 98px 0;
      text-align: center;
    }

    .about p {
      margin-inline: auto;
      max-width: 720px;
    }

    .about .btn {
      margin-top: 18px;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: #f6f4ee;
    }

    .footer-inner {
      width: min(100% - 40px, var(--max));
      margin: 0 auto;
      padding: 54px 0 36px;
      display: grid;
      grid-template-columns: minmax(260px, 1fr) auto;
      gap: 38px;
    }

    .footer-copy {
      max-width: 420px;
      margin: 18px 0 0;
      color: var(--muted);
    }

    .footer-links,
    .social-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 18px 26px;
    }

    .footer-links a,
    .social-links a {
      color: #44514b;
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .social-links {
      margin-top: 22px;
    }

    .copyright {
      grid-column: 1 / -1;
      margin: 0;
      padding-top: 28px;
      border-top: 1px solid rgba(36, 48, 43, 0.1);
      color: #7c857f;
      font-size: 0.9rem;
    }

    .brand-logo .custom-logo-link,
    .brand-logo .custom-logo {
      display: block;
    }

    .brand-logo .custom-logo {
      width: auto;
      max-height: 54px;
    }

    .content-area {
      min-height: 60vh;
    }

    .content-area > .section-header,
    .entry-content-wrap {
      max-width: 880px;
    }

    .entry-featured {
      margin-bottom: 36px;
    }

    .entry-featured img,
    .post-thumbnail img {
      width: 100%;
      height: auto;
      border-radius: var(--radius);
    }

    .post-thumbnail img {
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .entry-content a {
      text-decoration: underline;
    }

    .navigation.pagination {
      margin-top: 40px;
    }

    @property --hero-a {
      syntax: "<color>";
      inherits: false;
      initial-value: rgba(252, 223, 202, 0.56);
    }

    @property --hero-b {
      syntax: "<color>";
      inherits: false;
      initial-value: rgba(211, 217, 200, 0.5);
    }

    @property --hero-c {
      syntax: "<color>";
      inherits: false;
      initial-value: rgba(205, 223, 227, 0.42);
    }

    .editorial-hero {
      --hero-card-radius: 18px;
      --hero-a: rgba(252, 223, 202, 0.56);
      --hero-b: rgba(211, 217, 200, 0.5);
      --hero-c: rgba(205, 223, 227, 0.42);
      width: 100%;
      margin: 0;
      padding: 64px max(20px, calc((100% - var(--max)) / 2)) 76px;
      display: grid;
      grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.75fr);
      gap: clamp(36px, 5vw, 74px);
      align-items: start;
      background:
        radial-gradient(circle at 5% 8%, var(--hero-a), transparent 36%),
        radial-gradient(circle at 92% 14%, var(--hero-b), transparent 34%),
        radial-gradient(circle at 64% 96%, var(--hero-c), transparent 39%),
        rgba(255, 253, 248, 0.76);
      transition:
        --hero-a 1200ms ease,
        --hero-b 1200ms ease,
        --hero-c 1200ms ease;
    }

    .editorial-hero.gradient-1 {
      --hero-a: rgba(239, 211, 223, 0.52);
      --hero-b: rgba(205, 223, 227, 0.5);
      --hero-c: rgba(252, 223, 202, 0.4);
    }

    .editorial-hero.gradient-2 {
      --hero-a: rgba(211, 217, 200, 0.58);
      --hero-b: rgba(252, 223, 202, 0.46);
      --hero-c: rgba(239, 211, 223, 0.4);
    }

    .editorial-hero.gradient-3 {
      --hero-a: rgba(205, 223, 227, 0.55);
      --hero-b: rgba(239, 211, 223, 0.46);
      --hero-c: rgba(211, 217, 200, 0.4);
    }

    .editorial-hero.gradient-4 {
      --hero-a: rgba(252, 223, 202, 0.48);
      --hero-b: rgba(205, 223, 227, 0.5);
      --hero-c: rgba(239, 211, 223, 0.44);
    }

    .hero-carousel {
      min-width: 0;
    }

    .hero-carousel-track {
      position: relative;
      min-height: 690px;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-rows: minmax(390px, 1fr) auto;
      visibility: hidden;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 360ms ease, transform 360ms ease, visibility 360ms;
      pointer-events: none;
    }

    .hero-slide.is-active {
      position: relative;
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .hero-slide-image {
      min-height: 390px;
      border-radius: var(--hero-card-radius);
      display: block;
      background-color: var(--sage);
      background-position: center;
      background-size: cover;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-slide-image.has-placeholder {
      position: relative;
      background:
        radial-gradient(circle at 68% 38%, rgba(255, 255, 255, 0.72) 0 9%, transparent 9.5%),
        radial-gradient(circle at 35% 72%, rgba(255, 255, 255, 0.48) 0 15%, transparent 15.5%),
        linear-gradient(135deg, var(--peach), var(--rose) 44%, var(--blue));
    }

    .hero-slide-image.has-placeholder::after {
      position: absolute;
      inset: 13%;
      border: 1px solid rgba(36, 48, 43, 0.22);
      border-radius: 50%;
      content: "";
    }

    .hero-slide-content {
      width: calc(100% - 54px);
      margin: -56px auto 0;
      padding: 30px 34px 26px;
      border: 1px solid rgba(36, 48, 43, 0.07);
      border-radius: var(--hero-card-radius);
      position: relative;
      z-index: 2;
      background: rgba(255, 253, 248, 0.94);
      box-shadow: var(--soft-shadow);
      backdrop-filter: blur(14px);
    }

    .hero-slide-content h2 {
      margin-bottom: 12px;
      font-size: clamp(2rem, 4vw, 3.6rem);
      font-weight: 300;
      line-height: 1.04;
      letter-spacing: -0.035em;
    }

    .hero-slide-content h2 a:hover,
    .latest-story-item h3 a:hover {
      color: #7f6255;
    }

    .hero-slide-content p {
      max-width: 660px;
      margin-bottom: 10px;
      color: var(--muted);
    }

    .hero-carousel-controls {
      margin-top: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .carousel-arrow,
    .carousel-dot {
      border: 1px solid rgba(36, 48, 43, 0.14);
      background: rgba(255, 255, 255, 0.72);
      color: var(--ink);
      cursor: pointer;
    }

    .carousel-arrow {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      transition: transform 180ms ease, background 180ms ease;
    }

    .carousel-arrow:hover {
      transform: translateY(-2px);
      background: var(--peach);
    }

    .carousel-dots {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .carousel-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      padding: 0;
      transition: width 180ms ease, background 180ms ease;
    }

    .carousel-dot.is-active {
      width: 25px;
      border-radius: 999px;
      background: var(--ink);
    }

    .hero-carousel.has-single-slide .hero-carousel-controls {
      display: none;
    }

    .latest-stories {
      min-width: 0;
      padding-top: 8px;
    }

    .latest-stories-heading {
      margin-bottom: 8px;
      padding-bottom: 22px;
      border-bottom: 1px solid rgba(36, 48, 43, 0.22);
    }

    .latest-stories-heading .eyebrow {
      margin-bottom: 10px;
    }

    .latest-stories-heading h2 {
      margin: 0;
      font-size: clamp(1.7rem, 3vw, 2.5rem);
      font-weight: 300;
      line-height: 1.1;
    }

    .latest-story-item {
      padding: 25px 0;
      border-bottom: 1px solid rgba(36, 48, 43, 0.1);
    }

    .latest-story-item .label {
      margin-bottom: 8px;
      color: #65746b;
    }

    .latest-story-item h3 {
      margin-bottom: 8px;
      font-size: clamp(1.12rem, 1.8vw, 1.42rem);
      font-weight: 700;
      line-height: 1.28;
    }

    .latest-story-item p,
    .latest-stories-empty {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 0.88rem;
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide,
      .editorial-hero {
        transition: none;
      }
    }

    @media (max-width: 920px) {
      .nav-wrap {
        min-height: 68px;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-menu {
        position: fixed;
        inset: 68px 0 auto 0;
        display: grid;
        gap: 22px;
        padding: 28px 20px 32px;
        border-bottom: 1px solid var(--line);
        background: rgba(255, 253, 248, 0.98);
        box-shadow: var(--soft-shadow);
        transform: translateY(-120%);
        transition: transform 220ms ease;
      }

      .menu-open .nav-menu {
        transform: translateY(0);
      }

      .nav-links {
        display: grid;
        gap: 18px;
      }

      .nav-links ul {
        display: grid;
      }

      .nav-links a {
        font-size: 0.9rem;
      }

      .nav-menu .btn {
        justify-self: start;
      }

      .hero {
        min-height: auto;
        max-height: none;
        grid-template-columns: 1fr;
        padding-top: 54px;
      }

      .hero-art {
        min-height: 430px;
        order: -1;
      }

      .floating-note {
        right: 0;
        bottom: 6%;
      }

      .article-grid,
      .listen,
      .subscribe,
      .learn-inner {
        grid-template-columns: 1fr;
      }

      .editorial-hero {
        grid-template-columns: 1fr;
        gap: 48px;
        margin: 0;
        padding: 48px 20px 58px;
      }

      .hero-carousel-track {
        min-height: 610px;
      }

      .hero-slide {
        grid-template-rows: minmax(340px, 1fr) auto;
      }

      .hero-slide-image {
        min-height: 340px;
      }

      .hero-slide-content {
        width: calc(100% - 30px);
        padding: 25px;
      }

      .intro-panel {
        position: static;
      }

      .section,
      .learn-inner {
        padding: 70px 0;
      }

      .subscribe {
        padding: 48px;
      }

      .footer-inner {
        grid-template-columns: 1fr;
      }

      .footer-links,
      .social-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 640px) {
      .nav-wrap,
      .section,
      .hero,
      .learn-inner,
      .subscribe,
      .footer-inner,
      .about {
        width: min(100% - 28px, var(--max));
      }

      .brand-name span:last-child {
        display: none;
      }

      h1 {
        font-size: clamp(2.75rem, 17vw, 4.3rem);
      }

      .hero {
        gap: 28px;
        padding: 38px 0 44px;
      }

      .editorial-hero {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 52px;
        margin: 0;
        padding: 34px 14px 48px;
      }

      .hero-carousel-track {
        min-height: 570px;
      }

      .hero-slide {
        grid-template-rows: 300px auto;
      }

      .hero-slide-image {
        min-height: 300px;
        border-radius: var(--hero-card-radius);
      }

      .hero-slide-content {
        width: calc(100% - 18px);
        margin-top: -34px;
        padding: 22px 20px;
      }

      .hero-slide-content h2 {
        font-size: clamp(1.8rem, 10vw, 2.75rem);
      }

      .latest-stories {
        padding-top: 0;
      }

      .hero-art {
        min-height: 320px;
      }

      .mandala-panel {
        width: min(300px, 86%);
      }

      .floating-note {
        display: none;
      }

      .hero-actions,
      .signup-form {
        flex-direction: column;
      }

      .btn,
      .signup-form .btn {
        width: 100%;
      }

      .article-image {
        min-height: 190px;
      }

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

      .subscribe {
        padding: 34px 22px;
      }

      .signup-form {
        border-radius: var(--radius);
      }

      .signup-form input {
        min-height: 46px;
      }
    }
