/* ==========================================================================
   Daisy — dawn palette, editorial type, one soft mascot.
   ========================================================================== */

:root {
  /* Dawn palette */
  --cream:        #FBF7F0;
  --cream-deep:   #F4EADC;
  --paper:        #FFFDF9;
  --ink:          #1C1613;
  --ink-body:     #463C36;
  --muted:        #574E48;   /* AA on cream at small sizes */
  --muted-soft:   #8D8179;   /* dots + rules only, never text */
  --amber:        #E09A3C;
  --amber-deep:   #A8600F;
  --line:         rgba(28, 22, 19, 0.11);
  --line-strong:  rgba(28, 22, 19, 0.20);

  /* Source colours — the one place other hues appear. Muted so they read as a system. */
  --src-mail:      #C77E28;
  --src-messages:  #45815F;
  --src-cycle:     #B75F73;
  --src-calendar:  #43699C;
  --src-reminders: #6F5F9C;

  /* Darker twins of the source colours. The bright ones tint borders and
     fills; anything that is TEXT uses these so it clears AA. */
  --srci-mail:      #855009;
  --srci-messages:  #2C5B41;
  --srci-cycle:     #8B3C50;
  --srci-calendar:  #2C4B75;
  --srci-reminders: #4D3D75;

  /* Type */
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", ui-serif, Georgia, "Times New Roman", serif;

  /* Rhythm */
  --gutter: 20px;
  --maxw: 1140px;
  --section-y: clamp(80px, 12vw, 160px);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-body);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--amber-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Type primitives
   -------------------------------------------------------------------------- */

h1, h2, h3 {
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

em, .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Small-caps label that sits above a section headline */
.eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 18px;
}

/* The faded dot-separated tag line */
.tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.tags li + li::before {
  content: "·";
  color: var(--muted-soft);
  margin-right: 10px;
}

.lede {
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
  line-height: 1.55;
  color: var(--ink-body);
  max-width: 34ch;
  margin: 20px 0 0;
  text-wrap: pretty;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), opacity 0.18s;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: #2E2521; }

.btn--amber { background: var(--amber); color: #2A1B06; }
.btn--amber:hover { background: #EDA84C; }

.btn--quiet {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  padding: 12px 22px;
}
.btn--quiet:hover { background: rgba(28, 22, 19, 0.04); }

.btn--sm { padding: 10px 18px; font-size: 0.68rem; }

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--line); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 70px;
}

.wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav__right { display: flex; align-items: center; gap: 22px; }

.nav__link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--ink); }

/* --------------------------------------------------------------------------
   The daisy
   -------------------------------------------------------------------------- */

.daisy { width: 100%; height: auto; overflow: visible; }

.daisy .petal {
  fill: var(--paper);
  stroke: rgba(28, 22, 19, 0.17);
  stroke-width: 1.6;
}
.daisy .disc { fill: var(--amber); }
.daisy .eye  { fill: #2A1B06; }
.daisy .smile {
  fill: none;
  stroke: #2A1B06;
  stroke-width: 5;
  stroke-linecap: round;
}
.daisy .blush { fill: #E8776F; opacity: 0.32; }

.daisy .petals { animation: breathe 7s ease-in-out infinite; transform-origin: 100px 100px; }
.daisy .eyes   { animation: blink 6.5s infinite; transform-origin: 100px 96px; }

@keyframes breathe {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.035) rotate(2.5deg); }
}
@keyframes blink {
  0%, 92%, 100% { transform: scaleY(1); }
  95%           { transform: scaleY(0.12); }
}

.daisy-wrap { position: relative; }

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

.hero {
  position: relative;
  text-align: center;
  padding-top: clamp(48px, 7vw, 86px);
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
}

