/* ============================================================
   Elixir styles.css (v7 — Potion House, original scheme)
   Milk ground, ink text. Ultramarine #2E2BC4 is the ONLY visible accent.
   Plum #7A2FB8 and berry #C6338F exist only inside the liquid gradient,
   which appears in exactly two places: the flask mark and the hero word.
   Type: Unbounded for display moments only; Hanken Grotesk
   keeps the body quiet so the potion moments hit harder.
   ============================================================ */

:root {
  --bg: #F8F7FB;            /* milk */
  --surface: #EFEEF7;       /* deeper milk, alternating sections */
  --card: #FFFFFF;
  --ink: #131020;
  --ink-soft: #6C6875;
  --ink-faint: #7E7A88;
  --ultra: #2E2BC4;
  --plum: #7A2FB8;
  --berry: #C6338F;
  --accent: #2E2BC4;        /* interactive accent = ultra */
  --dark: #131020;          /* dark sections pour into ink */
  --milk-text: #F8F7FB;
  --ultra-lift: #9D9AF5;   /* the family, lifted for dark grounds */
  --plum-lift: #C08BEF;
  --berry-lift: #EF8FD0;
  --liquid: linear-gradient(115deg, #2E2BC4, #7A2FB8 48%, #C6338F 92%);
  --liquid-lift: linear-gradient(115deg, #9D9AF5, #C08BEF 48%, #EF8FD0 92%);
  --line: rgba(19, 16, 32, 0.14);
  --line-soft: rgba(19, 16, 32, 0.08);
  --line-dark: rgba(248, 247, 251, 0.16);

  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Unbounded", var(--font);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius: 14px;
  --header-h: 72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

/* faint grain keeps the milk from feeling clinical */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--ultra-lift); color: var(--ink); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

section { scroll-margin-top: var(--header-h); }

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h2 { font-size: clamp(28px, 3.8vw, 52px); }

/* solid ultra accents in section headings; the gradient is
   saved for the hero phrase and the finished-blend moments */
h2 em {
  font-style: normal;
  color: var(--accent);
}

p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.bubble {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bubble + .bubble { margin-left: -4px; }
.b-ultra { background: var(--ultra); }

.label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* one accent, every section */

.label-idx {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 30px;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  will-change: transform;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* solid ultramarine fade; the gradient never touches a control */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ultra);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(46, 43, 196, 0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}

.btn-ghost:hover {
  box-shadow: inset 0 0 0 1.5px var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-lg { padding: 17px 36px; font-size: 16.5px; }

a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(248, 247, 251, 0.84);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--line-soft);
}

.header-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }

/* the wordmark stands alone; the drop icon lives in the favicon */
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* nav sits dead-center in the bar; brand left, CTA right */
.site-nav {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-nav a {
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.2s;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out);
}

.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.btn-header { padding: 10px 22px; font-size: 14px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: calc(var(--header-h) + clamp(40px, 7vh, 84px));
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.hero-title {
  font-size: clamp(34px, 5.8vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 15ch;
  margin: 26px auto 0;
}

/* the one liquid phrase on the page */
.hero-title em {
  font-style: normal;
  white-space: nowrap;
  background: var(--liquid);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: slosh 7s ease-in-out infinite;
}

@keyframes slosh {
  0%, 100% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
}

.hero-sub {
  max-width: 52ch;
  margin: 24px auto 0;
  font-size: clamp(16.5px, 1.9vw, 18.5px);
  line-height: 1.65;
  color: var(--ink-soft);
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-note {
  margin-top: 20px;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  color: var(--ink-faint);
}

/* ---------- Hero carousel ---------- */

.hero-carousel {
  position: relative;
  z-index: 1;
  margin-top: clamp(32px, 5vh, 60px);
  overflow: hidden;
  perspective: 1600px;
  cursor: grab;
  touch-action: pan-y;
  /* fade the side edges and the bottoms of the emails */
  -webkit-mask-image:
    linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent),
    linear-gradient(180deg, #000 0%, #000 50%, transparent 98%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent),
    linear-gradient(180deg, #000 0%, #000 50%, transparent 98%);
  mask-composite: intersect;
}

.hero-carousel.dragging { cursor: grabbing; }

/* Star Wars-style tilt: the deck leans back, tops receding */
.hc-tilt {
  transform: rotateX(16deg);
  transform-origin: 50% 100%;
}

.hc-track {
  display: flex;
  gap: clamp(20px, 2vw, 30px);
  width: max-content;
  will-change: transform;
}

.hc-card {
  flex: 0 0 auto;
  width: clamp(250px, 18vw, 360px);
  aspect-ratio: 1 / 2;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-soft);
  box-shadow: 0 1px 0 var(--line-soft), 0 22px 44px -20px rgba(19, 16, 32, 0.30);
  user-select: none;
}

.hc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
}

/* ---------- Sections (shared) ---------- */

.section { padding: clamp(92px, 11.5vw, 148px) 0 clamp(84px, 10vw, 124px); position: relative; }

.section-head { margin-bottom: clamp(46px, 6vw, 72px); }

.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.section-side-note {
  font-size: 14px;
  color: var(--ink-faint);
  text-align: right;
  line-height: 1.7;
}

.gallery-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding-bottom: 8px;
}

.gallery-nav { display: flex; gap: 10px; }

.gnav {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease-out), border-color 0.25s, background-color 0.25s, color 0.25s;
}

.gnav svg { width: 20px; height: 20px; }

.gnav:hover {
  background: var(--ink);
  color: var(--milk-text);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ---------- Offer: the formula ---------- */

.offer-lede {
  margin-top: 18px;
  font-size: clamp(16.5px, 1.9vw, 18.5px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
}

.formula-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ing-card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out), border-color 0.3s;
}

@media (hover: hover) {
  .ing-card:hover {
    transform: translateY(-5px) rotate(-1deg);
    border-color: rgba(46, 43, 196, 0.35);
    box-shadow: 0 20px 40px -22px rgba(46, 43, 196, 0.4);
  }
}

/* the pop-up is the odd ingredient out */
.ing-card.popup { border: 1.5px dashed rgba(46, 43, 196, 0.45); }

.ing-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(46, 43, 196, 0.08);
  color: var(--ultra);
}

