/* ============================================================
   The Mindful Being — Pure CSS3
   Palette tuned to brand logo (pastel watercolor: teal • pink • coral • lavender • gold)
   ============================================================ */

:root {
  /* Base — warm ivory / navy ink */
  --bg: #FDFBF7;
  --bg-soft: #F7F1EB;
  --fg: #2C3350;
  --ink-900: #1E2645;
  --ink-800: #2C3350;
  --ink-700: #3D466A;
  --ink-500: #6E7590;
  --ink-400: #9AA0B4;

  /* Brand pastels — pulled from the logo watercolor */
  --teal-100: #E6F3F1;
  --teal-200: #C6E5E1;
  --teal-300: #9BD3CD;
  --teal-400: #6EBCB4;
  --teal-500: #4CA7A0;
  --teal-600: #388A83;

  --coral-100: #FBEAE4;
  --coral-200: #F6D0C4;
  --coral-300: #F1B5A2;
  --coral-400: #EC9585;
  --coral-500: #DC7562;

  --pink-100: #FBECF1;
  --pink-200: #F8D6E1;
  --pink-300: #F5B8CC;
  --pink-400: #EE95B4;

  --lavender-100: #EFE9F6;
  --lavender-200: #DECFEC;
  --lavender-300: #C7B3E0;
  --lavender-400: #A98FD1;

  --gold-100: #FBEFD1;
  --gold-200: #F5DDA5;
  --gold-300: #F0C97E;

  --muted: #F3EEE7;
  --secondary: #EBE3D8;
  --border: #E9E1D5;

  --radius: 1rem;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --script: 'Dancing Script', 'Cormorant Garamond', cursive;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;

  --easing: cubic-bezier(0.22, 1, 0.36, 1);

  /* Watercolor gradient used sparingly on accent words */
  --wc-gradient: linear-gradient(
    92deg,
    #4CA7A0 0%,
    #86B77E 30%,
    #F0C97E 55%,
    #EC9585 78%,
    #EE95B4 100%
  );
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.005em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: rgba(76, 167, 160, 0.28); color: var(--ink-900); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--muted); }
::-webkit-scrollbar-thumb { background: var(--teal-300); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-500); }

/* ============ LAYOUT ============ */
.container { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 48px; } }
.text-center { text-align: center; }

/* Subtle warm wash on page — brand feel without the noise */
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(55% 40% at 8% 14%, rgba(155, 211, 205, 0.16), transparent 70%),
    radial-gradient(45% 35% at 94% 88%, rgba(241, 181, 162, 0.14), transparent 70%);
}
body > * { position: relative; z-index: 1; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 60;
  opacity: 0.032; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ TYPOGRAPHY ============ */
.serif  { font-family: var(--serif); }
.script { font-family: var(--script); font-weight: 500; }

.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  font-size: clamp(34px, 4.8vw, 52px);
  margin: 0;
}
.display-hero { font-size: clamp(42px, 6.4vw, 74px); }
.display-xl   { font-size: clamp(40px, 7.5vw, 84px); }

/* Accent words rendered in flowing script + watercolor gradient */
.script-accent {
  font-family: var(--script);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0;
  background: var(--wc-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding: 0 0.05em;
}
.ital-teal   { font-style: italic; color: var(--teal-600); font-weight: 400; }
.ital-coral  { font-style: italic; color: var(--coral-500); font-weight: 400; }
.ital-pink   { font-style: italic; color: var(--pink-400); font-weight: 400; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-500);
}
.eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.eyebrow-rule { width: 32px; height: 1px; background: var(--ink-500); }

.lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 560px;
  margin: 24px 0 0;
}
.lead.center { margin-left: auto; margin-right: auto; max-width: 640px; }
.lead-side { font-size: 17px; line-height: 1.65; color: var(--ink-700); max-width: 520px; margin: 0; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 300ms var(--easing), background-color 300ms ease, box-shadow 300ms ease, border-color 300ms ease, color 300ms ease;
  will-change: transform;
  border: 1px solid transparent;
}
.btn-primary { background: var(--ink-900); color: var(--bg); }
.btn-primary:hover { background: var(--teal-600); transform: translateY(-1px); box-shadow: 0 12px 30px -12px rgba(56, 138, 131, 0.45); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost { background: transparent; color: var(--ink-800); border-color: #DBD3C4; padding: 14px 22px; }
.btn-ghost:hover { background: var(--bg-soft); border-color: var(--teal-400); color: var(--teal-600); }

.arrow { transition: transform 350ms var(--easing); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============ NAV ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color 400ms ease, backdrop-filter 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(253, 251, 247, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px -20px rgba(30, 38, 69, 0.15);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 82px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo {
  width: 60px; height: 60px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 16px rgba(30,38,69,0.20)) saturate(1.2) contrast(1.08);
  transition: transform 400ms var(--easing);
}
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.04); }
@media (max-width: 640px) { .brand-logo { width: 52px; height: 52px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--script);
  font-size: 22px;
  font-weight: 600;
  background: var(--wc-gradient);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0;
}
.brand-tag {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links { display: none; gap: 36px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; font-size: 13.5px; color: var(--ink-700);
  padding-bottom: 4px;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--teal-500);
  transition: right 350ms var(--easing);
}
.nav-link:hover { color: var(--ink-900); }
.nav-link:hover::after { right: 0; }

.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.hide-mobile { display: none; }
@media (min-width: 768px) { .hide-mobile { display: inline-flex; } }

.menu-toggle {
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--border); background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu { background: var(--bg); border-top: 1px solid var(--border); }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 16px; padding: 24px 24px 28px; }
.m-link { font-family: var(--serif); font-size: 22px; color: var(--ink-800); }

/* ============ HERO ============ */
.hero { position: relative; overflow: hidden; padding: 168px 0 96px; }
@media (min-width: 1024px) { .hero { padding: 184px 0 128px; } }

.blob {
  position: absolute; pointer-events: none;
  border-radius: 42% 58% 60% 40% / 45% 42% 58% 55%;
  animation: blob 22s ease-in-out infinite alternate;
  filter: blur(4px);
}
.blob-1 { top: -110px; right: -100px; width: 480px; height: 480px; background: radial-gradient(circle at 30% 30%, rgba(155,211,205,0.40), rgba(155,211,205,0.10) 70%); }
.blob-2 { bottom: 40px; left: -160px; width: 360px; height: 360px; background: radial-gradient(circle at 60% 40%, rgba(241,181,162,0.35), rgba(241,181,162,0.08) 70%); animation-delay: -8s; }
@keyframes blob {
  0%   { border-radius: 42% 58% 60% 40% / 45% 42% 58% 55%; }
  50%  { border-radius: 55% 45% 42% 58% / 58% 55% 45% 42%; }
  100% { border-radius: 40% 60% 55% 45% / 42% 58% 45% 55%; }
}

.hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 7fr 5fr; gap: 64px; }
}

/* Big brand logo mark used in hero */
.hero-brand-mark {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero-brand-mark img { width: 72px; height: 72px; object-fit: contain; }
.hero-brand-mark .tag-line {
  font-family: var(--script);
  font-size: 22px;
  background: var(--wc-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.stats {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; gap: 32px 40px; align-items: center;
}
.stat-num { font-family: var(--serif); font-size: 36px; color: var(--ink-900); line-height: 1; }
.stat-num sup { font-size: 22px; vertical-align: top; }
.stat-num.ital { font-style: italic; }
.stat .eyebrow { margin-top: 6px; display: block; }
.stat-sep { width: 1px; height: 40px; background: var(--border); display: none; }
@media (min-width: 640px) { .stat-sep { display: inline-block; } }

.hero-portrait-wrap { position: relative; }
.portrait-shape {
  position: absolute; top: -24px; right: -24px;
  width: 160px; height: 160px;
  background: radial-gradient(circle at 40% 40%, rgba(155,211,205,0.55), rgba(241,181,162,0.35) 100%);
  border-radius: 42% 58% 60% 40% / 45% 42% 58% 55%;
  animation: blob 22s ease-in-out infinite alternate;
  z-index: 0;
  filter: blur(2px);
}
.portrait {
  position: relative; z-index: 1;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 280px 40px 280px 280px;
  background: var(--secondary);
  box-shadow: 0 30px 60px -30px rgba(30,38,69,0.25);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait-card {
  position: absolute; z-index: 2;
  bottom: -24px; left: -16px;
  max-width: 280px;
  background: #fff;
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 20px 50px -24px rgba(30,38,69,0.28);
}
@media (min-width: 1024px) { .portrait-card { left: -40px; } }
.portrait-name { font-size: 24px; color: var(--ink-900); line-height: 1.15; margin-top: 2px; }
.portrait-role { font-size: 13px; color: var(--ink-500); margin-top: 4px; }

/* ============ SECTIONS ============ */
.section { padding: 72px 0; }
@media (min-width: 1024px) { .section { padding: 96px 0; } }
.section-muted { background: rgba(243, 238, 231, 0.6); }
.section-reminder { padding: 88px 0; }
@media (min-width: 1024px) { .section-reminder { padding: 120px 0; } }

.grid-2 {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 5fr 7fr; gap: 80px; }
}

.section-head {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: end; margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .section-head { grid-template-columns: 5fr 6fr; gap: 64px; }
}

.services-head { max-width: 760px; margin-bottom: 56px; }

/* Story */
.story-image-wrap { position: relative; }
.story-image { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 28px; box-shadow: 0 30px 60px -30px rgba(30,38,69,0.25); }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.pill-badge {
  position: absolute; bottom: -20px; right: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--teal-500);
  color: #fff;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  box-shadow: 0 14px 30px -12px rgba(76,167,160,0.55);
}

.paragraphs { margin: 32px 0 0; max-width: 620px; display: flex; flex-direction: column; gap: 18px; }
.paragraphs p { margin: 0; font-size: 17px; color: var(--ink-700); line-height: 1.72; }
.paragraphs .strong { color: var(--ink-900); }

.pull-quote {
  margin: 40px 0 0; padding: 0 0 0 24px;
  border-left: 2px solid var(--coral-300);
  max-width: 620px;
  position: relative;
}
.pull-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.35;
  color: var(--ink-800);
  margin: 0;
}
.pull-quote footer { margin-top: 14px; display: block; }
.paragraph-tail { margin: 40px 0 0; max-width: 620px; font-size: 17px; color: var(--ink-700); line-height: 1.72; }

/* Reminder */
.whisper {
  margin: 28px 0 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-500);
  font-size: 19px;
}

