: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;
}
button,
input,
textarea,
select{
  font:inherit;
}
.container{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}
.navbar{
  position:sticky;
  top:0;
  background:rgba(251,247,241,.95);
  backdrop-filter:blur(12px);
  -webkit-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;
  position:relative;
}
.logo{
  font-family:'Fraunces',serif;
  font-size:1.5rem;
  font-weight:700;
}
.logo span{
  color:var(--primary);
}
.navbar nav{
  display:flex;
  align-items:center;
  gap:28px;
}
.navbar nav a{
  font-weight:500;
  color:var(--muted);
  transition:color .2s ease,background .2s ease;
}
.navbar nav a:hover,
.navbar nav a.active{
  color:var(--primary);
}
.menu-toggle{
  display:none;
  flex-direction:column;
  justify-content:space-between;
  width:26px;
  height:20px;
  background:transparent;
  border:0;
  cursor:pointer;
  padding:0;
  flex-shrink:0;
}
.menu-toggle span{
  display:block;
  width:100%;
  height:3px;
  background:var(--ink);
  border-radius:4px;
  transition:transform .3s ease,opacity .3s ease;
}
.menu-toggle.active span:nth-child(1){
  transform:translateY(8.5px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
  opacity:0;
}
.menu-toggle.active span:nth-child(3){
  transform:translateY(-8.5px) rotate(-45deg);
}
.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:stretch;
}
.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;
  justify-content:center;
  gap:8px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:1rem;
  border:0;
  cursor:pointer;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.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{
  width:100%;
  height:100%;
  min-height:380px;
  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 ease;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.hero-card:hover{
  transform:rotate(0);
}
.hero-card-inner{
  width:100%;
  max-width:500px;
  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{
  color:#fff;
  opacity:.9;
  margin-bottom:8px;
  max-width:100%;
}
.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 ease,box-shadow .3s ease;
}
.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{
  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{
  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-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 ease,box-shadow .3s ease;
}
.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-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 ease;
}
.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%;
}
.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 ease,box-shadow .3s ease;
}
.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;
}
.article-body{
  padding:22px;
}
.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{
  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{
  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{
  width:100%;
  background:var(--surface);
  padding:40px;
  border-radius:24px;
  border:1px solid var(--border);
}
.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{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--border);
  border-radius:10px;
  font-family:inherit;
  font-size:1rem;
  background:var(--bg);
}
.contact-card textarea{
  min-height:140px;
  resize:vertical;
}
.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{
  background:var(--ink);
  color:#bdbdd0;
  padding:36px 0;
  margin-top:60px;
}

/* Prevent a light seam appearing between two dark sections
   (e.g. the CTA band on the home page sitting right above the footer) */
.cta-band + .footer{
  margin-top:0;
}
.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);
}
@media (min-width:1200px){
  .hero-inner{
    grid-template-columns:1.2fr 1.2fr;
    gap:60px;
  }
  .hero-card{
    min-height:410px;
    padding:48px;
  }
}
@media (min-width:769px) and (max-width:991px){
  .hero-inner{
    grid-template-columns:1fr 1fr;
    gap:30px;
  }
  .hero-card{
    min-height:380px;
    padding:32px;
    transform:none;
  }
  .hero-card h3{
    font-size:1.45rem;
  }
}
@media (max-width:768px){
  .menu-toggle{
    display:flex;
  }
  .navbar nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    width:100%;
    background:var(--surface);
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:0 24px;
    max-height:0;
    overflow:hidden;
    border-bottom:0 solid var(--border);
    box-shadow:var(--shadow);
    transition:max-height .3s ease,padding .3s ease,border-bottom-width .3s ease;
  }
  .navbar nav.active{
    max-height:500px;
    padding:12px 24px;
    border-bottom-width:1px;
  }
  .navbar nav a{
    display:block;
    width:100%;
    padding:12px 0;
    border-bottom:1px solid var(--soft);
    color:var(--muted);
  }
  .navbar nav a:last-child{
    border-bottom:none;
  }
  .navbar nav a.active{
    color:var(--primary);
    background:transparent;
  }
  .hero{
    padding:35px 0 70px;
  }
  .hero-inner{
    grid-template-columns:1fr;
    gap:40px;
    align-items:stretch;
  }
  .hero-card{
    width:100%;
    height:100%;
    min-height:360px;
    padding:32px 24px;
    transform:none;
    border-radius:28px;
  }
  .hero-card:hover{
    transform:none;
  }
  .hero-card-inner{
    max-width:100%;
  }
  .play-circle{
    width:70px;
    height:70px;
    font-size:1.7rem;
  }
  .hero-card h3{
    font-size:1.4rem;
  }
  .stats{
    gap:24px;
  }
  .about-inner{
    flex-direction:column;
    text-align:center;
    padding:32px;
  }
  .cta-band{
    margin-top:40px;
  }
}
@media (max-width:520px){
  .nav-inner{
    padding:14px 20px;
  }
  .logo{
    font-size:1.3rem;
  }
  .hero-card{
    min-height:330px;
    padding:28px 20px;
    border-radius:24px;
  }
  .play-circle{
    width:62px;
    height:62px;
    font-size:1.5rem;
  }
  .hero-card h3{
    font-size:1.3rem;
  }
  .stats{
    gap:18px;
    flex-wrap:wrap;
  }
  .audio-card{
    align-items:flex-start;
    gap:14px;
    padding:18px;
  }
  .audio-icon{
    width:52px;
    height:52px;
    font-size:1.4rem;
  }
  .media-grid,
  .article-grid{
    grid-template-columns:1fr;
    padding-left:20px;
    padding-right:20px;
  }
  .audio-list{
    padding-left:20px;
    padding-right:20px;
  }
  .about{
    padding-left:20px;
    padding-right:20px;
  }
  .contact-card{
    padding:28px 20px;
  }
}
@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto !important;
    transition:none !important;
    animation:none !important;
  }
}