.ing-icon svg { width: 20px; height: 20px; }

.ing-card h3 {
  font-family: var(--font);
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ing-card p { font-size: 13px; color: var(--ink-faint); line-height: 1.45; }

.formula-result { margin-top: 34px; }

.formula-result {
  background: var(--surface);
  border-radius: 22px;
  padding: clamp(26px, 3.4vw, 42px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  flex-wrap: wrap;
}

.formula-result .drop { width: clamp(44px, 4.5vw, 58px); flex-shrink: 0; }

.formula-result h3 {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  flex: 1;
  min-width: 240px;
}

/* ---------- Work / Gallery ---------- */

.work { background: var(--surface); }

.gallery-wrap { position: relative; }

.gallery-wrap::before,
.gallery-wrap::after {
  content: "";
  position: absolute;
  top: 0; bottom: 28px;
  width: 72px;
  pointer-events: none;
  z-index: 1;
}

.gallery-wrap::before {
  left: 0;
  background: linear-gradient(270deg, rgba(241, 241, 233, 0), var(--surface));
}

.gallery-wrap::after {
  right: 0;
  background: linear-gradient(90deg, rgba(241, 241, 233, 0), var(--surface));
}

/* auto-scrolling loop, same engine as the hero deck:
   JS moves .gallery-track with a transform, both directions wrap */
.gallery {
  overflow: hidden;
  padding: 8px 0 28px;
  cursor: grab;
  touch-action: pan-y;
}

.gallery.dragging { cursor: grabbing; }
.gallery.dragging .email-window { pointer-events: none; }

.gallery-track {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  width: max-content;
  padding-inline: var(--gutter);
  will-change: transform;
}

.email-card {
  flex: 0 0 auto;
  width: clamp(180px, 13.5vw, 235px);
  position: relative;
  user-select: none;
}

/* hints that the email continues; lifts while you read */
.email-card::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  height: 64px;
  border-radius: 0 0 13px 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s;
}

.email-card:hover::after { opacity: 0; }

/* Wellcopy-style: each email is its own scrollable window.
   Point at it and scroll to read the whole email. */
.email-window {
  position: relative;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line-soft);
  height: clamp(430px, 58vh, 580px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  box-shadow: 0 4px 18px -6px rgba(19, 16, 32, 0.10);
  transition: box-shadow 0.5s var(--ease-out), border-color 0.3s;
}

.email-window::-webkit-scrollbar { display: none; }

.email-card:hover .email-window,
.email-window:focus-visible {
  border-color: rgba(46, 43, 196, 0.4);
  box-shadow: 0 30px 60px -22px rgba(46, 43, 196, 0.35);
}

/* pointer-events: none keeps the browser's native image drag from
   swallowing the gallery's drag-to-scroll; wheel still scrolls the window */
.email-window img {
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* ---------- How it works — the brew ---------- */

.how {
  background: var(--dark);
  color: var(--milk-text);
}


.how .label { color: rgba(248, 247, 251, 0.55); }
.how .label-idx { color: var(--ultra-lift); }
.how h2 { color: var(--milk-text); }
.how h2 em { color: var(--ultra-lift); }

.steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}

.step {
  display: grid;
  grid-template-columns: 130px 240px 1fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 3.6vw, 44px) 0;
  border-bottom: 1px solid var(--line-dark);
  transition: background-color 0.35s;
}

