/* =========================================================
   Yogisnest by Yamini D'Silva — Prenatal Yoga Webinar
   Static stylesheet. All values are plain px / hex.
   Palette:
     background        #faf4e7      card        #ffffff
     foreground        #321614      primary     #b44e2e
     primary-fg        #fefbf6      secondary   #d9e7cd
     secondary-fg      #233319      muted       #f5ebde
     muted-foreground  #594139      accent      #fad5c8
     border            #e2d3c4      input       #ddccbb
     blush             #ffdad3      sage        #c5d8bb
     sage-deep         #405f39      maroon      #4f1a18
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  border-color: #e2d3c4;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: #faf4e7;
  color: #321614;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Lora", Georgia, serif;
  letter-spacing: -0.16px;
  line-height: 1.15;
  margin: 0;
  font-weight: 600;
}

p {
  margin: 0;
  line-height: 1.75;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button,
input {
  font: inherit;
  color: inherit;
}

.icon {
  width: 20px;
  height: 20px;
  flex: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-16 {
  width: 16px;
  height: 16px;
}
.icon-24 {
  width: 24px;
  height: 24px;
}
.icon-primary {
  color: #b44e2e;
}
.icon-sage {
  color: #405f39;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* ---------------- layout ---------------- */

.page {
  position: relative;
  overflow-x: hidden;
  background-color: #faf4e7;
}

.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  left: -96px;
  top: 0;
  width: 288px;
  height: 288px;
  background-color: rgba(255, 218, 211, 0.7);
}
.blob-2 {
  right: 0;
  top: 40%;
  width: 320px;
  height: 320px;
  background-color: rgba(197, 216, 187, 0.6);
}
.blob-3 {
  left: -64px;
  bottom: 10%;
  width: 288px;
  height: 288px;
  background-color: rgba(250, 213, 200, 0.7);
}

.section {
  position: relative;
  padding: 64px 20px;
  z-index: 1;
}

.section.tint {
  background-color: #f7efe1;
}