/* Concerns */
.concerns-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
@media (min-width: 768px) { .concerns-grid { grid-template-columns: repeat(4, 1fr); } }
.concern-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  transition: transform 400ms var(--easing), border-color 400ms ease, box-shadow 400ms ease;
}
.concern-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-300);
  box-shadow: 0 20px 40px -20px rgba(30,38,69,0.15);
}
.concern-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
/* rotating tint per index — restrained: only teal + coral */
.concern-card:nth-child(2n+1) .concern-icon { background: var(--teal-100);  color: var(--teal-600); }
.concern-card:nth-child(2n+2) .concern-icon { background: var(--coral-100); color: var(--coral-500); }

.concern-label { font-family: var(--serif); font-size: 22px; color: var(--ink-900); line-height: 1.2; }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.service-card {
  position: relative;
  padding: 44px 40px;
  border-radius: 28px;
  transition: transform 500ms var(--easing), box-shadow 500ms ease;
  overflow: hidden;
  box-shadow: 0 20px 50px -30px rgba(30,38,69,0.15);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -30px rgba(30,38,69,0.22); }
.service-teal { background: linear-gradient(135deg, #E6F3F1 0%, #D6EAE7 100%); }
.service-coral { background: linear-gradient(135deg, #FBEAE4 0%, #F6D6E0 100%); }
.service-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.service-icon {
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.75);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-800);
}
.service-title {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink-900);
  margin: 0;
}
.service-list {
  margin: 36px 0 0;
  display: grid; grid-template-columns: 1fr; gap: 6px;
}
@media (min-width: 640px) { .service-list { grid-template-columns: 1fr 1fr; gap: 6px 32px; } }
.service-list li {
  position: relative; padding-left: 18px;
  font-size: 14.5px; color: var(--ink-800); line-height: 1.75;
}
.service-list li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 6px; height: 1px; background: var(--ink-800);
}
.service-card .btn { margin-top: 36px; }

/* Modalities — heading + marquee below */
.modalities-section { position: relative; overflow: hidden; padding-bottom: 0; }
.modalities-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.modalities-head .eyebrow { margin-bottom: 20px; display: block; }
.modalities-head .display { margin: 0 auto; }
.modalities-lead {
  margin: 24px auto 0;
  max-width: 560px;
  color: var(--ink-700);
  font-size: 17px;
  line-height: 1.65;
}