@media (hover: hover) {
  .step:hover { background: rgba(248, 247, 251, 0.03); }
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1;
  color: var(--ultra-lift);
}

.step h3 {
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 600;
  color: var(--milk-text);
}

.step p {
  font-size: 15.5px;
  color: rgba(248, 247, 251, 0.66);
  line-height: 1.75;
  max-width: 560px;
}

/* ---------- Founder ---------- */

.founder-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
  max-width: 1020px;
}

.founder-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(19, 16, 32, 0.45);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(19, 16, 32, 0.08);
}

.founder-photo img { width: 100%; }

.founder-copy h2 { margin-bottom: 24px; }

.founder-copy p {
  font-size: clamp(16px, 1.8vw, 17.5px);
  line-height: 1.78;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 470px;
}

.founder-sign {
  margin-top: 28px;
  font-family: var(--font);
  font-style: italic;
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink) !important;
}

.founder-sign span {
  display: block;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* ---------- FAQ ---------- */

.faq { background: var(--surface); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.faq .section-head {
  margin-bottom: 0;
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.faq-item {
  border-top: 1px solid var(--line);
  transition: border-color 0.3s;
}

.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  font-family: var(--font);
  font-size: clamp(16.5px, 1.8vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item[open] summary { color: var(--accent); }

.faq-icon { position: relative; width: 14px; height: 14px; flex-shrink: 0; }

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out);
}

.faq-icon::before { left: 6px; top: 0; width: 2px; height: 14px; }
.faq-icon::after { left: 0; top: 6px; width: 14px; height: 2px; }
.faq-item[open] .faq-icon::before { transform: rotate(90deg); }

.faq-body { overflow: hidden; }
.faq-body-inner { padding: 2px 4px 24px; }
.faq-body p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; max-width: 560px; }

/* ---------- Booking ---------- */

.booking {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: var(--milk-text);
}



.booking h2 em { color: var(--ultra-lift); }

.booking .label { color: rgba(248, 247, 251, 0.55); }
.booking .label-idx { color: var(--ultra-lift); }

.booking-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}

.booking-copy {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.booking-copy .label { justify-content: center; }

.booking-lede {
  margin: 24px 0 28px;
  font-size: 17px;
  color: rgba(248, 247, 251, 0.72);
}

.booking-steps {
  list-style: none;
  counter-reset: bstep;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
  margin-top: 10px;
}

.booking-steps li {
  counter-increment: bstep;
  position: relative;
  padding-left: 52px;
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(248, 247, 251, 0.68);
}

.booking-steps li strong { color: var(--milk-text); font-weight: 600; }

.booking-steps li::before {
  content: counter(bstep, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ultra-lift);
}

.booking-embed-card {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(248, 247, 251, 0.10), 0 40px 90px -30px rgba(0, 0, 0, 0.55);
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  min-height: 0;
}

#booking-embed {
  border-radius: 14px;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}

