:root {
  --ink: #15211d;
  --muted: #5d6961;
  --paper: #fbf8ef;
  --paper-warm: #f2eadb;
  --paper-deep: #e6dac2;
  --leaf: #284536;
  --moss: #6e8062;
  --gold: #c99245;
  --gold-soft: #e5bc84;
  --clay: #a65f43;
  --white: #fffdf8;
  --shadow: 0 24px 80px rgba(21, 33, 29, 0.18);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 18, 13, 0.78), rgba(7, 18, 13, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 253, 248, 0.8);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 253, 248, 0.95) 0 10%, transparent 11%),
    radial-gradient(circle at 38% 58%, rgba(201, 146, 69, 0.9) 0 10%, transparent 11%),
    radial-gradient(circle at 62% 58%, rgba(201, 146, 69, 0.9) 0 10%, transparent 11%);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.brand small {
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.75rem;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
}

nav a {
  color: rgba(255, 253, 248, 0.86);
  text-decoration: none;
}

nav a:hover {
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 118px clamp(20px, 6vw, 84px) 56px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 18, 13, 0.84), rgba(7, 18, 13, 0.38) 44%, rgba(7, 18, 13, 0.04) 82%),
    linear-gradient(0deg, rgba(7, 18, 13, 0.72), rgba(7, 18, 13, 0.08) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding-bottom: 11vh;
}

.eyebrow,
.section-kicker,
.detail-card span,
.pricing-badge,
.facilitator-card span,
.trust-card span {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 10vw, 8.2rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.1rem, 5vw, 4.3rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 253, 248, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.inline-actions,
.form-actions,
.register-support,
.payment-actions,
.site-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.button-primary {
  color: #24160d;
  background: var(--gold);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.28);
  background: rgba(17, 28, 24, 0.52);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.08);
  backdrop-filter: blur(16px);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 48px;
  width: min(390px, calc(100% - 40px));
  padding: 20px;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: var(--radius);
  background: rgba(7, 18, 13, 0.44);
  backdrop-filter: blur(18px);
}

.hero-panel span {
  display: block;
  padding: 12px 0;
  color: rgba(255, 253, 248, 0.84);
  border-bottom: 1px solid rgba(255, 253, 248, 0.16);
}

.hero-panel span:last-child {
  border-bottom: 0;
}

section:not(.hero) {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 84px);
}

.intro-grid,
.journey-section,
.register-section,
.video-section,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  margin-bottom: 40px;
}

.intro-section p,
.journey-copy p,
.video-copy p,
.register-section p,
.section-heading p,
.pricing-note p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-card,
.detail-card,
.pricing-card,
.trust-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(40, 69, 54, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.card-title {
  margin-bottom: 16px;
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--ink);
}

.detail-list li + li {
  margin-top: 10px;
}

.intro-card a,
.pricing-note a {
  color: var(--clay);
  font-weight: 800;
}

.video-section {
  color: var(--white);
  background: var(--leaf);
}

.video-copy p {
  color: rgba(255, 253, 248, 0.74);
}

.video-gallery {
  display: grid;
  grid-template-columns: minmax(0, min(460px, 100%));
  justify-content: start;
  gap: 18px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201, 146, 69, 0.18), rgba(255, 253, 248, 0.03)),
    radial-gradient(circle at 78% 16%, rgba(255, 253, 248, 0.18), transparent 24%),
    #1d2f27;
}

.video-frame video {
  width: 100%;
  background: #0d1512;
}

.video-frame > div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(7, 18, 13, 0.78), rgba(7, 18, 13, 0.18));
  pointer-events: none;
}

.video-frame strong,
.video-frame small {
  display: block;
}

.video-frame small {
  color: rgba(255, 253, 248, 0.7);
}

.details-section {
  background: var(--paper-warm);
}

.details-grid,
.pricing-grid,
.logistics-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.detail-card {
  box-shadow: none;
  background: rgba(255, 253, 248, 0.78);
}

.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px clamp(20px, 6vw, 84px);
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(229, 188, 132, 0.22), transparent 26%),
    linear-gradient(90deg, #172821, #263d31);
}

.cta-strip p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.05rem;
}

.journey-section {
  background: var(--white);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(40, 69, 54, 0.16);
}

.timeline span {
  color: var(--muted);
}

.venue-section {
  background:
    radial-gradient(circle at top left, rgba(201, 146, 69, 0.13), transparent 30%),
    var(--paper);
}

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

.pricing-section {
  background:
    radial-gradient(circle at top right, rgba(201, 146, 69, 0.16), transparent 28%),
    linear-gradient(180deg, #111c18 0%, #16241f 100%);
  color: var(--white);
}

.pricing-section .section-heading p,
.pricing-note p,
.pricing-copy {
  color: rgba(255, 253, 248, 0.76);
}

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

.pricing-card {
  position: relative;
  display: grid;
  gap: 18px;
  background: rgba(255, 253, 248, 0.06);
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.14);
}

