:root {
  --orange: #B64928;
  --charcoal: #110D0D;
  --forest: #283D3B;
  --sage: #CACFA0;
  --green: #618B4A;
  --cream: #f7f2e8;
  --ink: #1d1a1a;
  --muted: #5e5a56;
  --shadow: 0 22px 50px rgba(17, 13, 13, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(182, 73, 40, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(97, 139, 74, 0.14), transparent 32%),
    linear-gradient(135deg, #f3f0e7 0%, #eef2df 40%, #eaf0e3 100%);
  color: var(--ink);
}

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

.site-home {
  min-height: 100vh;
  color: var(--forest);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: var(--orange);
  border-bottom: 1px solid rgba(40, 61, 59, 0.12);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), #cb7756);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
  font-size: 1.1rem;
}

.brand-name {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--cream);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  color: var(--cream);
  font-weight: 700;
}

.nav a {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible { opacity: 1; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--orange), #cf6546);
  color: var(--cream);
  box-shadow: 0 12px 30px rgba(182, 73, 40, 0.35);
}

.button--secondary {
  background: rgba(40, 61, 59, 0.06);
  color: var(--forest);
  border: 1px solid rgba(40, 61, 59, 0.2);
}

.button--topbar {
  background: linear-gradient(135deg, var(--orange), #cb7756);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.15);
  color: var(--cream);
  border: 1px solid rgba(40, 61, 59, 0.15);
}

.hero {
  padding: 4.5rem 0 0;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.25rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(97, 139, 74, 0.12);
  border: 1px solid rgba(97, 139, 74, 0.15);
  color: var(--forest);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.7rem, 4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--forest);
}

.lead {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(17, 13, 13, 0.75);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.stats {
  list-style: none;
  padding: 0;
  margin: 2.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 1rem;
}

.stats li {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(40, 61, 59, 0.08);
  box-shadow: 0 10px 20px rgba(17, 13, 13, 0.06);
}

.stats strong {
  display: block;
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: var(--forest);
  line-height: 1.1;
}

.stats span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(17, 13, 13, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card {
  display: flex;
  justify-content: center;
}

.feature-panel {
  width: min(100%, 430px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(202, 207, 160, 0.28));
  border: 1px solid rgba(40, 61, 59, 0.08);
  border-radius: 26px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.mini-tag {
  color: var(--forest);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  margin-bottom: 0.7rem;
}

.mini-title {
  margin: 0;
  font-size: clamp(1.75rem, 2vw, 2.3rem);
  line-height: 1.1;
  color: var(--forest);
}

.thumb-placeholder {
  height: 220px;
  margin-top: 1.2rem;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(182, 73, 40, 0.9), rgba(97, 139, 74, 0.78)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="600" height="400" viewBox="0 0 600 400"><rect width="600" height="400" fill="rgba(17,13,13,0.24)"/><circle cx="300" cy="150" r="70" fill="rgba(247,242,232,0.18)"/><path d="M220 260 L380 260 L470 320 L130 320 Z" fill="rgba(247,242,232,0.12)"/></svg>');
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: end center;
  padding: 1rem;
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  color: rgba(17, 13, 13, 0.72);
  font-size: 0.9rem;
}

.content {
  padding: 1.5rem 0 4rem;
}

.section {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(40, 61, 59, 0.08);
  border-radius: 26px;
  padding: 2rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  letter-spacing: -0.04em;
  color: var(--forest);
}

.section-header a {
  color: var(--forest);
  font-weight: 800;
}

.feature-grid,
.video-grid,
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.series-section {
  overflow: hidden;
}

.series-hero {
  margin-bottom: 1.5rem;
  padding: 1.4rem 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(182, 73, 40, 0.1), rgba(97, 139, 74, 0.12));
  border: 1px solid rgba(40, 61, 59, 0.08);
}

.series-hero--compact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.series-copy {
  flex: 1;
}

.series-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.series-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.playlist-carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.carousel-button {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(40, 61, 59, 0.12);
  background: rgba(247, 242, 232, 0.96);
  border-radius: 50%;
  color: var(--forest);
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(17, 13, 13, 0.08);
}

.playlist-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 28%);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.6rem;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.playlist-card {
  display: block;
  min-height: 100%;
  background: rgba(247, 242, 232, 0.96);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.playlist-card:hover,
.playlist-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(17, 13, 13, 0.18);
}

.playlist-card__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(182, 73, 40, 0.8), rgba(97, 139, 74, 0.8));
}

.playlist-card__meta {
  padding: 0.9rem 1rem 1rem;
}

.playlist-card__meta span {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 800;
}

.playlist-card__meta strong {
  display: block;
  color: var(--ink);
  line-height: 1.4;
  font-size: 1rem;
}

.card {
  background: rgba(247, 242, 232, 0.94);
  color: var(--ink);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.tour-card {
  min-height: 100%;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: rgba(182, 73, 40, 0.12);
  color: var(--orange);
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.card-link:hover {
  transform: translateX(4px);
}

.video-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: rgba(247, 242, 232, 0.96);
}

.video-thumb {
  height: 180px;
  background: linear-gradient(135deg, rgba(40, 61, 59, 0.8), rgba(97, 139, 74, 0.8));
  display: grid;
  place-items: center;
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.video-copy {
  padding: 1rem 1rem 1.15rem;
}

.video-copy .label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}

.video-copy h3 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--ink);
}

.video-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.card-links {
  margin-top: 0.9rem;
}

.text-link {
  color: var(--orange);
  font-weight: 800;
}

.tour-card {
  display: flex;
  flex-direction: column;
}

.tour-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  align-items: stretch;
}

.about-copy {
  background: rgba(247, 242, 232, 0.92);
  color: var(--ink);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.about-copy h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 2rem;
  line-height: 1.1;
}

.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: var(--forest);
}

.about-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: rgba(97, 139, 74, 0.14);
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.quote-box {
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(182, 73, 40, 0.95), rgba(40, 61, 59, 0.92));
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.quote-box p {
  margin: 0;
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1.7;
}

.quote-box strong {
  color: var(--sage);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-item {
  background: rgba(247, 242, 232, 0.94);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(40, 61, 59, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-item--full {
  grid-column: 1 / -1;
}

.faq-item:hover {
  background: rgba(247, 242, 232, 1);
  box-shadow: 0 8px 24px rgba(17, 13, 13, 0.12);
}

.faq-item summary {
  list-style: none;
  font-weight: 700;
  color: var(--forest);
  user-select: none;
  padding-right: 1.5rem;
  position: relative;
}

.faq-item summary::before {
  content: "+";
  position: absolute;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--orange);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::before {
  content: "−";
  transform: rotate(0);
}

.faq-item p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-embed-wrap {
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(40, 61, 59, 0.08);
  background: rgba(255, 255, 255, 0.4);
}

.faq-embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: 0;
}

footer {
  padding: 0 0 3rem;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(40, 61, 59, 0.12);
  color: rgba(17, 13, 13, 0.7);
}

@media (max-width: 900px) {
  .hero-shell,
  .feature-grid,
  .video-grid,
  .tour-grid,
  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .playlist-carousel {
    grid-auto-columns: minmax(230px, 72%);
  }

  .topbar-inner {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    justify-content: center;
  }

  .section {
    padding: 1.25rem;
  }

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

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
