/* ============================================================
   CRUSH THE PAIN — design system
   Palette: plum #4B366E / mulberry #8E5F84 / periwinkle #8DA7C2
            cream #FBF9F4 / lavender mist #F4F1F8 / sky mist #CED8E2
   Type: Comfortaa (display) + Nunito Sans (body)
   ============================================================ */

:root {
  --plum: #4B366E;
  --plum-deep: #37264F;
  --plum-night: #2A1D3E;
  --mulberry: #8E5F84;
  --bloom: #905EA5;
  --periwinkle: #8DA7C2;
  --lavender: #F4F1F8;
  --cream: #FBF9F4;
  --coral: #CED8E2;
  --coral-deep: #8DA7C2;
  --ink: #2A2138;
  --ink-soft: #5C5470;
  --white: #FFFFFF;

  --font-display: 'Comfortaa', 'Trebuchet MS', sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', sans-serif;

  --radius-card: 24px;
  --radius-pill: 100px;

  --shadow-card: 0 2px 4px rgba(75, 54, 110, 0.06), 0 12px 32px rgba(75, 54, 110, 0.10);
  --shadow-float: 0 4px 8px rgba(75, 54, 110, 0.08), 0 24px 64px rgba(75, 54, 110, 0.16);
  --shadow-cta: 0 4px 14px rgba(206, 216, 226, 0.35), 0 2px 4px rgba(206, 216, 226, 0.25);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 104px;
  --space-7: 160px;

  --measure: 62ch;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  color: var(--plum);
  margin: 0 0 var(--space-3);
}
h1 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 var(--space-2); max-width: var(--measure); }

a { color: var(--mulberry); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--plum); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mulberry);
  display: block;
  margin-bottom: var(--space-2);
}

.container { width: min(1160px, 92vw); margin-inline: auto; }
.container--narrow { width: min(780px, 92vw); margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 17px 34px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.22, 1.2, 0.36, 1), box-shadow 0.35s ease;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible { outline: 3px solid var(--coral-deep); outline-offset: 3px; }

.btn--primary { background: var(--coral); color: var(--ink); box-shadow: var(--shadow-cta); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(206, 216, 226, 0.45); color: var(--ink); }

.btn--ghost { background: transparent; color: var(--plum); box-shadow: inset 0 0 0 2px rgba(75, 54, 110, 0.35); }
.btn--ghost:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 2px var(--plum), 0 8px 20px rgba(75, 54, 110, 0.15); }

.on-dark .btn--ghost { color: #fff; box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45); }
.on-dark .btn--ghost:hover { box-shadow: inset 0 0 0 2px #fff, 0 8px 20px rgba(0, 0, 0, 0.3); color: #fff; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(251, 249, 244, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(75, 54, 110, 0.08);
  transition: transform 0.4s ease;
}
.nav__inner {
  width: min(1240px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); list-style: none; margin: 0; padding: 0; }
.nav__links a:not(.btn) {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 6px 2px;
}
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: var(--coral);
  transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__links a:not(.btn):hover::after,
.nav__links a[aria-current="page"]::after { right: 0; }
.nav__links a:not(.btn):focus-visible { outline: 2px solid var(--coral-deep); outline-offset: 3px; border-radius: 4px; }
.nav__links .btn { padding: 11px 24px; font-size: 0.9rem; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--plum);
}
@media (max-width: 880px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream);
    padding: var(--space-3);
    gap: var(--space-2);
    border-bottom: 1px solid rgba(75, 54, 110, 0.1);
    box-shadow: var(--shadow-float);
    transform: translateY(-130%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a:not(.btn) { padding: 10px 4px; font-size: 1.05rem; }
}

/* ---------- sections ---------- */
.section { padding-block: clamp(72px, 10vw, 140px); position: relative; }
.section--lavender { background: var(--lavender); }
.section--dark {
  background:
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(142, 95, 132, 0.35), transparent 60%),
    radial-gradient(ellipse 80% 90% at 90% 100%, rgba(141, 167, 194, 0.22), transparent 55%),
    linear-gradient(160deg, var(--plum-deep), var(--plum-night) 70%);
  color: rgba(255, 255, 255, 0.88);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .card h1, .section--dark .card h2, .section--dark .card h3 { color: var(--plum); }
.section--dark .eyebrow { color: var(--periwinkle); }
.section--dark a:not(.btn) { color: var(--periwinkle); }

/* grain overlay for dark sections */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.06'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
.section--dark > * { position: relative; }

