:root {
  --bg: #f8f3ea;
  --bg-soft: #fbf8f2;
  --surface: rgba(255, 252, 247, 0.86);
  --surface-strong: #fffdf8;
  --ink: #181614;
  --graphite: #33312d;
  --muted: #716b61;
  --line: rgba(69, 60, 48, 0.14);
  --gold: #b89052;
  --gold-soft: #eadac0;
  --shadow: 0 20px 60px rgba(51, 43, 31, 0.1);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(184, 144, 82, 0.16), transparent 30rem),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 42%, #f3eadc 100%);
}

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

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

.page-shell {
  width: min(100%, 680px);
  margin: 0 auto;
  padding: 18px 16px 32px;
}

.hero {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: 6px;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  width: clamp(128px, 28vw, 184px);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: var(--gold-soft);
  box-shadow: 0 18px 44px rgba(51, 43, 31, 0.12);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-content,
.course-hero,
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 38px rgba(51, 43, 31, 0.07);
  backdrop-filter: blur(18px);
}

.hero-content {
  width: 100%;
  padding: 26px 22px 24px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(2.15rem, 9vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.role {
  margin-bottom: 14px;
  color: var(--graphite);
  font-size: 1rem;
  font-weight: 700;
}

.lead {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.62;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.primary-button {
  width: 100%;
  padding: 0 22px;
  color: #fffaf0;
  background: linear-gradient(135deg, #171513, #3b352c);
  box-shadow: 0 18px 34px rgba(24, 22, 20, 0.18);
}

.primary-button:hover,
.link-card:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.link-card:focus-visible,
.top-nav a:focus-visible {
  outline: 3px solid rgba(184, 144, 82, 0.34);
  outline-offset: 3px;
}

.link-section {
  margin-top: 30px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 0 4px;
}

.section-line {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-heading h2 {
  margin: 0;
  color: var(--graphite);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.link-list {
  display: grid;
  gap: 12px;
}

.link-list.compact {
  gap: 10px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 82px;
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: 0 12px 28px rgba(51, 43, 31, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-main {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.brand-icon {
  display: block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.primary-button .brand-icon,
.secondary-button .brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

.tool-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(51, 43, 31, 0.07);
}

.link-card:hover {
  border-color: rgba(184, 144, 82, 0.36);
  box-shadow: 0 16px 36px rgba(51, 43, 31, 0.1);
}

.link-card strong,
.link-card small {
  display: block;
}

.link-card strong {
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.25;
}

.link-card small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.link-arrow {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(184, 144, 82, 0.28);
  border-radius: 50%;
  color: var(--gold);
  background: #fbf5ea;
  font-weight: 800;
}

.site-footer {
  padding: 32px 4px 0;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(51, 49, 45, 0.72);
  font-size: 0.76rem;
  line-height: 1.55;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.top-nav a {
  color: var(--graphite);
}

.course-page {
  width: min(100%, 1120px);
  padding-top: 24px;
}

.course-page h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.course-page h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.24;
}

.course-page p {
  color: var(--muted);
  line-height: 1.62;
}

.course-landing-hero {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(248, 239, 224, 0.82)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.course-hero-copy {
  max-width: 680px;
}

.course-landing-hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 9vw, 5.1rem);
  line-height: 0.96;
}

.course-landing-hero .lead {
  max-width: 660px;
}

.course-hero-photo {
  overflow: hidden;
  width: min(100%, 320px);
  height: clamp(220px, 66vw, 280px);
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  background: var(--gold-soft);
  box-shadow: 0 20px 50px rgba(51, 43, 31, 0.12);
}

.course-hero-photo img,
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.badge-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(184, 144, 82, 0.24);
  border-radius: 999px;
  color: var(--graphite);
  background: rgba(255, 252, 247, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
}

.course-actions {
  max-width: 620px;
}

.course-section {
  margin-top: 28px;
}

.course-section > h2,
.course-section > .section-kicker {
  max-width: 680px;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-card,
.result-panel,
.about-founder,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface-strong);
  box-shadow: 0 16px 42px rgba(51, 43, 31, 0.08);
}

.video-card {
  display: grid;
  gap: 18px;
  min-height: 220px;
  align-items: center;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.95), rgba(234, 218, 192, 0.36)),
    var(--surface-strong);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.video-card:hover {
  border-color: rgba(184, 144, 82, 0.36);
  box-shadow: 0 20px 48px rgba(51, 43, 31, 0.12);
  transform: translateY(-2px);
}

.video-card:focus-visible {
  outline: 3px solid rgba(184, 144, 82, 0.34);
  outline-offset: 3px;
}

.video-card h2 {
  margin-bottom: 10px;
}

.video-card p {
  max-width: 600px;
  margin-bottom: 0;
}

.play-mark {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(184, 144, 82, 0.28);
  border-radius: 50%;
  color: #fffaf0;
  background: linear-gradient(135deg, #181614, #4a4032);
  box-shadow: 0 18px 34px rgba(24, 22, 20, 0.14);
}

.play-mark img {
  width: 34px;
  height: 34px;
  border-radius: 11px;
}

.feature-grid,
.program-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

.feature-card,
.program-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-strong);
  box-shadow: 0 12px 32px rgba(51, 43, 31, 0.06);
}

.feature-card,
.program-card {
  padding: 22px;
}

.feature-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-card p,
.program-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.result-panel {
  display: grid;
  gap: 20px;
  padding: 26px;
}

.result-copy h2 {
  margin-bottom: 0;
}

.check-list,
.fact-list,
.pricing-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.fact-list li,
.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: var(--graphite);
  line-height: 1.48;
}

.check-list li::before,
.fact-list li::before,
.pricing-card li::before {
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fffaf0;
  background: var(--gold);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
}

.about-founder {
  display: grid;
  gap: 22px;
  padding: 22px;
}

.founder-photo {
  overflow: hidden;
  width: min(100%, 300px);
  height: 340px;
  border-radius: 28px;
  background: var(--gold-soft);
  box-shadow: 0 14px 34px rgba(51, 43, 31, 0.1);
}

.founder-role {
  margin: -8px 0 14px;
  color: var(--graphite);
  font-weight: 800;
}

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

.pricing-grid {
  align-items: start;
}

.installment-control {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(184, 144, 82, 0.24);
  border-radius: 999px;
  color: var(--graphite);
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 12px 28px rgba(51, 43, 31, 0.06);
  font-weight: 800;
}

.switch {
  display: inline-flex;
  cursor: pointer;
}

.switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-track {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background: rgba(51, 49, 45, 0.18);
  transition: background 180ms ease;
}

.switch-track::after {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fffdf8;
  box-shadow: 0 4px 10px rgba(24, 22, 20, 0.18);
  content: "";
  transition: transform 180ms ease;
}

.switch input:checked + .switch-track {
  background: var(--gold);
}

.switch input:checked + .switch-track::after {
  transform: translateX(22px);
}

.switch input:focus-visible + .switch-track {
  outline: 3px solid rgba(184, 144, 82, 0.34);
  outline-offset: 3px;
}

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
}

.pricing-card.featured {
  border-color: rgba(184, 144, 82, 0.46);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 239, 224, 0.66)),
    var(--surface-strong);
  box-shadow: 0 18px 46px rgba(51, 43, 31, 0.12);
}

.tariff-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.installment-note,
.full-price-note {
  margin-bottom: 6px;
  font-size: 0.88rem;
  font-weight: 800;
}

.installment-note {
  color: var(--gold);
}

.full-price-note {
  color: var(--muted);
}

.pricing-card ul {
  margin-top: 14px;
}

.pricing-card .highlight-benefit {
  margin: 2px 0;
  padding: 11px 12px 11px 38px;
  border: 1px solid rgba(184, 144, 82, 0.26);
  border-radius: 16px;
  background: rgba(234, 218, 192, 0.28);
}

.pricing-card .highlight-benefit::before {
  left: 12px;
  top: 12px;
}

.highlight-benefit strong {
  color: var(--ink);
  font-weight: 800;
}

.tariff-button {
  margin-top: 22px;
}

.pricing-note {
  max-width: 680px;
  margin: 18px 0 0;
}

.carousel-heading {
  display: grid;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.carousel-heading h2 {
  margin-bottom: 12px;
}

.carousel-heading p {
  max-width: 680px;
  margin-bottom: 0;
}

.instagram-slider {
  position: relative;
  width: 100%;
}

.instagram-slider-viewport {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  overflow: hidden;
}

.instagram-slider-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(184, 144, 82, 0.28);
  border-radius: 50%;
  color: var(--graphite);
  background: var(--surface-strong);
  box-shadow: 0 10px 24px rgba(51, 43, 31, 0.08);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  transform: translateY(-50%);
}

.instagram-slider-prev {
  left: 0;
}

.instagram-slider-next {
  right: 0;
}

.instagram-slider-btn:hover {
  border-color: rgba(184, 144, 82, 0.46);
  box-shadow: 0 14px 30px rgba(51, 43, 31, 0.12);
}

.instagram-slider-btn:focus-visible {
  outline: 3px solid rgba(184, 144, 82, 0.34);
  outline-offset: 3px;
}

.instagram-case-card {
  display: none;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.instagram-case-card.is-active {
  display: block;
}

.instagram-embed-frame {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  border-radius: 20px;
}

.instagram-embed-frame blockquote.instagram-media {
  min-width: 280px !important;
  width: 100% !important;
  max-width: 390px !important;
  margin: 0 auto !important;
}

.instagram-case-caption {
  margin: 14px 0 0;
  color: #2b2b2b;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.4;
}

.case-cta {
  display: grid;
  gap: 16px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(234, 218, 192, 0.4)),
    var(--surface-strong);
  box-shadow: 0 14px 34px rgba(51, 43, 31, 0.07);
}

.case-cta h3 {
  max-width: 560px;
  margin-bottom: 0;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.case-cta .primary-button {
  max-width: 320px;
}

.faq-section details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-strong);
  box-shadow: 0 10px 26px rgba(51, 43, 31, 0.05);
}