/* Sunrise wash — hero only, so it stays an accent */
.hero::before {
  content: "";
  position: absolute;
  inset: -160px 50% auto 50%;
  width: min(1500px, 190vw);
  height: 940px;
  transform: translateX(-50%);
  background:
    radial-gradient(52% 58% at 50% 62%, rgba(224, 154, 60, 0.20) 0%, rgba(224, 154, 60, 0) 68%),
    radial-gradient(70% 48% at 50% 88%, rgba(232, 178, 132, 0.22) 0%, rgba(232, 178, 132, 0) 72%),
    linear-gradient(180deg, rgba(251, 247, 240, 0) 42%, var(--cream) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: color-mix(in srgb, var(--paper) 70%, transparent);
}
.pill-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.hero__line {
  font-size: clamp(2.3rem, 6.4vw, 4.9rem);
  margin: 26px auto 0;
  max-width: 24ch;
}
.hero__line em { display: inline; }

/* Deliberate breaks so the long line never orphans a word */
.hero__line .brk { display: block; }

.hero__daisy {
  width: clamp(124px, 19vw, 178px);
  margin: clamp(30px, 4.5vw, 46px) auto 0;
}

/* Speech bubble */
.bubble {
  position: relative;
  display: inline-block;
  min-height: 52px;
  margin: 20px auto 0;
  padding: 14px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(28, 22, 19, 0.07);
  font-size: 1rem;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.bubble.is-in { opacity: 1; transform: none; }
.bubble::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 13px;
  height: 13px;
  margin-left: -6.5px;
  background: var(--paper);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
  border-radius: 3px 0 0 0;
}

.dots { display: inline-flex; gap: 5px; align-items: center; height: 22px; }
.dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--muted-soft);
  animation: dotpulse 1.25s infinite ease-in-out;
}
.dots span:nth-child(2) { animation-delay: 0.17s; }
.dots span:nth-child(3) { animation-delay: 0.34s; }
@keyframes dotpulse {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* Hero email capture */
.hero__form {
  display: flex;
  gap: 9px;
  justify-content: center;
  flex-wrap: wrap;
  margin: clamp(30px, 4vw, 44px) auto 0;
  max-width: 460px;
}
.hero__form input {
  flex: 1 1 240px;
  min-width: 0;
  padding: 15px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 0.96rem;
  color: var(--ink);
}
.hero__form input::placeholder { color: var(--muted); }

.hero__note {
  margin: 14px 0 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Micro-stat row */
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin: clamp(56px, 8vw, 92px) auto 0;
  max-width: 830px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.stats dt {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.stats dd {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.02rem, 2.1vw, 1.42rem);
  color: var(--ink);
  line-height: 1.25;
}

/* --------------------------------------------------------------------------
   Content sections — copy one side, visual the other
   -------------------------------------------------------------------------- */

.section { padding-block: var(--section-y); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.split--flip > .split__copy { order: 2; }

.split__copy h2 { font-size: clamp(1.95rem, 3.9vw, 3.05rem); max-width: 15ch; }

.ground {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  max-width: 30ch;
  margin: 0 0 22px;
}

/* --------------------------------------------------------------------------
   Section 2 — the constellation
   -------------------------------------------------------------------------- */

.constellation {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 480px;
}

.constellation__core { position: relative; text-align: center; z-index: 2; }
.constellation__core .daisy { width: 104px; margin-inline: auto; }
.constellation__name {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
}

.noti {
  --accent: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 11px;
  width: min(268px, 78vw);
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(28, 22, 19, 0.08);
  text-align: left;
  opacity: 0;
  transform: translateY(14px) scale(0.96);
}
.is-revealed .noti { animation: notiIn 0.66s var(--ease) forwards; }
.is-revealed .noti { animation-delay: calc(var(--i) * 130ms); }

@keyframes notiIn {
  to { opacity: 1; transform: none; }
}

.noti__icon {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent) 16%, var(--paper));
  color: var(--accent);
}
.noti__icon svg { width: 15px; height: 15px; }

.noti__app {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-ink, var(--accent));
}
.noti__text {
  display: block;
  margin-top: 3px;
  font-size: 0.86rem;
  line-height: 1.38;
  color: var(--ink);
}

/* Desktop scatter — cards hug the edges so the core always stays clear */
@media (min-width: 900px) {
  .constellation { min-height: 560px; }
  .constellation__items { position: absolute; inset: 0; }

  .noti { position: absolute; width: 212px; }
  .noti[data-pos="0"] { top: 0;    left: 0; }
  .noti[data-pos="1"] { top: 17%;  right: 0; }
  .noti[data-pos="2"] { top: 47%;  left: 0; }
  .noti[data-pos="3"] { top: 63%;  right: 0; }
  .noti[data-pos="4"] { bottom: 0; left: 2%; }

  .is-revealed .noti.is-settled {
    opacity: 1;
    animation: float 8s ease-in-out infinite;
    animation-delay: calc(var(--i) * -1.4s);
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-7px); }
  }
}

