@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --background: 240 5% 5%;
  --foreground: 37 20% 94%;
  --primary: 37 20% 94%;
  --primary-foreground: 240 5% 5%;
  --secondary: 240 5% 10%;
  --secondary-foreground: 37 20% 94%;
  --muted: 240 3% 14%;
  --muted-foreground: 33 15% 56%;
  --accent: 37 38% 54%;
  --accent-foreground: 240 5% 5%;
  --cta: 37 38% 54%;
  --cta-foreground: 37 30% 72%;
  --cta-hover: 37 38% 54%;
  --gold: 37 38% 54%;
  --gold-light: 37 30% 65%;
  --gold-pale: 37 28% 78%;
  --ivory: 37 22% 91%;
  --ivory-dark: 37 18% 85%;
  --obsidian: 240 5% 5%;
  --charcoal: 240 5% 8%;
  --charcoal-mid: 240 4% 11%;
  --text-light: 37 20% 94%;
  --text-muted: 33 15% 56%;
  --text-subtle: 30 10% 38%;
  --border: 37 25% 38%;
  --ring: 37 38% 54%;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --shadow-soft: 0 4px 20px -4px rgba(0,0,0,0.3);
  --shadow-elevated: 0 20px 60px rgba(13,13,15,0.15);
  --shadow-gold: 0 10px 40px rgba(184,150,90,0.3);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: hsl(var(--ivory));
  color: hsl(var(--obsidian));
  font-family: var(--font-sans);
  font-weight: 300;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

p {
  margin: 0 0 12px;
}

.section-light {
  background: hsl(var(--ivory));
  color: hsl(var(--obsidian));
}

.section-border-top {
  border-top: 1px solid hsl(var(--gold) / 0.2);
}

.section-padding {
  padding: 64px 20px;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.ornament {
  text-align: center;
  color: hsl(var(--gold));
  font-size: 10px;
  letter-spacing: 12px;
  opacity: 0.45;
  font-family: var(--font-sans);
  padding: 28px 0 8px;
}

.section-badge {
  display: inline-block;
  border: 1px solid hsl(var(--gold) / 0.5);
  color: hsl(var(--gold));
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 7px 24px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 6vw, 40px);
  line-height: 1.2;
}

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(17px, 3.8vw, 23px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
}

.hero-title {
  font-size: clamp(42px, 9vw, 78px);
  line-height: 1.05;
  tracking: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: hsl(var(--gold));
  font-weight: 400;
}

.hero-title span {
  display: block;
  font-size: clamp(34px, 7vw, 62px);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-weight: 300;
  color: hsl(var(--text-subtle));
  font-size: clamp(19px, 4vw, 26px);
  line-height: 1.55;
  max-width: 560px;
  margin: 24px auto 0;
}

.support-card {
  position: relative;
  border: 1px solid hsl(var(--gold) / 0.3);
  background: rgba(255,255,255,0.6);
  padding: 20px 24px;
  max-width: 560px;
  margin: 40px auto 0;
}

.support-card .corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: hsl(var(--gold));
}

.support-card .corner.tl {
  top: 0;
  left: 0;
  border-top: 2px solid hsl(var(--gold));
  border-left: 2px solid hsl(var(--gold));
  transform: translate(-1px, -1px);
}

.support-card .corner.tr {
  top: 0;
  right: 0;
  border-top: 2px solid hsl(var(--gold));
  border-right: 2px solid hsl(var(--gold));
  transform: translate(1px, -1px);
}

.support-card .corner.bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid hsl(var(--gold));
  border-left: 2px solid hsl(var(--gold));
  transform: translate(-1px, 1px);
}

.support-card .corner.br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid hsl(var(--gold));
  border-right: 2px solid hsl(var(--gold));
  transform: translate(1px, 1px);
}

.support-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  color: hsl(var(--gold));
  font-weight: 300;
  font-size: clamp(13px, 2.5vw, 16px);
  margin-bottom: 8px;
}

.support-card h2 {
  font-size: clamp(18px, 3.5vw, 26px);
  margin-bottom: 8px;
}

.support-card p {
  font-family: var(--font-serif);
  color: hsl(var(--text-subtle));
  font-weight: 300;
  font-size: clamp(12px, 2vw, 15px);
  line-height: 1.6;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-bottom: 24px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: hsl(var(--text-subtle));
}