.faq-section details + details {
  margin-top: 10px;
}

.faq-section summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.faq-section details p {
  margin: 0;
  padding: 0 20px 18px;
}

.final-cta {
  margin-top: 30px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(234, 218, 192, 0.5)),
    var(--surface-strong);
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 20px;
}

.course-hero {
  padding: 34px 24px 28px;
}

.course-hero h1 {
  margin-bottom: 16px;
}

.button-row {
  display: grid;
  gap: 10px;
}

.secondary-button {
  width: 100%;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--graphite);
  background: rgba(255, 252, 247, 0.82);
}

.info-card {
  margin-top: 16px;
  padding: 22px;
}

.info-card h2,
.mini-card h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.12rem;
}

.info-card p,
.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.course-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.mini-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
  box-shadow: 0 12px 30px rgba(51, 43, 31, 0.06);
}

.mini-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (min-width: 720px) {
  .page-shell {
    padding: 34px 20px 42px;
  }

  .hero {
    gap: 22px;
  }

  .hero-content,
  .course-hero {
    padding: 34px;
  }

  .lead {
    font-size: 1.1rem;
  }

  .button-row {
    grid-template-columns: 1fr 0.48fr;
  }

  .course-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .course-landing-hero {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    padding: 34px;
  }

  .course-hero-photo {
    height: 420px;
  }

  .video-card {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 34px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-panel {
    grid-template-columns: 0.8fr 1.2fr;
    padding: 34px;
  }

  .about-founder {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: center;
    padding: 30px;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (min-width: 1024px) {
  .course-landing-hero {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .course-hero-photo {
    width: 390px;
    height: 460px;
  }

  .program-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 767px) {
  .instagram-slider-viewport {
    max-width: 100%;
    overflow: hidden;
  }

  .instagram-case-card {
    width: 100%;
    max-width: 100%;
    padding: 12px;
  }

  .instagram-embed-frame {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    overflow: visible;
  }

  .instagram-embed-frame blockquote.instagram-media {
    min-width: 280px !important;
    max-width: 340px !important;
    margin: 0 auto !important;
  }

  .instagram-slider-btn {
    top: calc(50% - 28px);
    width: 38px;
    height: 38px;
  }
}
