/* ===============================
   Creative Crafts by Neha Somani
   Aroma Stone Diffuser Masterclass
   =============================== */

:root {
  --cream: #fbf7f0;
  --cream-2: #f5ede0;
  --ink: #3a3238;
  --ink-soft: #6b6069;
  --rose: #c9738f;
  --rose-deep: #a8506d;
  --plum: #7d5a83;
  --gold: #c69b57;
  --leaf: #6fae74;
  --white: #ffffff;
  --shadow: 0 18px 40px -20px rgba(90, 60, 70, .45);
  --radius: 20px;
  --wrap: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.08; font-weight: 700; }
.script { font-style: italic; color: var(--rose-deep); font-weight: 600; }

.wrap { width: min(var(--wrap), 92vw); margin-inline: auto; }
.wrap-narrow { width: min(720px, 92vw); }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4em;
  font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 1rem;
  padding: .85em 1.6em; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-sm { padding: .55em 1.1em; font-size: .9rem; }
.btn-block { width: 100%; margin-top: .4rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff; box-shadow: 0 12px 24px -10px rgba(168, 80, 109, .7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(168, 80, 109, .8); }
.btn:disabled { cursor: default; opacity: .85; }
.btn.is-loading { transform: none; box-shadow: 0 12px 24px -10px rgba(168, 80, 109, .5); }
.btn.is-loading:hover { transform: none; }
.btn-spinner {
  width: 1.05em; height: 1.05em; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff;
  animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .btn-spinner { animation-duration: 1.6s; } }
.btn-outline { background: transparent; color: var(--rose-deep); border: 1.5px solid var(--rose); }
.btn-outline:hover { background: rgba(201, 115, 143, .08); }
.btn-ghost { background: rgba(255,255,255,.6); color: var(--rose-deep); border: 1.5px solid rgba(201,115,143,.4); }
.btn-ghost:hover { background: #fff; }

/* ---------- Ticker ---------- */
.ticker {
  background: linear-gradient(90deg, var(--plum), var(--rose-deep));
  color: #fff; font-size: .82rem; letter-spacing: .3px;
  display: flex; gap: 3rem; white-space: nowrap; overflow: hidden; padding: .5rem 0;
}
.ticker span { animation: slide 22s linear infinite; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .ticker span { animation: none; } .ticker { justify-content: center; } .ticker span:nth-child(2){ display:none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 240, .82); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(150, 110, 120, .12);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center; font-size: 1.1rem;
  border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--plum)); color: #fff;
}
.brand-logo { width: 44px; height: 44px; object-fit: contain; display: block; }
.brand-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.25rem; line-height: 1; }
.brand-sub { font-size: .72rem; color: var(--ink-soft); letter-spacing: 1px; text-transform: uppercase; }

/* ---------- Hero ---------- */
.hero { padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 6vw, 4.5rem); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(201,115,143,.14), transparent 60%),
    radial-gradient(50% 50% at 5% 90%, rgba(125,90,131,.12), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
.eyebrow { color: var(--plum); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; font-size: .8rem; margin-bottom: .6rem; }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 1rem; }
.lede { font-size: clamp(1rem, 2.2vw, 1.15rem); color: var(--ink-soft); max-width: 34ch; margin-bottom: 1.4rem; }
.lede strong { color: var(--ink); }

.hero-facts { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.5rem; }
.hero-facts li {
  background: #fff; border: 1px solid rgba(150,110,120,.15); border-radius: 999px;
  padding: .45em 1em; font-size: .88rem; font-weight: 500; display: flex; gap: .4em; align-items: center;
  box-shadow: 0 6px 14px -10px rgba(90,60,70,.4);
}

.price-row { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: 1.6rem; }
.price-now { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--rose-deep); line-height: 1; }
.price-was { text-decoration: line-through; color: var(--ink-soft); font-size: 1.1rem; }
.price-tag { background: rgba(198,155,87,.15); color: var(--gold); font-weight: 600; font-size: .78rem; padding: .35em .8em; border-radius: 999px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }

/* Countdown */
.countdown { display: flex; gap: .6rem; }
.countdown div {
  background: #fff; border-radius: 14px; padding: .6rem .5rem; min-width: 58px; text-align: center;
  box-shadow: var(--shadow); border: 1px solid rgba(150,110,120,.12);
}
.countdown b { display: block; font-size: 1.5rem; font-family: 'Cormorant Garamond', serif; color: var(--ink); line-height: 1; }
.countdown small { font-size: .65rem; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-soft); }

/* ---------- Carousel ---------- */
.hero-media { position: relative; }
.carousel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--cream-2);
  aspect-ratio: 4 / 5;
}
.carousel-track { display: flex; height: 100%; transition: transform .5s cubic-bezier(.4,.0,.2,1); }
.slide { flex: 0 0 100%; height: 100%; }
.slide img { width: 100%; height: 100%; object-fit: cover; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(255,255,255,.85); color: var(--ink); font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center; box-shadow: 0 6px 16px -6px rgba(0,0,0,.4);
  transition: background .15s ease, transform .15s ease;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn:active { transform: translateY(-50%) scale(.92); }
.carousel-btn.prev { left: .7rem; }
.carousel-btn.next { right: .7rem; }

.dots { position: absolute; bottom: .8rem; left: 0; right: 0; display: flex; justify-content: center; gap: .4rem; }
.dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.6); transition: all .2s ease;
}
.dots button.active { background: #fff; width: 22px; border-radius: 999px; }

.media-caption { text-align: center; margin-top: .9rem; color: var(--ink-soft); font-style: italic; font-size: .9rem; }

/* ---------- Sections ---------- */
.section { padding: clamp(3rem, 7vw, 5rem) 0; }
.section-alt { background: var(--cream-2); }
.section-title { font-size: clamp(1.9rem, 4.5vw, 2.9rem); text-align: center; margin-bottom: .4rem; }
.section-title.light { color: #fff; }
.section-sub { text-align: center; color: var(--ink-soft); margin-bottom: 2.2rem; }

/* 3 product cards */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.pcard {
  background: #fff; border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center;
  border: 1px solid rgba(150,110,120,.12); box-shadow: 0 12px 28px -22px rgba(90,60,70,.5);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 20px 36px -24px rgba(90,60,70,.6); }
.pcard-num {
  width: 46px; height: 46px; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700;
  background: linear-gradient(135deg, var(--rose), var(--plum)); color: #fff;
}
.pcard h3 { font-size: 1.5rem; margin-bottom: .4rem; }
.pcard p { color: var(--ink-soft); font-size: .92rem; }

/* Skills */
.skills { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 1.6rem; max-width: 760px; margin-inline: auto; }
.skills li {
  background: #fff; border-radius: 14px; padding: .85rem 1.1rem; font-size: .92rem; font-weight: 500;
  border: 1px solid rgba(150,110,120,.12); box-shadow: 0 8px 18px -16px rgba(90,60,70,.5);
}

/* Bonuses */
.bonuses { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.bonus {
  background: linear-gradient(160deg, #fff, var(--cream-2)); border-radius: var(--radius);
  padding: 1.8rem 1rem; text-align: center; border: 1px solid rgba(198,155,87,.25);
}
.bonus span { font-size: 2rem; display: block; margin-bottom: .5rem; }
.bonus p { font-weight: 500; font-size: .92rem; }

/* ---------- Instructor ---------- */
.instructor-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.instructor-photo {
  position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.instructor-photo::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: inset 0 0 0 6px rgba(255,255,255,.6); pointer-events: none;
}
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-copy .eyebrow { color: var(--plum); margin-bottom: .4rem; }
.instructor-copy .section-title { text-align: left; }
.instructor-bio { color: var(--ink-soft); margin-bottom: 1rem; }
.instructor-bio strong { color: var(--ink); }
.instructor-stats { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.4rem; }
.instructor-stats div {
  background: #fff; border-radius: 14px; padding: 1rem 1.2rem; text-align: center; flex: 1; min-width: 110px;
  border: 1px solid rgba(150,110,120,.14); box-shadow: 0 10px 22px -18px rgba(90,60,70,.5);
}
.instructor-stats b { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--rose-deep); line-height: 1; }
.instructor-stats small { font-size: .72rem; text-transform: uppercase; letter-spacing: .5px; color: var(--ink-soft); }

/* ---------- Enroll ---------- */
.section-enroll { background: linear-gradient(150deg, var(--plum), var(--rose-deep)); color: #fff; }
.enroll-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.enroll-info .section-title { text-align: left; }
.enroll-lede { color: rgba(255,255,255,.85); margin-bottom: 1.4rem; }
.enroll-points { list-style: none; display: grid; gap: .7rem; }
.enroll-points li { font-size: 1rem; padding-left: .2rem; }
.enroll-points s { opacity: .7; }

.lead-form {
  background: #fff; color: var(--ink); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
}
.lead-form h3 { font-size: 1.8rem; margin-bottom: 1.2rem; text-align: center; }
.lead-form label { display: block; font-size: .82rem; font-weight: 500; color: var(--ink-soft); margin-bottom: .9rem; }
.lead-form input {
  width: 100%; margin-top: .3rem; padding: .8rem .9rem; border-radius: 12px;
  border: 1.5px solid rgba(150,110,120,.25); font: inherit; color: var(--ink); background: var(--cream);
  transition: border .15s ease, box-shadow .15s ease;
}
.lead-form input:focus { outline: 0; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,115,143,.18); background: #fff; }
.lead-form input:invalid:not(:placeholder-shown) { border-color: #d98; }
.form-note { text-align: center; font-size: .76rem; color: var(--ink-soft); margin-top: .8rem; }

/* Razorpay Payment Button card */
.enroll-pay { text-align: center; }
.enroll-pay .pay-lede { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.enroll-pay form { display: flex; justify-content: center; margin: .4rem 0; }
.form-success {
  background: rgba(111,174,116,.14); color: #3f7a45; border: 1px solid rgba(111,174,116,.4);
  border-radius: 12px; padding: .9rem; text-align: center; font-size: .9rem; margin-top: 1rem;
}

/* FAQ */
.faq {
  background: #fff; border-radius: 14px; padding: 0 1.2rem; margin-bottom: .7rem;
  border: 1px solid rgba(150,110,120,.14); overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 1rem 0; font-weight: 500; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--rose); transition: transform .2s ease; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { padding-bottom: 1rem; color: var(--ink-soft); font-size: .92rem; }

/* Footer */
.site-footer { background: var(--ink); color: #fff; text-align: center; padding: 2.5rem 0; }
.site-footer .brand-name { font-size: 1.4rem; }
.site-footer .brand-name span { color: rgba(255,255,255,.6); font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 300; }
.footer-small { color: rgba(255,255,255,.55); font-size: .82rem; margin-top: .4rem; }
.socials { display: flex; justify-content: center; gap: .8rem; margin: 1.1rem 0 .3rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  transition: transform .18s ease, background .18s ease;
}
.socials a:hover { transform: translateY(-3px); }
.socials a[aria-label="Instagram"]:hover { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); border-color: transparent; }
.socials a[aria-label="Facebook"]:hover { background: #1877f2; border-color: transparent; }

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: #25d366; box-shadow: 0 10px 24px -6px rgba(37, 211, 102, .6);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 30px -6px rgba(37, 211, 102, .75); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 24px -6px rgba(37,211,102,.6), 0 0 0 0 rgba(37,211,102,.45); }
  50%      { box-shadow: 0 10px 24px -6px rgba(37,211,102,.6), 0 0 0 12px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 60;
  display: none; text-align: center; text-decoration: none;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep)); color: #fff; font-weight: 600;
  padding: .95rem; border-radius: 999px; box-shadow: 0 14px 30px -8px rgba(168,80,109,.7);
}

/* ==========================================================
   HOME PAGE — workshop catalog
   ========================================================== */

/* Hero */
.home-hero { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(1.5rem, 4vw, 2.5rem); text-align: center; position: relative; }
.home-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(55% 55% at 80% 0%, rgba(201,115,143,.16), transparent 60%),
    radial-gradient(50% 50% at 10% 100%, rgba(125,90,131,.13), transparent 60%);
}
.home-hero h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); margin-bottom: 1rem; }
.home-hero .lede { max-width: 52ch; margin: 0 auto 1.6rem; }
.home-hero .instructor-stats { justify-content: center; max-width: 560px; margin-inline: auto; }

/* Section heading with a "count" pill */
.catalog-head { text-align: center; margin-bottom: 2.4rem; }
.catalog-head .section-sub { margin-bottom: 0; }

/* Workshop carousel — sliding cards with scroll-snap */
.wcarousel { position: relative; }

.wcarousel-viewport {
  overflow-x: auto; overflow-y: hidden;
  /* proximity, not mandatory: when the strip overflows by less than a full
     card the only mandatory snap point is the first card, which yanks every
     arrow click back to the start. Proximity lets it rest at the end. */
  scroll-snap-type: x proximity; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;               /* Firefox */
  /* room so hover-lift + shadows aren't clipped */
  padding: .6rem .25rem 1.4rem;
  margin-inline: -.25rem;
}
.wcarousel-viewport::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.wcarousel-track { display: flex; gap: 1.6rem; }

/* each card: fixed responsive width so ~3 show with a peek of the next */
.wcarousel-track .wcard {
  flex: 0 0 clamp(260px, 30%, 340px);
  scroll-snap-align: start;
}

/* arrows */
.wcarousel-btn {
  position: absolute; top: 38%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 0; cursor: pointer;
  background: #fff; color: var(--rose-deep); font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center; box-shadow: 0 10px 24px -8px rgba(90,60,70,.5);
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}
.wcarousel-btn:hover { background: var(--cream); transform: translateY(-50%) scale(1.06); }
.wcarousel-btn:active { transform: translateY(-50%) scale(.94); }
.wcarousel-btn.prev { left: -.4rem; }
.wcarousel-btn.next { right: -.4rem; }
.wcarousel-btn:disabled { opacity: 0; pointer-events: none; }
.wcarousel-btn:focus-visible { outline: 3px solid var(--rose); outline-offset: 2px; }

/* dots */
.wcarousel-dots { display: flex; justify-content: center; gap: .45rem; margin-top: .4rem; }
.wcarousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; cursor: pointer;
  background: rgba(150,110,120,.3); transition: all .2s ease;
}
.wcarousel-dots button.active { background: var(--rose-deep); width: 24px; border-radius: 999px; }

.wcard {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(150,110,120,.14); box-shadow: 0 16px 34px -26px rgba(90,60,70,.55);
  transition: transform .22s ease, box-shadow .22s ease;
}
.wcard:hover { transform: translateY(-6px); box-shadow: 0 26px 44px -26px rgba(90,60,70,.62); }

/* whole-card link overlay (keeps markup simple + accessible) */
.wcard-link { position: absolute; inset: 0; z-index: 2; }
.wcard-link:focus-visible { outline: 3px solid var(--rose); outline-offset: -3px; border-radius: var(--radius); }

.wcard-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.wcard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.wcard:hover .wcard-media img { transform: scale(1.06); }

/* status badge (top-left of the image) */
.wcard-badge {
  position: absolute; top: .8rem; left: .8rem; z-index: 3;
  font-size: .68rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase;
  padding: .35em .8em; border-radius: 999px; color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  box-shadow: 0 6px 14px -6px rgba(168,80,109,.6);
}
.wcard-badge.soon { background: linear-gradient(135deg, var(--gold), #a97e34); box-shadow: 0 6px 14px -6px rgba(169,126,52,.6); }

.wcard-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.wcard-cat { font-size: .72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--plum); margin-bottom: .4rem; }
.wcard h3 { font-size: 1.55rem; line-height: 1.1; margin-bottom: .5rem; }
.wcard p { color: var(--ink-soft); font-size: .92rem; margin-bottom: 1rem; }

.wcard-meta { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem .9rem; margin-bottom: 1.1rem; }
.wcard-meta li { font-size: .8rem; color: var(--ink-soft); display: flex; align-items: center; gap: .35em; }

/* footer row: price + arrow */
.wcard-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.wcard-price { display: flex; align-items: baseline; gap: .45rem; }
.wcard-price b { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--rose-deep); line-height: 1; }
.wcard-price s { color: var(--ink-soft); font-size: .9rem; }
.wcard-price .free { font-size: .9rem; color: var(--gold); font-weight: 600; letter-spacing: .5px; }
.wcard-go {
  position: relative; z-index: 3; font-weight: 600; font-size: .9rem; color: var(--rose-deep);
  display: inline-flex; align-items: center; gap: .3em;
}
.wcard:hover .wcard-go { gap: .55em; }

/* Coming-soon cards read as calmer */
.wcard.is-soon { background: linear-gradient(170deg, #fff, var(--cream-2)); }
.wcard.is-soon .wcard-media { opacity: .92; }
.wcard.is-soon .wcard-go { color: var(--gold); }

/* ---------- Dynamic early-bird / schedule states (driven by script.js) ---------- */
/* label above the landing-page countdown (text set per phase) */
.countdown-label { font-size: .78rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--plum); margin-bottom: .5rem; }
/* price tag + sticky CTA once enrolment has closed */
.price-tag.is-muted { background: rgba(107,96,105,.14); color: var(--ink-soft); }
.sticky-cta.is-disabled { pointer-events: none; opacity: .6; background: #9a8f95; }

/* listing-card badge variants */
.wcard-badge.early { background: linear-gradient(135deg, var(--gold), #a97e34); box-shadow: 0 6px 14px -6px rgba(169,126,52,.6); }
.wcard-badge.live  { background: linear-gradient(135deg, #e0556b, #b0304a); box-shadow: 0 6px 14px -6px rgba(176,48,74,.6); }
.wcard-badge.done  { background: linear-gradient(135deg, #918790, #6b6069); box-shadow: none; }

/* early-bird "ends in" hint on a listing card (overrides the muted meta colour) */
.wcard-meta li.wcard-ends { color: #a97e34; font-weight: 600; }

/* a finished workshop reads calmer on the listing */
.wcard.is-done .wcard-media { filter: grayscale(.35); opacity: .85; }
.wcard.is-done .wcard-price b { color: var(--ink-soft); }

/* Home CTA strip */
.home-cta { background: linear-gradient(150deg, var(--plum), var(--rose-deep)); color: #fff; text-align: center; }
.home-cta .section-title { color: #fff; }
.home-cta p { color: rgba(255,255,255,.85); max-width: 46ch; margin: .4rem auto 1.6rem; }
.home-cta .btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.home-cta .btn-ghost:hover { background: rgba(255,255,255,.24); }

/* ---------- Workshop page: back link + coming-soon banner ---------- */
.back-link { display: inline-flex; align-items: center; gap: .35em; color: var(--rose-deep); font-weight: 500; font-size: .9rem; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

.soon-banner {
  background: rgba(198,155,87,.14); border: 1px solid rgba(198,155,87,.4); color: var(--gold);
  border-radius: 999px; padding: .5em 1.2em; font-size: .82rem; font-weight: 600;
  display: inline-flex; gap: .5em; align-items: center; margin-bottom: 1.2rem;
}

/* Notify form (coming-soon workshops) */
.notify-form { display: flex; gap: .6rem; flex-wrap: wrap; max-width: 480px; }
.notify-form input {
  flex: 1; min-width: 200px; padding: .8rem .9rem; border-radius: 12px;
  border: 1.5px solid rgba(150,110,120,.25); font: inherit; color: var(--ink); background: var(--cream);
}
.notify-form input:focus { outline: 0; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(201,115,143,.18); background: #fff; }

/* ---------- Thank-you page ---------- */
.ty { padding: clamp(2.5rem, 7vw, 4.5rem) 0; }
.ty-inner { text-align: center; }
.ty-check {
  width: 84px; height: 84px; margin: 0 auto 1.4rem; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--leaf), #4f9c68);
  box-shadow: 0 16px 34px -12px rgba(79, 156, 104, .8);
  animation: ty-pop .5s cubic-bezier(.22, 1, .36, 1) both;
}
@keyframes ty-pop { from { transform: scale(.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ty h1 { font-size: clamp(2.4rem, 8vw, 3.4rem); margin-bottom: .6rem; }
.ty-lede { color: var(--ink-soft); font-size: 1.08rem; max-width: 46ch; margin: 0 auto 2rem; }
.ty-lede strong { color: var(--ink); }
.ty-card, .ty-contact {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.8rem clamp(1.2rem, 4vw, 2.2rem); text-align: left; margin-bottom: 1.4rem;
}
.ty-card h2, .ty-contact h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.ty-steps { list-style: none; display: grid; gap: .9rem; }
.ty-steps li { display: flex; gap: .7rem; align-items: flex-start; color: var(--ink-soft); }
.ty-steps li strong { color: var(--ink); font-weight: 600; }
.ty-steps span { font-size: 1.25rem; line-height: 1.3; flex-shrink: 0; }
.ty-contact { text-align: center; }
.ty-contact > p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.ty-wa-btn { background: linear-gradient(135deg, #25d366, #128c46); box-shadow: 0 12px 24px -10px rgba(18, 140, 70, .7); }
.ty-wa-btn:hover { box-shadow: 0 16px 30px -10px rgba(18, 140, 70, .8); }
.ty-follow { margin-top: 1.6rem; font-size: .85rem; letter-spacing: .5px; text-transform: uppercase; color: var(--ink-soft); }
.socials-dark a { color: var(--rose-deep); background: rgba(201, 115, 143, .1); border-color: rgba(201, 115, 143, .25); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  /* ~2 cards + a peek of the next */
  .wcarousel-track .wcard { flex-basis: clamp(240px, 46%, 320px); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero-copy { text-align: center; }
  .hero-facts, .price-row, .hero-cta, .countdown { justify-content: center; }
  .lede { max-width: none; }
  .enroll-grid { grid-template-columns: 1fr; }
  .enroll-info .section-title { text-align: center; }
  .bonuses { grid-template-columns: repeat(2, 1fr); }
  .instructor-grid { grid-template-columns: 1fr; text-align: center; }
  .instructor-photo { max-width: 340px; margin-inline: auto; }
  .instructor-copy .eyebrow,
  .instructor-copy .section-title { text-align: center; }
}

@media (max-width: 620px) {
  .cards-3 { grid-template-columns: 1fr; }
  /* one card + a peek; hide arrows, swipe is natural on touch */
  .wcarousel-track .wcard { flex-basis: 82%; }
  .wcarousel-btn { display: none; }
  .skills { grid-template-columns: 1fr; }
  .hero-facts li { font-size: .8rem; }
  .sticky-cta { display: block; }
  .site-footer { padding-bottom: 5.5rem; }
  .header-inner .btn { display: none; }
  /* lift WhatsApp button above the full-width sticky enroll bar */
  .wa-float { bottom: 5rem; width: 52px; height: 52px; }
}
