 /*  Design Tokens  */
    :root {
      --bg: #fbf7f1;
      --surface: #ffffff;
      --ink: #1a1a2e;
      --muted: #5a5a72;
      --primary: #ff6b3d;
      --primary-dark: #e8521f;
      --accent: #4f46e5;
      --soft: #fff1eb;
      --border: #ecdfd2;
      --radius: 16px;
      --shadow: 0 10px 30px rgba(26, 26, 46, .08);
      --shadow-lg: 0 20px 50px rgba(26, 26, 46, .12);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
    }

    html,
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased
    }

    h1,
    h2,
    h3 {
      font-family: 'Fraunces', Georgia, serif;
      font-weight: 700;
      line-height: 1.2;
      color: var(--ink)
    }

    a {
      color: inherit;
      text-decoration: none
    }

    img,
    video {
      max-width: 100%;
      display: block
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px
    }

    /*  Navbar  */
    .navbar {
      position: sticky;
      top: 0;
      background: rgba(251, 247, 241, .85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      z-index: 50
    }

    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 24px
    }

    .logo {
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 700
    }

    .logo span {
      color: var(--primary)
    }

    .navbar nav {
      display: flex;
      gap: 28px
    }

    .navbar nav a {
      font-weight: 500;
      color: var(--muted);
      transition: color .2s
    }

    .navbar nav a:hover,
    .navbar nav a.active {
      color: var(--primary)
    }

    /*  Hero  */
    .hero {
      padding: 80px 0 100px;
      background: radial-gradient(circle at 80% 20%, var(--soft) 0%, transparent 60%)
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 60px;
      align-items: center
    }

    .badge {
      display: inline-block;
      background: var(--soft);
      color: var(--primary-dark);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: .85rem;
      font-weight: 600;
      margin-bottom: 20px
    }

    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      margin-bottom: 20px
    }

    .hero h1 em {
      color: var(--primary);
      font-style: italic
    }

    .hero p {
      font-size: 1.15rem;
      color: var(--muted);
      margin-bottom: 32px;
      max-width: 520px
    }

    .cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 48px
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 26px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: transform .2s, box-shadow .2s
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 8px 20px rgba(255, 107, 61, .35)
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px)
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid var(--border)
    }

    .btn-ghost:hover {
      border-color: var(--primary);
      color: var(--primary)
    }

    .btn-light {
      background: #fff;
      color: var(--primary);
      margin-top: 16px
    }

    .stats {
      display: flex;
      gap: 40px
    }

    .stats div {
      display: flex;
      flex-direction: column
    }

    .stats strong {
      font-family: 'Fraunces', serif;
      font-size: 1.8rem;
      color: var(--ink)
    }

    .stats span {
      color: var(--muted);
      font-size: .9rem
    }

    .hero-card {
      background: linear-gradient(135deg, var(--primary), #ff9166);
      border-radius: 32px;
      padding: 48px;
      color: #fff;
      box-shadow: var(--shadow-lg);
      transform: rotate(-1deg);
      transition: transform .3s
    }

    .hero-card:hover {
      transform: rotate(0)
    }

    .hero-card-inner {
      text-align: center
    }

    .play-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 20px
    }

    .hero-card h3 {
      color: #fff;
      font-size: 1.6rem;
      margin-bottom: 8px
    }

    .hero-card p {
      opacity: .9;
      margin-bottom: 8px
    }

    /*  Features  */
    .features {
      padding: 80px 0
    }

    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      text-align: center;
      margin-bottom: 48px
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px
    }

    .feature-card {
      background: var(--surface);
      padding: 36px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow)
    }

    .feature-card .icon {
      font-size: 2.5rem;
      margin-bottom: 16px
    }

    .feature-card h3 {
      font-size: 1.4rem;
      margin-bottom: 10px
    }

    .feature-card p {
      color: var(--muted);
      margin-bottom: 16px
    }

    .feature-card a {
      color: var(--primary);
      font-weight: 600
    }

    /*  CTA Band  */
    .cta-band {
      background: var(--ink);
      padding: 80px 0;
      color: #fff;
      text-align: center;
      margin-top: 40px
    }

    .cta-band h2 {
      color: #fff;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin-bottom: 12px
    }

    .cta-band p {
      color: #bdbdd0;
      margin-bottom: 28px
    }

    /*  Page Header  */
    .page-header {
      padding: 60px 0 40px;
      background: var(--soft)
    }

    .page-header h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      margin-bottom: 8px
    }

    .page-header p {
      color: var(--muted);
      font-size: 1.1rem
    }

    /*  Media (Video)  */
    .media-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 28px;
      padding: 60px 24px
    }

    .media-card {
      background: var(--surface);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s
    }

    .media-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow)
    }

    .media-card video {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
      background: #000
    }

    .media-body {
      padding: 22px
    }

    .media-body h3 {
      font-size: 1.2rem;
      margin-bottom: 8px
    }

    .media-body p {
      color: var(--muted);
      margin-bottom: 12px;
      font-size: .95rem
    }

    .tag {
      display: inline-block;
      background: var(--soft);
      color: var(--primary-dark);
      padding: 4px 12px;
      border-radius: 999px;
      font-size: .78rem;
      font-weight: 600
    }

    /*  Audio  */
    .audio-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding: 60px 24px
    }

    .audio-card {
      display: flex;
      gap: 20px;
      align-items: center;
      background: var(--surface);
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      transition: box-shadow .3s
    }

    .audio-card:hover {
      box-shadow: var(--shadow)
    }

    .audio-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      flex-shrink: 0
    }

    .audio-body {
      flex: 1;
      min-width: 0
    }

    .audio-body h3 {
      font-size: 1.15rem;
      margin-bottom: 4px
    }

    .audio-body p {
      color: var(--muted);
      font-size: .92rem;
      margin-bottom: 10px
    }

    .audio-body audio {
      width: 100%
    }

    /*  Articles  */
    .article-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 28px;
      padding: 60px 24px
    }

    .article-card {
      background: var(--surface);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: transform .3s, box-shadow .3s
    }

    .article-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow)
    }

    .article-thumb {
      height: 160px;
      overflow: hidden
    }

    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    .article-body {
      padding: 28px
    }

    .article-body h3 {
      font-size: 1.25rem;
      margin: 10px 0 8px
    }

    .article-body p {
      color: var(--muted);
      margin-bottom: 14px
    }

    .read-more {
      color: var(--primary);
      font-weight: 600
    }

    /*  Note  */
    .note {
      background: var(--soft);
      border: 1px dashed var(--primary);
      padding: 18px 24px;
      border-radius: 12px;
      margin: 0 auto 60px;
      max-width: 1132px;
      color: var(--ink);
      font-size: .95rem
    }

    .note code {
      background: #fff;
      padding: 2px 8px;
      border-radius: 6px;
      font-family: ui-monospace, monospace;
      color: var(--primary-dark)
    }

    /*  About  */
    .about {
      padding: 60px 24px
    }

    .about-inner {
      display: flex;
      gap: 40px;
      align-items: center;
      background: var(--surface);
      padding: 48px;
      border-radius: 24px;
      border: 1px solid var(--border);
      margin-bottom: 40px
    }

    .about-inner h1 {
      font-size: 2.2rem;
      margin-bottom: 16px
    }

    .about-inner p {
      color: var(--muted);
      margin-bottom: 12px
    }

    .avatar {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: var(--soft);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      flex-shrink: 0
    }

    .contact-card {
      background: var(--surface);
      padding: 40px;
      border-radius: 24px;
      border: 1px solid var(--border);
      max-width: 600px
    }

    .contact-card h2 {
      margin-bottom: 20px;
      font-size: 1.6rem
    }

    .contact-card form {
      display: flex;
      flex-direction: column;
      gap: 14px
    }

    .contact-card input,
    .contact-card textarea {
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: inherit;
      font-size: 1rem;
      background: var(--bg)
    }

    .contact-card input:focus,
    .contact-card textarea:focus {
      outline: none;
      border-color: var(--primary)
    }

    .form-status {
      color: #0a8c4a;
      font-weight: 600;
      margin-top: 6px
    }

    /*  Footer  */
    .footer {
      background: var(--ink);
      color: #bdbdd0;
      padding: 36px 0;
      margin-top: 60px
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px
    }

    .socials {
      display: flex;
      gap: 20px
    }

    .socials a:hover {
      color: var(--primary)
    }

    /*  Responsive  */
    @media (max-width:860px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px
      }

      .hero-card {
        transform: none
      }

      .navbar nav {
        gap: 14px;
        font-size: .9rem
      }

      .stats {
        gap: 24px
      }

      .about-inner {
        flex-direction: column;
        text-align: center;
        padding: 32px
      }
    }

    @media (max-width:520px) {
      .navbar nav a:not(.active) {
        display: none
      }

      .nav-inner {
        padding: 14px 20px
      }
    }