/* =========================================================================
   Kyra Kares
   Palette, type and layout all come from the Kyra Kares brand kit.
   #4B1F6F Deep Purple . #7B3FBF Purple . #C9A6E6 Lavender
   #EAD9F7 Lilac . #FFF7E6 Cream . #FEC95B Sunshine
   ========================================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Fredoka';
  src: url('/assets/fonts/fredoka-latin-var.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122;
}
@font-face {
  font-family: 'Figtree';
  src: url('/assets/fonts/figtree-latin-var.woff2') format('woff2-variations');
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+2122;
}

/* ---------- Tokens ---------- */
:root {
  --deep:      #4B1F6F;
  --purple:    #7B3FBF;
  --lavender:  #C9A6E6;
  --lilac:     #EAD9F7;
  --cream:     #FFF7E6;
  --sunshine:  #FEC95B;

  --ink:       #3A1755;          /* body copy, a touch deeper than Deep Purple */
  --ink-soft:  #6B4A88;          /* secondary copy */
  --paper:     #FFFDF7;          /* card faces, a hair brighter than the page */

  --display: 'Fredoka', 'Trebuchet MS', 'Segoe UI', sans-serif;
  --body: 'Figtree', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 34px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(75, 31, 111, .07);
  --shadow-md: 0 10px 30px rgba(75, 31, 111, .10);
  --shadow-lg: 0 22px 50px rgba(75, 31, 111, .16);

  --wrap: 1120px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1.02rem, .32vw + .96rem, 1.13rem);
  line-height: 1.68;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: var(--purple); }

h1, h2, h3 {
  font-family: var(--display);
  color: var(--deep);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4.15rem); font-weight: 600; }
h2 { font-size: clamp(1.85rem, 3.9vw, 2.85rem); font-weight: 600; }
h3 { font-size: clamp(1.12rem, 1.5vw, 1.28rem); font-weight: 600; }
p  { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: .5rem;
  background: var(--deep);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: var(--r-pill);
  z-index: 100;
  text-decoration: none;
}
.skip:focus { left: .75rem; }

:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================================================================
   Header
   ========================================================================= */
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  /* Solid, not translucent-with-blur. A full-width backdrop-filter repaints on
     every scroll frame and is genuinely expensive on a wide display, and at 88%
     the deep purple band underneath bled through and turned the bar a muddy
     mauve. Solid cream stays clean over every section and costs nothing. */
  background: var(--cream);
  border-bottom: 1px solid rgba(201, 166, 230, .5);
}
.site-head__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .6rem;
}
.brand { display: inline-block; line-height: 0; }
.brand img { width: clamp(178px, 26vw, 262px); height: auto; }

.site-nav {
  display: flex;
  gap: clamp(.65rem, 2vw, 1.6rem);
  font-family: var(--display);
  font-weight: 500;
  font-size: .96rem;
}
.site-nav a {
  color: var(--deep);
  text-decoration: none;
  padding: .35rem .1rem;
  border-bottom: 2.5px solid transparent;
  transition: color .18s ease, border-color .18s ease;
}
.site-nav a:hover { color: var(--purple); border-bottom-color: var(--sunshine); }

/* On narrow screens the nav stacks under the logo rather than disappearing.
   Four short links fit on one row at this size, so a hamburger would be more
   machinery than the content needs. */
@media (max-width: 720px) {
  .site-head__inner { flex-direction: column; gap: .1rem; padding-block: .5rem .35rem; }
  .site-nav { width: 100%; justify-content: center; gap: 1.05rem; font-size: .89rem; }
  .site-nav a { padding: .3rem .05rem; }
}
@media (max-width: 380px) {
  .site-nav { gap: .7rem; font-size: .82rem; }
}
/* The stacked header is taller, so anchor jumps need more clearance than the
   5.5rem the desktop bar wants. */