.pricing-card-featured {
  background:
    linear-gradient(180deg, rgba(201, 146, 69, 0.18), rgba(255, 253, 248, 0.06)),
    rgba(255, 253, 248, 0.06);
}

.pricing-badge {
  margin-bottom: 0;
}

.pricing-badge-muted {
  color: rgba(255, 253, 248, 0.72);
}

.pricing-amount {
  margin: 0;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.pricing-copy {
  margin: 0;
}

.pricing-note {
  margin-top: 26px;
}

.payment-availability-note {
  margin-top: 10px;
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.98rem;
}

.facilitators-section {
  background: var(--white);
}

.facilitators-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 44px;
}

.facilitators-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.facilitators-heading h2 a,
.facilitator-card h3 a {
  color: inherit;
  text-decoration-color: rgba(201, 146, 69, 0.45);
  text-underline-offset: 0.12em;
}

.facilitator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.facilitator-card {
  overflow: hidden;
  border: 1px solid rgba(40, 69, 54, 0.14);
  border-radius: var(--radius);
  background: #fdfaf3;
  box-shadow: 0 18px 54px rgba(21, 33, 29, 0.12);
}

.facilitator-card img {
  width: 100%;
  height: clamp(420px, 54vw, 620px);
  object-fit: cover;
  object-position: center 38%;
}

.facilitator-card:nth-child(2) img {
  object-position: center;
}

.facilitator-card div {
  padding: clamp(24px, 4vw, 38px);
}

.facilitator-card h3 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
}

.facilitator-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.facilitator-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.facilitator-links a {
  color: var(--clay);
  font-weight: 900;
  text-decoration: none;
}

.flyer-section {
  display: grid;
  place-items: center;
  padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 48px);
  background: var(--paper-deep);
}

.flyer-image {
  margin: 0;
  width: min(100%, 1080px);
  overflow: hidden;
  border: 1px solid rgba(40, 69, 54, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 22px 64px rgba(21, 33, 29, 0.18);
}

.trust-section {
  background: var(--paper-warm);
}

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

.trust-card {
  box-shadow: 0 12px 36px rgba(21, 33, 29, 0.06);
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-section {
  background: var(--white);
}

.faq-accordion {
  margin-top: 48px;
  max-width: 860px;
  border-top: 1px solid rgba(40, 69, 54, 0.14);
}

.faq-item {
  border-bottom: 1px solid rgba(40, 69, 54, 0.14);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: inherit;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--moss);
  transition: transform 0.3s ease;
}

.faq-item.is-active .faq-icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.faq-panel p {
  padding: 0 0 24px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.register-section {
  align-items: start;
  color: var(--white);
  background: #111c18;
}

.register-section p {
  color: rgba(255, 253, 248, 0.76);
}

.interest-form {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 253, 248, 0.08);
  font: inherit;
}

select {
  appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 253, 248, 0.42);
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.form-note {
  margin: 0;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.92rem;
}

.form-note[data-tone="success"] {
  color: #83d6a6;
}

.form-note[data-tone="error"] {
  color: #ffb5a1;
}

.container-note {
  margin-top: 18px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 146, 69, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: rgba(255, 253, 248, 0.82) !important;
}

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

.site-footer {
  justify-content: space-between;
  padding: 26px clamp(20px, 6vw, 84px);
  color: rgba(255, 253, 248, 0.72);
  background: #0d1512;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.88);
  text-decoration: none;
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .details-grid,
  .logistics-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-bottom: 190px;
  }

  .intro-grid,
  .journey-section,
  .register-section,
  .video-section,
  .section-heading,
  .facilitators-heading {
    grid-template-columns: 1fr;
  }

  .video-gallery,
  .facilitator-grid,
  .pricing-grid,
  .form-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    display: grid;
  }

  .facilitator-card img {
    height: min(108vw, 560px);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 98vh;
    padding: 96px 18px 28px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 18, 13, 0.9), rgba(7, 18, 13, 0.46)),
      linear-gradient(0deg, rgba(7, 18, 13, 0.78), rgba(7, 18, 13, 0.12) 50%);
  }

  h1 {
    font-size: clamp(3rem, 19vw, 5.8rem);
  }

  .hero-panel {
    right: 18px;
    bottom: 24px;
  }

  .hero-content {
    padding-bottom: 250px;
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .site-footer {
    display: grid;
  }

  body {
    padding-bottom: 72px;
  }

  .sticky-mobile-cta {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(255, 253, 248, 0.18);
    border-radius: 18px;
    background: rgba(13, 21, 18, 0.92);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
  }

  .sticky-mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 12px;
    color: #24160d;
    background: var(--gold);
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
  }

  .sticky-mobile-cta a:nth-child(2),
  .sticky-mobile-cta a:nth-child(3) {
    color: var(--white);
    border: 1px solid rgba(255, 253, 248, 0.22);
    background: rgba(255, 253, 248, 0.1);
  }
}