.section.hero {
  padding-top: 56px;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

/* ---------------- buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 32px;
  border: 0;
  border-radius: 9999px;
  background-color: #b44e2e;
  color: #fefbf6;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow:
    0 2px 4px -2px rgba(79, 26, 24, 0.18),
    0 18px 40px -22px rgba(79, 26, 24, 0.42);
  transition:
    box-shadow 0.3s ease,
    filter 0.3s ease,
    transform 0.3s ease;
}

.btn:hover {
  filter: brightness(1.05);
  box-shadow:
    0 3px 6px -2px rgba(79, 26, 24, 0.2),
    0 28px 60px -26px rgba(79, 26, 24, 0.5);
}

.btn:focus-visible {
  outline: 2px solid #b44e2e;
  outline-offset: 4px;
}

.btn .icon {
  transition: transform 0.3s ease;
}
.btn:hover .icon {
  transform: translateX(4px);
}

.btn.soft {
  background-color: #ffffff;
  color: #b44e2e;
  border: 1px solid rgba(180, 78, 46, 0.4);
}
.btn.soft:hover {
  background-color: #fad5c8;
}

.btn.block {
  width: 100%;
}

/* ---------------- hero ---------------- */

.hero-stack {
  display: flex;
  flex-direction: column;
  animation: soft-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.eyebrow {
  order: 1;
  align-self: flex-start;
  margin-bottom: 16px;
  border-radius: 9999px;
  background-color: #d9e7cd;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: #233319;
}

.hero-title {
  order: 2;
  font-size: 24px;
  line-height: 1.2;
}

.hero-sub {
  order: 3;
  margin-top: 12px;
  font-family: "Fraunces", "Lora", Georgia, serif;
  font-size: 20px;
  color: #b44e2e;
}

.hero-trust {
  order: 4;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #405f39;
}

.hero-form-card {
  order: 5;
  margin-top: 16px;
  max-width: 448px;
  border: 1px solid #e2d3c4;
  border-radius: 24px;
  background-color: #ffffff;
  padding: 16px;
  box-shadow:
    0 3px 6px -2px rgba(79, 26, 24, 0.2),
    0 28px 60px -26px rgba(79, 26, 24, 0.5);
}

.hero-offer {
  order: 6;
  margin-top: 24px;
}

.hero-guide {
  order: 7;
  margin-top: 16px;
}

.hero-copy {
  order: 8;
  margin-top: 20px;
  max-width: 672px;
  font-size: 16px;
  color: #594139;
}

.hero-cta {
  order: 9;
  margin-top: 32px;
}

.hero-form-card h2 {
  font-size: 20px;
}

.hero-form-card .card-note {
  margin-top: 2px;
  font-size: 14px;
  color: #594139;
}

/* ---------------- webinar chips / offer / countdown ---------------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2d3c4;
  border-radius: 9999px;
  background-color: #ffffff;
  padding: 8px 16px;
  box-shadow:
    0 2px 4px -2px rgba(79, 26, 24, 0.18),
    0 18px 40px -22px rgba(79, 26, 24, 0.42);
}

.when {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #e2d3c4;
  border-radius: 9999px;
  background-color: #faf4e7;
  padding: 6px 12px;
}

.when.lg {
  padding: 8px 16px;
}

.offer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.offer-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  border: 2px solid rgba(180, 78, 46, 0.45);
  border-radius: 16px;
  background-color: #dfead6;
  padding: 12px 96px 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #233319;
  animation: offer-glow 2.6s ease-in-out infinite;
}

.offer-price {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.offer-price .line {
  font-size: 16px;
  font-weight: 800;
  color: #b44e2e;
}

.offer-price .old {
  margin-right: 8px;
  color: #8a736a;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.offer-price .sub {
  font-size: 12px;
  font-weight: 500;
  color: #2c3f21;
}

.ribbon {
  position: absolute;
  right: -32px;
  top: 12px;
  transform: rotate(38deg);
  background-color: #b44e2e;
  padding: 2px 32px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #fefbf6;
  pointer-events: none;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(180, 78, 46, 0.4);
  border-radius: 16px;
  background-color: #ffffff;
  padding: 10px 16px;
  box-shadow:
    0 3px 6px -2px rgba(79, 26, 24, 0.2),
    0 28px 60px -26px rgba(79, 26, 24, 0.5);
}

.countdown .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #594139;
}

.countdown .digits {
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
  color: #b44e2e;
}

.countdown.small {
  padding: 6px 12px;
}
.countdown.small .digits {
  font-size: 18px;
}
.countdown.small .label {
  display: none;
}

.countdown.urgent {
  animation: urgent-flash 1s ease-in-out infinite;
}

.no-risk {
  margin-top: 8px;
  font-size: 12px;
  color: #594139;
}

/* ---------------- forms ---------------- */

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form.compact {
  gap: 10px;
}

.form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.form.compact label {
  margin-bottom: 6px;
}

.form input {
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid #ddccbb;
  border-radius: 16px;
  background-color: #faf4e7;
  font-size: 16px;
  color: #321614;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form.compact input,
.form.compact .btn {
  min-height: 44px;
}

.form input:focus {
  border-color: #b44e2e;
  box-shadow: 0 0 0 4px rgba(180, 78, 46, 0.15);
}

.form .fine {
  text-align: center;
  font-size: 12px;
  color: #594139;
}

.form-success {
  border: 1px solid #d9e7cd;
  border-radius: 24px;
  background-color: #e4eedc;
  padding: 32px;
  text-align: center;
  animation: soft-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.form-success .tick {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 9999px;
  background-color: #ffffff;
}

.form-success h3 {
  font-size: 24px;
  color: #233319;
}

.form-success p {
  margin-top: 12px;
  font-size: 14px;
  color: #233319;
}

/* ---------------- generic section pieces ---------------- */

.h2 {
  font-size: 30px;
}

.lead {
  margin-top: 32px;
  max-width: 672px;
  font-size: 16px;
  color: #594139;
}

.grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.card {
  border: 1px solid #e2d3c4;
  border-radius: 24px;
  background-color: #ffffff;
  padding: 24px;
  box-shadow:
    0 2px 4px -2px rgba(79, 26, 24, 0.18),
    0 18px 40px -22px rgba(79, 26, 24, 0.42);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.hoverable:hover {
  transform: translateY(-6px);
  box-shadow:
    0 3px 6px -2px rgba(79, 26, 24, 0.2),
    0 28px 60px -26px rgba(79, 26, 24, 0.5);
}

.card h3 {
  font-size: 20px;
}

.card .small {
  font-size: 18px;
}

.card p {
  margin-top: 8px;
  font-size: 14px;
  color: #594139;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  background-color: #ffdad3;
}

.mt-8 {
  margin-top: 32px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-5 {
  margin-top: 20px;
}
.mt-2 {
  margin-top: 8px;
}

/* quotes (Why attend) */

.quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.quote {
  max-width: 576px;
  border: 1px solid #e2d3c4;
  border-radius: 24px;
  border-bottom-left-radius: 6px;
  background-color: #ffffff;
  padding: 16px 24px;
  font-size: 16px;
  box-shadow:
    0 3px 6px -2px rgba(79, 26, 24, 0.2),
    0 28px 60px -26px rgba(79, 26, 24, 0.5);
}

.quote.alt {
  align-self: flex-end;
  border-color: #d9e7cd;
  background-color: #dfead6;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 6px;
}

/* inside list */

.inside-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.inside-list li {
  display: flex;
  gap: 16px;
  border: 1px solid #e2d3c4;
  border-radius: 24px;
  background-color: #ffffff;
  padding: 20px;
  box-shadow:
    0 2px 4px -2px rgba(79, 26, 24, 0.18),
    0 18px 40px -22px rgba(79, 26, 24, 0.42);
}

.inside-list .dot {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  flex: none;
  border-radius: 9999px;
  background-color: #d9e7cd;
}

.inside-list .title {
  font-weight: 600;
}

.inside-list .body {
  margin-top: 4px;
  font-size: 14px;
  color: #594139;
}

/* instructor */

.instructor-card {
  display: grid;
  gap: 32px;
  margin-top: 32px;
  border: 1px solid #e2d3c4;
  border-radius: 24px;
  background-color: #ffffff;
  padding: 24px;
  box-shadow:
    0 2px 4px -2px rgba(79, 26, 24, 0.18),
    0 18px 40px -22px rgba(79, 26, 24, 0.42);
}

.video-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid #e2d3c4;
  border-radius: 24px;
  background-color: rgba(255, 218, 211, 0.4);
  box-shadow:
    0 3px 6px -2px rgba(79, 26, 24, 0.2),
    0 28px 60px -26px rgba(79, 26, 24, 0.5);
}

.video-wrap video {
  width: 100%;
  aspect-ratio: 9 / 16;
  background-color: rgba(79, 26, 24, 0.1);
  object-fit: cover;
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  width: 100%;
  background-color: rgba(79, 26, 24, 0.15);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.video-play:hover {
  background-color: rgba(79, 26, 24, 0.25);
}

.video-play span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background-color: #b44e2e;
  color: #fefbf6;
  box-shadow:
    0 3px 6px -2px rgba(79, 26, 24, 0.2),
    0 28px 60px -26px rgba(79, 26, 24, 0.5);
  transition: transform 0.3s ease;
}

.video-play:hover span {
  transform: scale(1.1);
}

.video-play .icon {
  fill: currentColor;
  stroke: currentColor;
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.instructor-id {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.instructor-id .avatar {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  flex: none;
  overflow: hidden;
  border-radius: 9999px;
  background-color: #ffdad3;
}

.instructor-id .avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.instructor-id h3 {
  font-size: 24px;
}

.instructor-id .role {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #b44e2e;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
}

.credentials li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.credentials .icon {
  margin-top: 2px;
}

/* accordion */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.acc-item {
  overflow: hidden;
  border: 1px solid #e2d3c4;
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow:
    0 2px 4px -2px rgba(79, 26, 24, 0.18),
    0 18px 40px -22px rgba(79, 26, 24, 0.42);
}

.acc-item h3 {
  margin: 0;
}

.acc-btn {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 0;
  background: none;
  text-align: left;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #321614;
  cursor: pointer;
}

.acc-btn span {
  flex: 1 1 auto;
  min-width: 0;
}

.acc-btn .icon {
  color: #b44e2e;
  transition: transform 0.3s ease;
}

.acc-item.open .acc-btn .icon {
  transform: rotate(180deg);
}

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.acc-item.open .acc-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.acc-panel > div {
  overflow: hidden;
}

.acc-panel p {
  padding: 0 24px 24px;
  font-size: 14px;
  color: #594139;
}

/* final CTA */

.final-card {
  border-radius: 40px;
  background-color: #e4eedc;
  padding: 32px;
  text-align: center;
}

.final-card img {
  margin: 0 auto 24px;
  height: 160px;
  width: auto;
  object-fit: contain;
}

.final-card .lead {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.final-card .join {
  margin-top: 24px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 24px;
  color: #b44e2e;
}

.final-card .fine {
  margin-top: 16px;
  font-size: 14px;
  color: #594139;
}

/* guide illustrations */

.section-guide {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.section-guide .ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border-radius: 9999px;
  background-color: rgba(255, 218, 211, 0.6);
}

.section-guide.small .ring {
  width: 96px;
  height: 96px;
}

.section-guide .ring img,
.scroll-guide .stack img {
  position: absolute;
  inset: 0;
  margin: auto;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.section-guide .ring img {
  height: 88%;
  width: auto;
}

.section-guide .ring img.active,
.scroll-guide .stack img.active {
  opacity: 1;
  transform: scale(1);
  animation: breathe 6.5s ease-in-out infinite;
}

.scroll-guide {
  display: none;
}

/* marquee gallery */

.gallery-head h2 {
  font-size: 30px;
}

.gallery-head p {
  margin-top: 12px;
  max-width: 576px;
  font-size: 16px;
  color: #594139;
}

.marquee {
  overflow-x: hidden;
  margin: 32px -20px 0;
  padding: 0 20px;
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
}

.marquee:hover .marquee-track,
.marquee-track.paused {
  animation-play-state: paused;
}

.marquee figure {
  margin: 0;
  flex: none;
  overflow: hidden;
  border: 1px solid #e2d3c4;
  border-radius: 24px;
  background-color: #ffffff;
  box-shadow:
    0 2px 4px -2px rgba(79, 26, 24, 0.18),
    0 18px 40px -22px rgba(79, 26, 24, 0.42);
}

.marquee img {
  height: 192px;
  width: auto;
  max-width: none;
  object-fit: cover;
}

/* footer */

.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid #e2d3c4;
  background-color: #f5ebde;
  padding: 56px 20px;
}

.site-footer .inner {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.site-footer h2 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.site-footer .disclaimer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  font-size: 14px;
  color: #321614;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-bottom.divided {
  margin-top: 32px;
  border-top: 1px solid #e2d3c4;
  padding-top: 24px;
}

.footer-brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 16px;
}

.footer-copy {
  margin-top: 4px;
  font-size: 12px;
  color: #594139;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  color: #594139;
}

.footer-spacer {
  height: 96px;
}

.story-link {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.story-link:hover {
  color: #b44e2e;
}

/* sticky CTA bar */

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  border-top: 1px solid #e2d3c4;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 16px max(12px, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px -14px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-bar .inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}

.sticky-bar .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
}

.sticky-bar .info p {
  font-size: 14px;
  font-weight: 500;
}

.sticky-bar .when-inline {
  display: none;
  color: #594139;
}

.sticky-bar .btn {
  min-height: 48px;
  width: 100%;
  padding: 0 24px;
}

/* thank-you page */

.thanks {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #faf4e7;
}

.thanks .wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 672px;
  margin: 0 auto;
  padding: 56px 20px;
  text-align: center;
}

.thanks .brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 18px;
  color: #b44e2e;
}

.thanks-card {
  margin-top: 32px;
  border: 1px solid #e2d3c4;
  border-radius: 40px;
  background-color: #ffffff;
  padding: 28px;
  box-shadow:
    0 3px 6px -2px rgba(79, 26, 24, 0.2),
    0 28px 60px -26px rgba(79, 26, 24, 0.5);
  animation: soft-rise 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.thanks-card > img {
  margin: 0 auto 24px;
  height: 144px;
  width: auto;
  object-fit: contain;
  animation: breathe 6.5s ease-in-out infinite;
}

.thanks-card h1 {
  font-size: 30px;
}

.thanks-card .sub {
  margin-top: 16px;
  font-size: 16px;
  color: #594139;
}

.thanks-when {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.important {
  margin-top: 32px;
  border: 1px solid #d9e7cd;
  border-radius: 24px;
  background-color: #e4eedc;
  padding: 20px;
  text-align: left;
}

.important .kicker {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #405f39;
}

.important p.body {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #233319;
}

.whatsapp-btn {
  margin-top: 28px;
  width: 100%;
  gap: 12px;
}

.whatsapp-btn svg.wa {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  flex: none;
}

.back-home {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 500;
  color: #b44e2e;
}

/* legal pages */

.legal {
  min-height: 100vh;
  background-color: #faf4e7;
}

.legal .wrap {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 48px 20px;
}

.legal .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #b44e2e;
}

.legal h1 {
  margin-top: 32px;
  font-size: 30px;
}

.legal .draft {
  margin-top: 16px;
  border: 1px dashed rgba(180, 78, 46, 0.5);
  border-radius: 16px;
  background-color: rgba(250, 213, 200, 0.4);
  padding: 12px 16px;
  font-size: 14px;
  color: #47211b;
}

.legal .intro {
  margin-top: 24px;
  font-size: 16px;
  color: #594139;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  border: 1px solid #e2d3c4;
  border-radius: 24px;
  background-color: #ffffff;
  padding: 24px;
  box-shadow:
    0 2px 4px -2px rgba(79, 26, 24, 0.18),
    0 18px 40px -22px rgba(79, 26, 24, 0.42);
}

.legal-body h2 {
  font-size: 20px;
}

.legal-body .text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  font-size: 14px;
  color: #594139;
}

/* ---------------- animations ---------------- */

@keyframes breathe {
  0%,
  100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.025) translateY(-6px);
  }
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes offer-glow {
  0%,
  100% {
    box-shadow:
      0 3px 6px -2px rgba(79, 26, 24, 0.2),
      0 0 0 0 rgba(180, 78, 46, 0.3);
  }
  50% {
    box-shadow:
      0 3px 6px -2px rgba(79, 26, 24, 0.2),
      0 0 0 7px rgba(180, 78, 46, 0.12);
  }
}

@keyframes urgent-flash {
  0%,
  100% {
    transform: scale(1);
    border-color: rgba(180, 78, 46, 0.4);
  }
  50% {
    transform: scale(1.045);
    border-color: #b44e2e;
  }
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ---------------- responsive: >= 640px ---------------- */

@media (min-width: 640px) {
  .section {
    padding: 96px 20px;
  }
  .section.hero {
    padding-top: 80px;
  }
  .eyebrow {
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: 48px;
  }
  .hero-sub {
    margin-top: 16px;
    font-size: 24px;
  }
  .hero-trust {
    margin-top: 24px;
  }
  .hero-guide {
    margin-top: 24px;
  }
  .hero-form-card {
    margin-top: 32px;
    padding: 24px;
  }
  .hero-form-card .card-note {
    margin-top: 4px;
  }
  .form.compact input,
  .form.compact .btn {
    min-height: 48px;
  }
  .form.compact {
    gap: 12px;
  }
  .h2,
  .gallery-head h2,
  .thanks-card h1,
  .legal h1 {
    font-size: 36px;
  }
  .countdown .digits {
    font-size: 30px;
  }
  .grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-guide .ring {
    width: 144px;
    height: 144px;
  }
  .section-guide.small .ring {
    width: 112px;
    height: 112px;
  }
  .marquee {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
  .marquee img {
    height: 240px;
  }
  .instructor-card {
    padding: 32px;
  }
  .final-card {
    padding: 48px;
  }
  .thanks-card {
    padding: 40px;
  }
  .legal-body {
    padding: 32px;
  }
  .whatsapp-btn {
    width: auto;
  }
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .sticky-bar .inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .sticky-bar .btn {
    width: auto;
    flex: none;
  }
  .sticky-bar .when-inline {
    display: inline;
  }
  .video-wrap video {
    aspect-ratio: 4 / 5;
  }
}

/* ---------------- responsive: >= 768px ---------------- */

@media (min-width: 768px) {
  .instructor-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

/* ---------------- responsive: >= 1024px (desktop) ---------------- */

@media (min-width: 1024px) {
  .container {
    max-width: 768px;
    margin-left: auto;
    margin-right: 26vw;
  }

  .site-footer .inner {
    margin-left: auto;
    margin-right: 26vw;
  }
  .site-footer.plain .inner {
    margin-right: auto;
  }

  /* hero returns to source order on desktop */
  .hero-stack > * {
    order: 0 !important;
  }

  .section-guide {
    display: none;
  }

  .final-card > img {
    display: none;
  }

  .scroll-guide {
    display: block;
    position: fixed;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    pointer-events: none;
  }

  .scroll-guide .stack {
    position: relative;
    height: 62vh;
    max-height: 560px;
    width: 24vw;
    max-width: 340px;
  }

  .scroll-guide .halo {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 9999px;
    background-color: rgba(255, 218, 211, 0.5);
    filter: blur(32px);
  }

  .scroll-guide .stack img {
    height: 100%;
    width: 100%;
  }

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

/* ---------------- reduced motion ---------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .marquee-track {
    animation: none !important;
  }
}