@media (max-width: 720px) {
  .band { scroll-margin-top: 7.5rem; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  padding-block: clamp(3.2rem, 8vw, 6rem) clamp(4.5rem, 10vw, 7.5rem);
  background:
    radial-gradient(58rem 34rem at 78% -8%, rgba(234, 217, 247, .95), transparent 62%),
    radial-gradient(42rem 30rem at 6% 12%, rgba(201, 166, 230, .42), transparent 60%),
    var(--cream);
  overflow: hidden;
}

/* The sun from the brand kit, tucked into the top corner. */
.hero::before {
  content: '';
  position: absolute;
  top: clamp(-3.5rem, -6vw, -2rem);
  right: clamp(-3.5rem, -6vw, -2rem);
  width: clamp(11rem, 22vw, 17rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 34%, #FFE1A0, var(--sunshine) 66%, rgba(254, 201, 91, 0) 71%);
  opacity: .5;
  pointer-events: none;
}

/* Hand-drawn swoosh, the brand kit's signature underline, closing the section. */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(38px, 5vw, 62px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0 44c180-30 340 16 520 20s330-40 512-32c130 6 268 40 408 30v60H0z' fill='%23FFFDF7'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  pointer-events: none;
}

.hero__inner { position: relative; max-width: 46rem; z-index: 1; }

/* Drifting hearts. Decorative only, and they hold still for reduced motion. */
.confetti { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.confetti span {
  position: absolute;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 22'%3E%3Cpath d='M12 21S1.8 14.3 1.8 7.9C1.8 4.3 4.6 1.6 8 1.6c2 0 3.4 1 4 2.1.6-1.1 2-2.1 4-2.1 3.4 0 6.2 2.7 6.2 6.3C22.2 14.3 12 21 12 21z' fill='%237B3FBF'/%3E%3C/svg%3E") no-repeat center / contain;
  animation: drift 9s ease-in-out infinite;
}
.confetti span:nth-child(1) { width: 30px; height: 28px; top: 14%; right: 9%;  opacity: .30; animation-delay: 0s;   }
.confetti span:nth-child(2) { width: 19px; height: 18px; top: 40%; right: 20%; opacity: .22; animation-delay: -2.2s; }
.confetti span:nth-child(3) { width: 42px; height: 39px; top: 64%; right: 5%;  opacity: .17; animation-delay: -4.4s; }
.confetti span:nth-child(4) { width: 15px; height: 14px; top: 78%; right: 27%; opacity: .26; animation-delay: -6.1s; }
.confetti span:nth-child(5) { width: 24px; height: 22px; top: 8%;  right: 33%; opacity: .16; animation-delay: -7.5s; }
@media (max-width: 900px) { .confetti span:nth-child(2), .confetti span:nth-child(4), .confetti span:nth-child(5) { display: none; } }

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-16px) rotate(6deg); }
}

.eyebrow {
  display: inline-block;
  font-family: var(--display);
  font-weight: 500;
  font-size: .87rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(255, 253, 247, .8);
  border: 1.5px solid var(--lavender);
  border-radius: var(--r-pill);
  padding: .4rem 1.05rem;
  margin: 0 0 1.4rem;
}

.hero h1 { margin-bottom: 1.35rem; }
/* Second line picks up the mid purple, the way the wordmark does. */
.h1-alt { color: var(--purple); }

.lede {
  font-size: clamp(1.1rem, .5vw + 1rem, 1.28rem);
  color: var(--ink-soft);
  max-width: 40rem;
}

.pledge {
  display: flex;
  align-items: center;
  gap: .95rem;
  margin: 1.9rem 0 2.1rem;
  padding: .95rem 1.4rem .95rem 1rem;
  background: var(--paper);
  border: 2px solid var(--lilac);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-sm);
  max-width: 33rem;
  font-size: 1rem;
  line-height: 1.45;
}
.pledge strong { color: var(--deep); }
.pledge__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  background: var(--lilac);
  border-radius: 50%;
}
.pledge__icon img { width: 30px; height: auto; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.03rem;
  text-decoration: none;
  padding: .82rem 1.7rem;
  border-radius: var(--r-pill);
  border: 2.5px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--purple), var(--deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(123, 63, 191, .3);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(123, 63, 191, .38); }
.btn--ghost {
  background: var(--paper);
  color: var(--deep);
  border-color: var(--lavender);
}
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--purple); box-shadow: var(--shadow-sm); }