/* ---------- hero ---------- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-block: clamp(140px, 16vw, 200px) clamp(80px, 9vw, 130px);
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 880px) { .hero__grid { grid-template-columns: 1fr; } }
.hero p.lede { font-size: clamp(1.1rem, 1.8vw, 1.3rem); line-height: 1.65; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-top: var(--space-4); }

/* hero photo — pairs a real person with the breath pacer */
.hero-photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  aspect-ratio: 3 / 4;
  max-width: 420px;
  margin-inline: auto;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo .breath {
  position: absolute;
  max-width: none;
  width: 42%;
  z-index: 2;
}
.hero-photo .breath__core { mix-blend-mode: screen; }
.hero-photo .breath__petal { mix-blend-mode: screen; }

/* breathing rings — signature motif */
.breath {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
}
.breath__core {
  position: absolute;
  inset: 21%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bloom);
  box-shadow: 0 0 60px rgba(144, 94, 165, 0.45);
  transform: scale(1);
  transform-origin: center;
  transition: transform var(--breath-dur, 4s) cubic-bezier(0.45, 0, 0.55, 1);
  will-change: transform;
}
.breath__petals {
  position: absolute;
  inset: 0;
}
.breath__petal {
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform var(--breath-dur, 4s) cubic-bezier(0.45, 0, 0.55, 1);
}
.breath__petal:nth-child(1) { transform: translateY(0%); }
.breath__petal:nth-child(2) { transform: rotate(0deg) translateY(var(--spread, 0%)); }
.breath__petal:nth-child(3) { transform: rotate(60deg) translateY(var(--spread, 0%)); }
.breath__petal:nth-child(4) { transform: rotate(120deg) translateY(var(--spread, 0%)); }
.breath__petal:nth-child(5) { transform: rotate(180deg) translateY(var(--spread, 0%)); }
.breath__petal:nth-child(6) { transform: rotate(240deg) translateY(var(--spread, 0%)); }
.breath__petal:nth-child(7) { transform: rotate(300deg) translateY(var(--spread, 0%)); }
.breath__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-display);
  text-align: center;
  pointer-events: none;
}
.breath__phase {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2A1D3E;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}
.breath__timer {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(42, 29, 62, 0.75);
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

/* ---------- cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-4) var(--space-3);
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.card p { font-size: 0.98rem; margin-bottom: 0; }

/* CRUSH letter cards */
.crush-card { text-decoration: none; display: block; color: var(--ink); }
.crush-card .crush-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--coral-deep);
  display: block;
  margin-bottom: var(--space-2);
}
.crush-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--mulberry));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.crush-card:hover::after, .crush-card:focus-visible::after { transform: scaleX(1); }
.crush-card:focus-visible { outline: 3px solid var(--coral-deep); outline-offset: 3px; }
.crush-card .crush-more {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--mulberry);
  display: inline-block;
  margin-top: var(--space-2);
}

/* ---------- guide (about Ann) block ---------- */
.guide {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 780px) { .guide { grid-template-columns: 1fr; } }
.guide__photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}
.guide__photo img { width: 100%; object-fit: cover; aspect-ratio: 4/5; }
.guide__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(75, 54, 110, 0.45), transparent 55%);
  mix-blend-mode: multiply;
}

.cred-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-3);
  padding: 0;
  list-style: none;
}
.cred-strip li {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: rgba(75, 54, 110, 0.08);
  color: var(--plum);
}
.on-dark .cred-strip li { background: rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.9); }

/* ---------- lead magnets ---------- */
.magnet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.magnet {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-4) var(--space-3);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.magnet:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.magnet__icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--lavender), #E9E2F3);
  color: var(--plum);
}
.magnet h3 { margin-bottom: 0; }
.magnet p { font-size: 0.95rem; flex: 1; }
.magnet .btn { align-self: flex-start; padding: 12px 24px; font-size: 0.9rem; }

/* ---------- app CTA band ---------- */
.store-badges { display: flex; flex-wrap: wrap; gap: var(--space-2); align-items: center; }
.store-badges img { height: 52px; width: auto; border-radius: 10px; }
.store-badges a { display: inline-block; transition: transform 0.3s cubic-bezier(0.22, 1.2, 0.36, 1); }
.store-badges a:hover { transform: translateY(-3px); }
.store-badges a:focus-visible { outline: 3px solid var(--coral-deep); outline-offset: 3px; border-radius: 10px; }

/* ---------- pillar pages ---------- */
.pillar-hero {
  padding-block: clamp(150px, 18vw, 220px) clamp(64px, 8vw, 110px);
  text-align: center;
}
.pillar-hero .crush-letter-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(4.5rem, 10vw, 7.5rem);
  line-height: 1;
  display: block;
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, var(--coral-deep), var(--mulberry));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillar-hero p.lede { margin-inline: auto; font-size: clamp(1.1rem, 1.8vw, 1.28rem); }