/* Mobile cluster — a designed stagger, not a restack */
@media (max-width: 899px) {
  .constellation { min-height: 0; gap: 12px; }
  .constellation__items {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
    margin-top: 26px;
  }
  .noti:nth-child(even) { align-self: flex-end; }
  .noti:nth-child(odd)  { align-self: flex-start; }
  .noti { width: min(300px, 88%); }
}

/* --------------------------------------------------------------------------
   Section 3 — the day view
   -------------------------------------------------------------------------- */

.dayview {
  position: relative;
  margin-bottom: 62px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px 20px 20px;
  box-shadow: 0 26px 60px rgba(28, 22, 19, 0.09);
}

.dayview__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.dayview__title { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--ink); }
.dayview__sample {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}

.dayview__list { list-style: none; margin: 0; padding: 14px 0 0; }

.block {
  --accent: var(--muted);
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 14px 12px 12px;
  margin-bottom: 8px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  opacity: 0.74;
  transition: opacity 0.5s var(--ease), background-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.dayview.is-confirmed .block {
  opacity: 1;
  background: color-mix(in srgb, var(--accent) 13%, var(--paper));
  transition-delay: calc(var(--i) * 85ms);
}

.block__time {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--accent-ink, var(--accent));
  padding-top: 2px;
  white-space: nowrap;
}
.block__title { font-size: 0.94rem; font-weight: 600; color: var(--ink); line-height: 1.35; }
.block__detail {
  display: block;
  margin-top: 3px;
  font-size: 0.78rem;
  color: var(--ink-body);
  line-height: 1.4;
}
.block__from {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent-ink, var(--accent));
}

.block--allday { grid-template-columns: 1fr; }
.block--allday .block__time { margin-bottom: 2px; }

.dayview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.dayview__status {
  font-size: 0.78rem;
  color: var(--muted);
  min-height: 1.2em;
}
.dayview.is-confirmed .dayview__status { color: var(--src-messages); font-weight: 600; }

/* The daisy in the corner, asking */
.dayview__ask {
  position: absolute;
  right: -6px;
  bottom: -58px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  z-index: 3;
}
.dayview__ask .daisy { width: 62px; flex: none; }
.dayview__ask .bubble {
  opacity: 1;
  transform: none;
  font-size: 0.8rem;
  padding: 10px 14px;
  min-height: 0;
  max-width: 190px;
  text-align: left;
  order: -1;
}
.dayview__ask .bubble::after {
  top: auto;
  bottom: 14px;
  left: auto;
  right: -7px;
  margin: 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 0 3px 0 0;
}
.dayview.is-confirmed .dayview__ask .bubble { display: none; }

@media (max-width: 720px) {
  .dayview__ask { position: static; margin-top: 18px; justify-content: flex-end; }
  .dayview__ask .bubble::after { display: none; }
}

/* --------------------------------------------------------------------------
   Section 4 — the message thread
   -------------------------------------------------------------------------- */

.phone {
  width: min(360px, 100%);
  margin-inline: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 16px 14px 18px;
  box-shadow: 0 26px 60px rgba(28, 22, 19, 0.09);
}