/* =========================================================================
   Bands
   ========================================================================= */
.band {
  position: relative;
  padding-block: clamp(3.4rem, 7vw, 5.6rem);
  background: var(--paper);
  scroll-margin-top: 5.5rem; /* clears the sticky header on anchor jumps */
}
.band--soft { background: linear-gradient(180deg, var(--lilac), #F6EDFC); }
.band--dark { background: linear-gradient(140deg, var(--deep), #63239B 60%, var(--purple)); color: #F3E9FB; }

/* A swoosh at the foot of each band so the sections meet in a curve, never a hard line. */
.band--soft::after,
.band--dark::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: clamp(34px, 4.5vw, 56px);
  pointer-events: none;
}
.band--soft::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0 40c210 34 380-24 620-18s360 44 560 34c96-5 180-22 260-30v60H0z' fill='%23FFFDF7'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.band--dark::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 70' preserveAspectRatio='none'%3E%3Cpath d='M0 48c190-36 366 14 566 20s372-38 566-28c112 6 220 26 308 22v60H0z' fill='%23EAD9F7'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* Section headings get the brand's hand-drawn underline. */
.band h2 {
  position: relative;
  display: inline-block;
  padding-bottom: .7rem;
  margin-bottom: .85rem;
}
.band h2::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M4 9C56 2 118 12 170 6c26-3 44-1 66 2' stroke='%237B3FBF' stroke-width='5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E") no-repeat left bottom / 100% 12px;
}
.band--dark h2::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 14' preserveAspectRatio='none'%3E%3Cpath d='M4 9C56 2 118 12 170 6c26-3 44-1 66 2' stroke='%23FEC95B' stroke-width='5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
}
.band--dark h2 { color: #fff; }

.section-lede {
  color: var(--ink-soft);
  max-width: 40rem;
  margin-bottom: 2.4rem;
  font-size: 1.08rem;
}
.band--soft .section-lede { color: #5C3880; }

/* =========================================================================
   Cards: what I do
   ========================================================================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.card {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--lilac);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--lavender);
  box-shadow: var(--shadow-md);
}
/* A small heart sits on every card, the way it does across the brand kit. */
.card::before {
  content: '';
  position: absolute;
  top: 1.35rem; right: 1.4rem;
  width: 19px; height: 19px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 22'%3E%3Cpath d='M12 21S1.8 14.3 1.8 7.9C1.8 4.3 4.6 1.6 8 1.6c2 0 3.4 1 4 2.1.6-1.1 2-2.1 4-2.1 3.4 0 6.2 2.7 6.2 6.3C22.2 14.3 12 21 12 21z' fill='%23C9A6E6'/%3E%3C/svg%3E") no-repeat center / contain;
  opacity: .85;
  transition: transform .2s ease;
}
.card:hover::before { transform: scale(1.18) rotate(-8deg); }
.card h3 { margin-bottom: .55rem; padding-right: 2rem; }
.card p { color: var(--ink-soft); font-size: 1rem; }

/* =========================================================================
   Steps: how it works
   ========================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: clamp(1.1rem, 2vw, 1.6rem);
  counter-reset: step;
}
.step {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 2.4rem 1.5rem 1.6rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.step__num {
  position: absolute;
  top: -1.1rem; left: 1.5rem;
  display: grid;
  place-items: center;
  width: 2.9rem; height: 2.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--deep));
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.3rem;
  box-shadow: 0 6px 14px rgba(75, 31, 111, .28);
}
.step h3 { margin-bottom: .45rem; }
.step p { color: var(--ink-soft); font-size: 1rem; }

/* =========================================================================
   Pricing
   ========================================================================= */
.prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: stretch;
}
.price {
  background: var(--cream);
  border: 2px solid var(--lilac);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price__len {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--purple);
  margin-bottom: .3rem;
}
.price__amt {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 3.15rem);
  line-height: 1;
  color: var(--deep);
  margin-bottom: .75rem;
}
.price__per {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: .88rem;
  color: var(--ink-soft);
  margin-top: .4rem;
}
.price__note {
  color: var(--ink-soft);
  font-size: .96rem;
  line-height: 1.55;
  margin: 0;
}

/* The standing weekly spot is the one worth pointing at. */
.price--feature {
  background: linear-gradient(150deg, var(--deep), #6A2AA6 65%, var(--purple));
  border-color: var(--deep);
  color: #F3E9FB;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price--feature .price__len { color: var(--sunshine); }
.price--feature .price__amt { color: #fff; }
.price--feature .price__per,
.price--feature .price__note { color: #E4D2F4; }
.price__flag {
  position: absolute;
  top: -.85rem; left: 50%;
  transform: translateX(-50%);
  background: var(--sunshine);
  color: #513200;
  font-family: var(--display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .28rem 1rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
  margin: 0;
  box-shadow: 0 4px 12px rgba(75, 31, 111, .22);
}

.fineprint {
  margin-top: 2.1rem;
  padding: 1.15rem 1.5rem;
  background: var(--lilac);
  border-radius: var(--r-md);
  color: #4E2A73;
  font-size: .98rem;
  max-width: 46rem;
}

/* =========================================================================
   The important part
   ========================================================================= */
.important { max-width: 44rem; text-align: center; margin-inline: auto; }
.important__mark { width: clamp(74px, 11vw, 104px); height: auto; margin: 0 auto 1.4rem; opacity: .95; }
.important h2 { margin-bottom: 1.4rem; }
.important__quote {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.35;
  color: var(--sunshine);
  margin-bottom: 1.5rem;
}
.important p { color: #E6D6F5; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { display: grid; gap: .8rem; max-width: 48rem; }
.qa {
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.qa[open] { border-color: var(--lavender); box-shadow: var(--shadow-md); }
.qa summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.09rem;
  color: var(--deep);
  padding: 1.05rem 3.2rem 1.05rem 1.35rem;
  position: relative;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: '';
  position: absolute;
  right: 1.2rem; top: 50%;
  width: 1.55rem; height: 1.55rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--lilac) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%234B1F6F' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center / 15px;
  transition: transform .2s ease, background-color .2s ease;
}
.qa[open] summary::after { transform: translateY(-50%) rotate(180deg); background-color: var(--lavender); }
.qa p { padding: 0 1.35rem 1.25rem; color: var(--ink-soft); margin: 0; }

/* =========================================================================
   Booking
   ========================================================================= */
.booking {
  max-width: 40rem;
  text-align: center;
  margin-inline: auto;
  background: var(--cream);
  border: 2.5px dashed var(--lavender);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 5vw, 3.1rem) clamp(1.35rem, 4vw, 2.6rem);
}
.booking .eyebrow { background: var(--lilac); border-color: transparent; }
.booking h2 { margin-bottom: 1.1rem; }
.booking h2::after { left: 50%; right: auto; transform: translateX(-50%); width: 88%; }
.booking .lede { margin-inline: auto; }
.booking__hint {
  margin-top: 1.5rem;
  font-family: var(--display);
  font-weight: 500;
  color: var(--purple);
  font-size: 1.04rem;
}

/* =========================================================================
   Footer
   ========================================================================= */
.site-foot {
  background: linear-gradient(180deg, #FFFDF7, var(--lilac));
  padding-block: clamp(2.6rem, 6vw, 4rem) 2rem;
  text-align: center;
}
.site-foot__logo { width: clamp(150px, 22vw, 210px); height: auto; margin: 0 auto 1.1rem; }
.site-foot__tag {
  font-family: var(--display);
  font-weight: 500;
  color: var(--deep);
  font-size: 1.12rem;
  margin-bottom: .3rem;
}
.site-foot__area {
  font-family: var(--display);
  font-weight: 500;
  color: var(--purple);
  font-size: 1rem;
  margin-bottom: .55rem;
}
.site-foot__pledge { color: #5C3880; font-size: .98rem; margin-bottom: 1.5rem; }
.site-foot__legal { color: #7A5A96; font-size: .86rem; margin: 0; }

/* =========================================================================
   Motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
}