/* the Cal.com iframe sizes itself; never trap scroll inside the card */
#booking-embed iframe { width: 100%; border: 0; display: block; }
#cal-inline { overflow: visible !important; height: auto !important; }

.booking-placeholder {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 40px;
  background: radial-gradient(circle at 50% 0%, rgba(46, 43, 196, 0.06), transparent 60%), #fff;
  border-radius: 14px;
}

.booking-placeholder svg { width: 44px; height: 44px; color: var(--ultra); opacity: 0.7; }
.booking-placeholder p { font-weight: 600; font-size: 17px; }

.booking-placeholder-sub {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: var(--ink-soft);
  max-width: 300px;
}

/* mobile-only booking CTA; JS unhides it and hides the inline card */
.booking-compact {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 40px 28px;
  box-shadow: 0 0 0 1px rgba(248, 247, 251, 0.10), 0 40px 90px -30px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.booking-compact[hidden] { display: none; }
.booking-compact svg { width: 40px; height: 40px; color: var(--ultra); opacity: 0.75; }
.booking-compact-title { font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.booking-compact-sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 8px; }
.booking-compact .btn { width: 100%; max-width: 320px; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--dark);
  color: var(--milk-text);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(248, 247, 251, 0.10);
}

/* the footer is a destination: one last big ask */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(40px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

.footer-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 44px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
}

.footer-headline em { font-style: normal; color: var(--ultra-lift); }

.btn-light {
  background: var(--milk-text);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s, transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.btn-light::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--ultra);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-light:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(46, 43, 196, 0.55); }
.btn-light:hover::before { opacity: 1; }

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-dark);
  padding-top: 26px;
  padding-bottom: 34px;
  position: relative;
  z-index: 1;
}

.footer-meta .wordmark { color: var(--milk-text); font-size: 17px; }

.footer-nav { display: flex; gap: 24px; }

.footer-nav a {
  font-size: 14px;
  text-decoration: none;
  color: rgba(248, 247, 251, 0.62);
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--milk-text); }

.footer-copy {
  font-size: 13px;
  color: rgba(248, 247, 251, 0.38);
}

/* ---------- Mouse interactivity ---------- */

/* JS drives these transforms; keep them cheap and springy */
[data-magnetic] { will-change: transform; }

[data-tilt] { will-change: transform; }

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .formula-grid { grid-template-columns: repeat(2, 1fr); }
  .step { grid-template-columns: 74px 1fr; }
  .step p { grid-column: 2; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq .section-head { position: static; margin-bottom: 40px; }
  .booking-steps { grid-template-columns: 1fr; gap: 18px; }
  .founder-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .founder-photo { max-width: 380px; margin-inline: auto; }
  .footer-cta { justify-content: center; text-align: center; }
  .footer-meta { justify-content: center; text-align: center; }
}

/* centered nav needs room; below this it would crowd the brand and CTA */
@media (max-width: 880px) {
  .site-nav { display: none; }
}

@media (max-width: 680px) {
  .hero-title { font-size: clamp(29px, 8.4vw, 42px); }
  .step { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .step p { grid-column: auto; }
  .formula-result { flex-direction: column; align-items: flex-start; }
  .section-side-note { display: none; }
  .email-card { width: min(58vw, 230px); }
  .email-window { height: min(56vh, 500px); }
  .hero-cta .btn { width: 100%; max-width: 340px; }
  .hc-card { width: min(56vw, 230px); border-radius: 12px; }
  .hc-track { gap: 14px; }
  .footer-nav { gap: 16px; flex-wrap: wrap; justify-content: center; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery { scroll-behavior: auto; }
  .hero-title em { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