.icon-box {
  width: 14px;
  height: 14px;
  border: 1px solid hsl(var(--gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.video-frame {
  max-width: 620px;
  margin: 0 auto;
  border: 1px solid hsl(var(--gold) / 0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.video-frame button {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(13,13,15,0.2);
  color: #fff;
}

.video-play {
  width: 72px;
  height: 72px;
  border: 2px solid hsl(var(--gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
}

.video-overlay p {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.cta-wrap {
  text-align: center;
  margin: 32px auto 56px;
}

.cta-shadow {
  display: inline-block;
  box-shadow: 0 10px 40px rgba(0,0,0,0.30), 0 4px 16px rgba(184,150,90,0.40);
  transform: translateY(-2px);
}

.cta {
  display: inline-block;
  padding: 16px 44px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid hsl(var(--gold));
  transition: all 0.2s ease;
}

.cta--outline {
  background: transparent;
  color: hsl(var(--gold-light));
}

.cta--outline:hover {
  background: hsl(var(--gold));
  color: hsl(var(--obsidian));
  box-shadow: var(--shadow-gold);
}

.cta--dark {
  background: hsl(var(--obsidian));
  color: hsl(var(--gold-light));
  border-color: hsl(var(--obsidian));
}

.cta--dark:hover {
  background: transparent;
  color: hsl(var(--obsidian));
  border-color: hsl(var(--obsidian));
}

.cta-note {
  font-size: 13px;
  color: hsl(var(--text-subtle));
  letter-spacing: 0.5px;
  margin-top: 12px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

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

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.mobile-carousel {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.mobile-carousel .carousel-item {
  flex: 0 0 82%;
  scroll-snap-align: start;
}

.card {
  background: #fff;
  border: 1px solid hsl(var(--gold) / 0.2);
  padding: 32px;
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: hsl(var(--gold) / 0.4);
}

.card-title {
  font-size: 18px;
  margin: 0;
}

.card-points {
  margin-top: 20px;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: hsl(var(--text-subtle));
  line-height: 1.6;
}

.point .icon-box {
  width: 14px;
  height: 14px;
}

.value-list {
  border: 1px solid hsl(var(--gold) / 0.2);
  background: #fff;
}

.value-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(13,13,15,0.08);
  transition: background 0.2s ease;
}

.value-row:last-child {
  border-bottom: 0;
}

.value-row:hover {
  background: rgba(184,150,90,0.05);
}

.value-row p {
  margin: 0;
  font-size: 13px;
  color: hsl(var(--obsidian));
  line-height: 1.6;
}

.value-price {
  font-size: 15px;
  font-weight: 600;
  color: hsl(var(--gold));
  white-space: nowrap;
}

.pricing-summary {
  border: 1px solid hsl(var(--gold) / 0.3);
  border-top: 0;
  padding: 24px;
  background: #fff;
}

.pricing-summary .muted {
  color: hsl(var(--text-subtle));
  font-size: 13px;
}

.pricing-summary .strike {
  color: rgba(13,13,15,0.4);
  text-decoration: line-through;
  font-weight: 700;
}

.pricing-summary .price-main {
  color: hsl(var(--gold));
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 700;
  margin: 0;
}

.pricing-summary .price-sub {
  color: rgba(13,13,15,0.6);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  margin: 0;
}

.image-frame {
  border: 1px solid hsl(var(--gold) / 0.3);
  overflow: hidden;
}

.course-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
}

@media (min-width: 640px) {
  .course-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .course-content-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.course-content-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
}

.course-content-image.is-first {
  align-self: end;
}

.image-frame img {
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.05);
}

.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.credential {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.credential .icon-large {
  width: 40px;
  height: 40px;
  border: 1px solid hsl(var(--gold) / 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}

.credential h3 {
  font-size: 16px;
  margin: 0 0 6px;
}

.credential p {
  font-size: 13px;
  color: hsl(var(--text-subtle));
  line-height: 1.6;
  margin: 0;
}

.quote-box {
  border: 1px solid hsl(var(--gold) / 0.3);
  background: #fff;
  padding: 32px;
  margin-top: 40px;
}

.quote-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: hsl(var(--obsidian));
  font-size: 18px;
  line-height: 1.6;
}

.quote-box footer {
  color: hsl(var(--gold));
  font-size: 14px;
  font-weight: 600;
}

.faq-item {
  border-bottom: 1px solid hsl(var(--gold) / 0.15);
}

.faq-button {
  width: 100%;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  color: hsl(var(--obsidian));
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-button:hover {
  color: hsl(var(--gold));
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  padding-left: 16px;
  border-left: 1px solid hsl(var(--gold) / 0.3);
  font-size: 13px;
  color: hsl(var(--text-subtle));
  line-height: 1.6;
  white-space: pre-line;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  opacity: 1;
  padding-bottom: 18px;
}

.faq-chevron {
  transition: transform 0.2s ease;
  color: hsl(var(--gold));
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.footer {
  padding: 32px 16px;
  background: hsl(var(--background));
  border-top: 1px solid hsl(var(--gold) / 0.1);
  color: hsl(var(--muted-foreground));
}

.footer p {
  margin: 0 0 8px;
}

.footer .title {
  font-family: var(--font-display);
  font-size: 18px;
  color: hsl(var(--foreground));
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding: 56px 16px;
  }

  .card {
    padding: 24px;
  }

  .cta {
    padding: 16px 32px;
  }
}
