/* ========== VARIABLES (from Claw's brand guide) ========== */
:root {
  --cream: #F7F3EE;
  --warm-white: #FDFBF8;
  --charcoal: #2C2C2C;
  --soft-black: #1A1A1A;
  --teal-deep: #1B6B6D;
  --teal-mid: #2A8F8F;
  --teal-light: #E8F4F3;
  --terracotta: #C4725A;
  --terracotta-light: #F5E6E0;
  --sage: #8FA68A;
  --sage-light: #EEF3ED;
  --warm-grey: #A09890;
  --warm-grey-light: #E8E4DF;
  --text-primary: #2C2C2C;
  --text-secondary: #5C5650;
  --text-muted: #8A847D;
}

/* ========== RESET ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========== LAYOUT ========== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

.section { padding: 100px 60px; }
.section-cream { background: var(--warm-white); }
.section-teal { background: var(--teal-deep); }

.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 16px;
}

.section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-text,
.section-intro {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 650px;
  margin-bottom: 50px;
  line-height: 1.7;
  font-weight: 300;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand { display: flex; flex-direction: column; gap: 0; }
.nav-brand-text {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--cream);
  line-height: 1.2;
}
.nav-brand-sub {
  font-size: 10px;
  color: var(--teal-mid);
  letter-spacing: 1px;
  font-weight: 500;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 13px;
  color: var(--warm-grey);
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--cream); }

/* ========== HERO ========== */
.hero {
  background: var(--soft-black);
  color: var(--cream);
  padding: 160px 60px 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 85% 20%, rgba(27,107,109,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 15% 80%, rgba(196,114,90,0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-mid);
  font-weight: 600;
  margin-bottom: 40px;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 750px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-mid);
}

.hero-sub {
  margin-top: 28px;
  font-size: 17px;
  color: var(--warm-grey);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-badges {
  margin-top: 48px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(42, 143, 143, 0.12);
  color: var(--teal-mid);
  border: 1px solid rgba(42, 143, 143, 0.2);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--teal-deep);
  color: white;
}
.btn-primary:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(27, 107, 109, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}

.btn-large {
  padding: 18px 48px;
  font-size: 16px;
  width: 100%;
  max-width: 340px;
}

/* ========== MODULES ========== */
.modules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.module-card {
  background: var(--warm-white);
  border: 1px solid var(--warm-grey-light);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.2s;
}

.module-card:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 4px 20px rgba(27, 107, 109, 0.08);
}

.module-number {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  color: var(--teal-mid);
  opacity: 0.4;
  margin-bottom: 12px;
}

.module-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}

.module-time {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 12px;
}

.module-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
}

.module-toolkit { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }

.toolkit-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--teal-light);
  color: var(--teal-deep);
  letter-spacing: 0.3px;
}

/* ========== AUDIENCE ========== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.audience-item h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.audience-item p {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.7;
  font-weight: 300;
}

/* ========== INSTRUCTOR ========== */
.instructor-card {
  background: var(--warm-white);
  border: 1px solid var(--warm-grey-light);
  border-radius: 16px;
  padding: 48px;
  margin-top: 24px;
}

.instructor-info h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  margin-bottom: 4px;
}

.instructor-title {
  font-size: 14px;
  color: var(--teal-deep);
  font-weight: 600;
  margin-bottom: 24px;
}

.instructor-bio {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

.instructor-creds {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cred {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--sage-light);
  color: #4a6346;
  letter-spacing: 0.3px;
}

/* ========== INCLUDED ========== */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.included-item {
  background: var(--cream);
  border: 1px solid var(--warm-grey-light);
  border-radius: 12px;
  padding: 28px;
}

.included-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--teal-light);
  color: var(--teal-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.included-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.included-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 300;
}

/* ========== PRICING ========== */
.pricing-card {
  background: var(--warm-white);
  border: 2px solid var(--teal-deep);
  border-radius: 20px;
  padding: 48px;
  margin-top: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-header { margin-bottom: 32px; }

.pricing-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.pricing-amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; }

.pricing-dollar {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: var(--teal-deep);
  letter-spacing: -1px;
}

.pricing-currency {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid var(--warm-grey-light);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal-light);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%231B6B6D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-secure {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ========== FAQ ========== */
.faq-list { margin-top: 40px; }

.faq-item {
  border-bottom: 1px solid var(--warm-grey-light);
  padding: 20px 0;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  color: var(--teal-mid);
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--soft-black);
  color: var(--warm-grey);
  padding: 40px 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  color: var(--cream);
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-links a {
  font-size: 13px;
  color: var(--warm-grey);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .hero { padding: 120px 24px 60px; }
  .hero h1 { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .section h2 { font-size: 28px; }
  .modules-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; gap: 24px; }
  .included-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .hero-badges { justify-content: flex-start; }
  .instructor-card { padding: 28px; }
}