.phone__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px 14px;
  border-bottom: 1px solid var(--line);
}
.phone__head .daisy { width: 34px; flex: none; }
.phone__who { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.phone__sub { font-size: 0.68rem; color: var(--muted); }

.thread {
  list-style: none;
  margin: 0;
  padding: 16px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  /* fixed height so nothing shifts under the reader's thumb */
  min-height: 292px;
  justify-content: flex-end;
}

.msg {
  max-width: 82%;
  padding: 11px 15px;
  border-radius: 19px;
  font-size: 0.89rem;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(9px) scale(0.97);
  animation: msgIn 0.34s var(--ease) forwards;
}
@keyframes msgIn { to { opacity: 1; transform: none; } }

.msg--daisy {
  align-self: flex-start;
  background: #2F7DF6;
  color: #fff;
  border-bottom-left-radius: 6px;
}
.msg--user {
  align-self: flex-end;
  background: #EAE5DD;
  color: var(--ink);
  border-bottom-right-radius: 6px;
}
.msg--typing { padding: 12px 16px; }
.msg--daisy.msg--typing .dots span { background: rgba(255, 255, 255, 0.8); }

.phone__replay {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: 0;
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}
.phone__replay:hover { color: var(--ink); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Section 5 — the reads
   -------------------------------------------------------------------------- */

.reads { display: flex; flex-direction: column; gap: 12px; }

.read-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 10px 26px rgba(28, 22, 19, 0.05);
  transition: transform 0.25s var(--ease);
}
.read-card:nth-child(2) { margin-left: clamp(0px, 4vw, 40px); }
.read-card:nth-child(3) { margin-left: clamp(0px, 8vw, 80px); }
.read-card:hover { transform: translateY(-3px); }

.read-card__kicker {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--srci-cycle);
}
.read-card__title {
  margin: 7px 0 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.24rem;
  color: var(--ink);
  line-height: 1.2;
}
.read-card__teaser { font-size: 0.86rem; color: var(--muted); margin: 0; line-height: 1.45; }

/* --------------------------------------------------------------------------
   Statement
   -------------------------------------------------------------------------- */

.statement {
  padding-block: clamp(96px, 15vw, 190px);
  text-align: center;
}
.statement p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.32rem, 3.9vw, 3rem);
  line-height: 1.24;
  color: var(--ink);
  margin: 0 auto;
  max-width: 21em;
  letter-spacing: -0.02em;
}
.statement strong { font-weight: 400; color: var(--amber-deep); }

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

.faq { max-width: 760px; margin-inline: auto; }
.faq h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); text-align: center; margin-bottom: 34px; }

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

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 4px;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.faq__q .mark {
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq__q .mark::before,
.faq__q .mark::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--muted);
  transition: transform 0.28s var(--ease);
}
.faq__q .mark::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .mark::after { transform: rotate(0deg); }

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.34s var(--ease);
}
.faq__a p {
  margin: 0;
  padding: 0 4px 22px;
  max-width: 62ch;
  color: var(--ink-body);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   Privacy
   -------------------------------------------------------------------------- */

.privacy { background: var(--cream-deep); }
.privacy h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); max-width: 16ch; }

.promises {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.promises li {
  background: var(--cream-deep);
  padding: 24px 22px;
  font-size: 0.93rem;
  color: var(--ink-body);
  line-height: 1.5;
}
.promises b {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.16rem;
  color: var(--ink);
  margin-bottom: 7px;
}

/* --------------------------------------------------------------------------
   Waitlist band
   -------------------------------------------------------------------------- */

.band { text-align: center; padding-block: clamp(80px, 12vw, 150px); }
.band .daisy { width: clamp(88px, 13vw, 116px); margin: 0 auto 26px; }
.band h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); max-width: 16ch; margin-inline: auto; }
.band .lede { margin-inline: auto; max-width: 42ch; text-align: center; }
.band .btn { margin-top: 30px; }

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

.foot {
  border-top: 1px solid var(--line);
  padding-block: 40px 52px;
  font-size: 0.86rem;
  color: var(--muted);
}
.foot__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
  align-items: baseline;
  justify-content: space-between;
}
.foot__origin { font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--ink-body); }
.foot__links { display: flex; flex-wrap: wrap; gap: 22px; }
.foot a { text-decoration: none; transition: color 0.2s; }
.foot a:hover { color: var(--ink); }

/* --------------------------------------------------------------------------
   Modal
   -------------------------------------------------------------------------- */

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  overflow-y: auto;
}
.modal__scrim {
  position: fixed;
  inset: 0;
  background: rgba(28, 22, 19, 0.42);
  backdrop-filter: blur(3px);
  animation: fade 0.24s var(--ease);
}
@keyframes fade { from { opacity: 0; } }

.modal__panel {
  position: relative;
  width: min(480px, 100%);
  margin: auto;
  background: var(--paper);
  border-radius: 24px;
  padding: 30px 28px 28px;
  box-shadow: 0 34px 80px rgba(28, 22, 19, 0.28);
  animation: panelIn 0.3s var(--ease);
}
@keyframes panelIn { from { opacity: 0; transform: translateY(14px) scale(0.98); } }