.quote-block {
  border-left: 5px solid var(--coral);
  background: var(--white);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: var(--space-3) var(--space-4);
  box-shadow: var(--shadow-card);
  margin-block: var(--space-4);
  font-size: 1.12rem;
}
.quote-block cite { display: block; margin-top: var(--space-1); font-style: normal; font-size: 0.9rem; color: var(--ink-soft); }

.next-pillar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* ---------- footer ---------- */
.footer {
  background: var(--plum-night);
  color: rgba(255, 255, 255, 0.75);
  padding-block: var(--space-5) var(--space-4);
  font-size: 0.95rem;
}
.footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-4);
}
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: var(--space-2); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer__legal {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- forms ---------- */
.field { display: grid; gap: 6px; margin-bottom: var(--space-3); }
.field label { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--plum); }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border-radius: 14px;
  border: 2px solid rgba(75, 54, 110, 0.18);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(206, 216, 226, 0.15);
}

/* ---------- reveal (GSAP hooks; graceful without JS) ---------- */
.reveal { opacity: 0; transform: translateY(36px); }
.no-js .reveal, .gsap-off .reveal { opacity: 1; transform: none; }

/* ---------- utility ---------- */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mx-auto { margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--plum);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* ---------- testimonials / social proof ---------- */
.stars {
  color: var(--coral-deep);
  font-size: 1.05rem;
  letter-spacing: 3px;
  display: inline-block;
  margin-bottom: 10px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: var(--space-3);
  margin-top: var(--space-5);
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-4) var(--space-3);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.testimonial blockquote {
  margin: 0 0 var(--space-2);
  font-size: 1rem;
  flex: 1;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink-soft);
}
.on-dark .testimonial { background: rgba(255, 255, 255, 0.07); }
.on-dark .testimonial cite { color: rgba(255, 255, 255, 0.6); }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 780px; margin: var(--space-5) auto 0; display: grid; gap: var(--space-2); }
.faq {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  padding: 22px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--plum);
  transition: background 0.25s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--lavender); }
.faq summary:focus-visible { outline: 3px solid var(--coral-deep); outline-offset: -3px; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  line-height: 1;
  color: var(--coral-deep);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq .faq__body { padding: 0 26px 22px; }
.faq .faq__body p { font-size: 0.98rem; margin-bottom: 0; }

/* ============ HubSpot lead-magnet modal ============ */
.magnet-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(42, 29, 62, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2);
}
.magnet-modal-overlay[hidden] { display: none; }
body.modal-open { overflow: hidden; }

.magnet-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-float);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-4);
}
.magnet-modal__close {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--lavender);
  color: var(--plum);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.magnet-modal__close:hover { background: var(--coral); transform: scale(1.05); }
.magnet-modal__close:focus-visible { outline: 2px solid var(--plum); outline-offset: 2px; }

.magnet-modal__title {
  font-family: var(--font-display);
  color: var(--plum);
  margin: 0 0 var(--space-1);
  padding-right: var(--space-4);
}
.magnet-modal__intro { color: var(--ink-soft); margin-bottom: var(--space-3); }

/* HubSpot embedded-form class names (hs-*) are fixed by HubSpot's embed script, not ours to rename */
.crush-hubspot-form ul { list-style: none; padding: 0; margin: 0 0 var(--space-2); }
.crush-hubspot-form .hs-form-field { margin-bottom: var(--space-2); }
.crush-hubspot-form label { font-family: var(--font-body); color: var(--ink); font-weight: 600; display: block; margin-bottom: 6px; }
.crush-hubspot-form input,
.crush-hubspot-form textarea,
.crush-hubspot-form select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--lavender);
  background: var(--cream);
  color: var(--ink);
}
.crush-hubspot-form input:focus,
.crush-hubspot-form textarea:focus,
.crush-hubspot-form select:focus { outline: 2px solid var(--periwinkle); outline-offset: 1px; }
.crush-hubspot-form .hs-button {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--coral);
  color: var(--ink);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: transform 0.2s ease;
}
.crush-hubspot-form .hs-button:hover { transform: translateY(-1px); }
.crush-hubspot-form .hs-error-msgs { color: #B3261E; font-size: 0.85rem; list-style: none; padding: 0; margin: 4px 0 0; }
.crush-hubspot-form .submitted-message { color: var(--plum); font-family: var(--font-display); }