.marquee-band {
  margin-top: 88px; padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(253,251,247,0.6);
  overflow: hidden;
}
/* Elevated hero-marquee that replaces the pills grid */
.marquee-band.marquee-hero {
  margin-top: 56px;
  padding: 48px 0;
  background:
    linear-gradient(90deg, rgba(155,211,205,0.10), rgba(241,181,162,0.10));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-band.marquee-hero .marquee-item span:first-child {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}
.marquee-band.marquee-hero .marquee-item .m-dot {
  width: 8px; height: 8px;
}
.marquee-band.marquee-hero .marquee-track { gap: 40px; }
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 45s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 24px; flex-shrink: 0;
}
.marquee-item span:first-child {
  font-family: var(--serif); font-style: italic; font-size: 36px; color: var(--ink-800);
}
.marquee-item .m-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--coral-300); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.testimonial {
  background: #fff; border: 1px solid var(--border);
  border-radius: 24px; padding: 40px 34px;
  transition: transform 500ms var(--easing), box-shadow 500ms ease;
}
.testimonial:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(30,38,69,0.22); }
.testimonial .mark {
  font-family: var(--serif); font-size: 84px; line-height: 0.5;
  color: var(--coral-300); margin-bottom: 4px;
}
.testimonial .quote {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.35; color: var(--ink-800); margin: 8px 0 0;
}
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.testimonial .avatar {
  width: 36px; height: 36px; border-radius: 999px;
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px;
}
.testimonial:nth-child(2n+1) .avatar { background: var(--teal-500); }
.testimonial:nth-child(2n+2) .avatar { background: var(--coral-400); }

/* Contact */
.contact-meta {
  margin-top: 48px; display: flex; flex-direction: column; gap: 24px;
}
.meta-line { font-family: var(--serif); font-size: 24px; color: var(--ink-900); margin-top: 6px; }
.rule { height: 1px; background: linear-gradient(to right, transparent, #d4cdbf, transparent); }

.enquiry-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 30px 80px -40px rgba(30,38,69,0.25);
}
@media (min-width: 768px) { .enquiry-form { padding: 48px; } }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
.span-2 { grid-column: 1 / -1; }
.field-label {
  display: block; margin-bottom: 8px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 500;
}
.field {
  width: 100%; background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 16px;
  font-family: var(--sans); font-size: 15px;
  color: var(--ink-800);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field::placeholder { color: var(--ink-400); }
.field:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(76,167,160,0.20);
}
textarea.field { min-height: 130px; resize: vertical; }
select.field {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236E7590' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.timing-group { display: flex; flex-wrap: wrap; gap: 10px; }
.timing-pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink-800);
  border: 1px solid var(--border);
  font-size: 13.5px;
  transition: all 300ms var(--easing);
}
.timing-pill:hover { border-color: var(--teal-400); }
.timing-pill.is-active {
  background: var(--ink-900); color: var(--bg); border-color: var(--ink-900);
}

.form-footer {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.fine-print { color: var(--ink-500); font-size: 12.5px; max-width: 380px; margin: 0; }

/* Footer — minimal one-line */
.footer { background: var(--ink-900); color: var(--bg); padding: 28px 0; position: relative; overflow: hidden; }
.footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(30% 60% at 8% 40%, rgba(76,167,160,0.14), transparent 70%),
    radial-gradient(30% 60% at 92% 60%, rgba(241,181,162,0.10), transparent 70%);
}
.footer-inner { position: relative; z-index: 1; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 6px;
  color: rgba(253,251,247,0.55); font-size: 12.5px;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; gap: 12px; text-align: left; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 900ms var(--easing), transform 900ms var(--easing);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Anti-spam honeypot — visually hidden but present in DOM for bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}

/* Toasts */
.toast-root {
  position: fixed; top: 100px; left: 50%; transform: translateX(-50%);
  z-index: 100; display: flex; flex-direction: column; gap: 12px;
  pointer-events: none;
}
.toast {
  background: #fff; color: var(--ink-800);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 20px;
  font-family: var(--sans); font-size: 14px;
  box-shadow: 0 20px 40px -20px rgba(30,38,69,0.25);
  opacity: 0; transform: translateY(-10px);
  transition: opacity 260ms var(--easing), transform 260ms var(--easing);
  pointer-events: auto;
  display: inline-flex; align-items: center; gap: 10px;
  max-width: min(90vw, 480px);
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast .toast-icon { width: 18px; height: 18px; flex-shrink: 0; }
.toast.success .toast-icon { color: var(--teal-500); }
.toast.error   .toast-icon { color: var(--coral-500); }

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