.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}
.modal__close:hover { color: var(--ink); border-color: var(--line-strong); }

.modal h2 { font-size: 1.72rem; max-width: 14ch; }
.modal__sub { font-size: 0.9rem; color: var(--muted); margin: 10px 0 22px; max-width: 40ch; }

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { background: var(--paper); }

.field__err {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #B03A2E;
  min-height: 0;
}
.field__err:empty { display: none; }

.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 460px) { .row2 { grid-template-columns: 1fr; gap: 0; } }

.more {
  margin: 20px 0 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.more__hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 16px;
}

.check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--ink-body);
  line-height: 1.45;
  margin-top: -4px;
}
.check input { flex: none; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--amber-deep); }

.modal .btn { width: 100%; margin-top: 18px; padding-block: 16px; }
.modal .btn[disabled] { opacity: 0.6; cursor: progress; }

.form-msg {
  margin: 14px 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  text-align: center;
}
.form-msg--err { color: #B03A2E; }
.form-msg--ok  { color: var(--src-messages); }

.modal__done { text-align: center; }
.modal__done h2 { max-width: none; }
.modal__done .daisy { width: 84px; margin: 0 auto 18px; }

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */

.page-head {
  position: relative;
  text-align: center;
  padding-block: clamp(56px, 8vw, 96px) clamp(40px, 6vw, 70px);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: -200px 50% auto 50%;
  width: min(1200px, 180vw);
  height: 700px;
  transform: translateX(-50%);
  background:
    radial-gradient(50% 55% at 50% 68%, rgba(224, 154, 60, 0.17) 0%, rgba(224, 154, 60, 0) 70%),
    linear-gradient(180deg, rgba(251, 247, 240, 0) 45%, var(--cream) 100%);
  pointer-events: none;
}
.page-head > * { position: relative; }
.page-head .daisy { width: clamp(96px, 14vw, 130px); margin: 0 auto 26px; }
.page-head h1 { font-size: clamp(2.3rem, 6vw, 4rem); max-width: 14ch; margin-inline: auto; }

.prose { max-width: 640px; margin-inline: auto; }
.prose section { padding-block: clamp(34px, 5vw, 54px); border-top: 1px solid var(--line); }
.prose section:first-of-type { border-top: 0; }
.prose h2 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}
.prose p {
  font-size: 1.04rem;
  line-height: 1.68;
  margin: 0 0 16px;
  color: var(--ink-body);
  text-wrap: pretty;
}
.prose p:last-child { margin-bottom: 0; }
.prose p.pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  line-height: 1.38;
  color: var(--ink);
}
.prose p.byline, .byline {
  margin-top: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.prose p.contact-line, .contact-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--ink);
}
.contact-line a { text-decoration-color: var(--line-strong); text-underline-offset: 5px; }

/* --------------------------------------------------------------------------
   Reveals — entry only. The scroll stays the reader's.
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}
.reveal.is-revealed { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }

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

@media (max-width: 899px) {
  .split { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .split--flip > .split__copy { order: 0; }
  .split__copy h2, .lede, .ground { max-width: 100%; }
  .stats { grid-template-columns: 1fr; gap: 20px; text-align: left; max-width: 340px; }
  .read-card:nth-child(2), .read-card:nth-child(3) { margin-left: 0; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav__right { gap: 14px; }
  .nav__link { font-size: 0.66rem; }
  .hero__form { flex-direction: column; align-items: stretch; }
  /* flex-basis would become a HEIGHT once the axis flips */
  .hero__form input { flex: none; width: 100%; }
  .hero__form .btn { width: 100%; }
  .dayview { padding: 18px 14px 16px; border-radius: 20px; }
  .block { grid-template-columns: 60px minmax(0, 1fr); gap: 10px; padding: 10px 11px; }
  .block__time { white-space: normal; }
  .foot__inner { flex-direction: column; }
}

/* --------------------------------------------------------------------------
   Reduced motion — everything holds still
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-delay: 0ms !important;
  }
  .reveal, .noti, .msg, .bubble { opacity: 1 !important; transform: none !important; }
  .daisy .petals, .daisy .eyes { animation: none !important; }
  .is-revealed .noti.is-settled { animation: none !important; }
}
