/* ============================================================
   Mailit landing - design system
   Fonts: Fraunces (headings) + Inter (body)
   ============================================================ */

:root {
  /* palette */
  --cream:      #FBF6EE;
  --cream-2:    #F4ECDD;
  --paper:      #FEFCF8;
  --ink:        #211C18;
  --ink-soft:   #5C534B;
  --ink-faint:  #8A7F74;
  --accent:     #D85028; /* logo orange */
  --accent-deep:#B23C1C; /* darker orange for hover */
  --heart:      #A50E14; /* logo heart red */
  --terra:      #C98A66;
  --line:       #E8DECF;
  --band:       #EFE4D2;

  /* type */
  --display: "Muina Love", "Fraunces", Georgia, serif; /* brand font, matches logo */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* layout */
  --maxw: 1140px;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(120,72,40,.04), 0 3px 10px -3px rgba(120,72,40,.07);
  --shadow-md: 0 4px 14px -4px rgba(120,72,40,.10), 0 14px 34px -12px rgba(120,72,40,.13);
  --shadow-lg: 0 10px 26px -10px rgba(120,72,40,.14), 0 34px 64px -24px rgba(120,72,40,.20);
  --hair: color-mix(in oklab, var(--ink) 8%, transparent);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- brand font (matches the logo) ---------- */
@font-face {
  font-family: "Muina Love";
  src: url("../assets/fonts/muina-love.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- language + plan toggling ---------- */
html[data-lang="nl"] [lang="en"], html[data-lang="nl"] [lang="fr"] { display: none !important; }
html[data-lang="en"] [lang="nl"], html[data-lang="en"] [lang="fr"] { display: none !important; }
html[data-lang="fr"] [lang="nl"], html[data-lang="fr"] [lang="en"] { display: none !important; }
html[data-plan="year"]  .price-month { display: none !important; }
html[data-plan="month"] .price-year  { display: none !important; }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.1; letter-spacing: -.01em; }
h1, h2 { font-family: var(--display); font-weight: 400; letter-spacing: .005em; line-height: 1.04; font-synthesis: none; }
h3, h4 { font-family: var(--serif); }
ul, ol { list-style: none; padding: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: 760px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: 16px;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 15px; }
.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2.5px solid var(--accent); outline-offset: 3px;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,246,238,.82); backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.brand-logo { height: 30px; width: auto; }
.nav { display: flex; gap: 26px; margin-left: 14px; }
.nav a { font-size: 15px; color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: var(--paper); }
.lang-switch button {
  border: 0; background: transparent; font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--ink-faint); padding: 6px 12px; cursor: pointer; transition: background .15s, color .15s;
}
.lang-switch button[aria-pressed="true"] { background: var(--ink); color: var(--cream); }

/* ---------- eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 18px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(203,69,36,.16); }
.eyebrow-light { color: rgba(255,255,255,.78); }
.section { padding: clamp(96px, 14vw, 184px) 0; }
.section-warm { background: var(--cream-2); }
.section-head { max-width: 720px; margin-bottom: clamp(56px, 7vw, 84px); }
.section-head h2 { font-size: clamp(32px, 5vw, 56px); line-height: 1.06; }
.section-lead { color: var(--ink-soft); margin-top: 20px; font-size: clamp(18px, 2vw, 20px); max-width: 56ch; }

/* ---------- hero ---------- */
.hero { padding: clamp(56px, 9vw, 104px) 0 clamp(64px, 9vw, 108px); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(201,138,102,.20), transparent 60%),
    radial-gradient(50% 50% at 12% 92%, rgba(203,69,36,.10), transparent 60%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 6vw, 66px); font-weight: 500; }
.hero-sub { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); margin-top: 24px; max-width: 36ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 34px; font-size: 14.5px; color: var(--ink-faint); }
.ico { width: 18px; height: 18px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ---------- hero art: polaroid pack ---------- */
.hero-art { display: flex; justify-content: center; align-items: center; min-height: 420px; }
.pack { position: relative; width: 340px; height: 400px; }
.envelope {
  position: absolute; inset: auto 0 0 50%; transform: translateX(-50%) rotate(-3deg);
  width: 300px; height: 215px; bottom: 28px; border-radius: 8px;
  background: linear-gradient(160deg, #fff 0%, #f6efe2 100%);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.polaroid {
  position: absolute; left: 50%; width: 196px; padding: 12px 12px 40px;
  background: var(--paper); border-radius: 6px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(33,28,24,.05);
}
.polaroid .photo { width: 100%; aspect-ratio: 1 / 1; border-radius: 3px; }
.polaroid .cap {
  position: absolute; left: 0; right: 0; bottom: 12px; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-soft);
}
.p1 { transform: translate(-50%, 0) rotate(-7deg); top: 36px; z-index: 4; }
.p2 { transform: translate(-42%, 10px) rotate(5deg); top: 60px; z-index: 3; }
.p3 { transform: translate(-58%, 26px) rotate(-2deg); top: 86px; z-index: 2; }
.band {
  position: absolute; left: 50%; bottom: 70px; transform: translateX(-50%) rotate(-3deg);
  width: 320px; height: 46px; background: var(--accent); border-radius: 4px; z-index: 5;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(168,51,26,.3);
}
.band span { font-family: var(--display); color: #fff; font-size: 22px; letter-spacing: .06em; text-transform: lowercase; }

/* Real photos with a warm gradient fallback (gradient shows until the jpg exists).
   Drop square photos in assets/photos/ with these exact names and they appear automatically. */
.ph1 { background: url("../assets/photos/card-1.jpg") center/cover no-repeat, linear-gradient(150deg, #f3b07a, #d9663f 70%, #b8472a); }
.ph2 { background: url("../assets/photos/card-2.jpg") center/cover no-repeat, linear-gradient(150deg, #cdb89a, #8a7a63); }
.ph3 { background: url("../assets/photos/card-3.jpg") center/cover no-repeat, linear-gradient(150deg, #e8c98e, #cf8d5a); }
.ph-solo { background: url("../assets/photos/garden.jpg") center/cover no-repeat, linear-gradient(155deg, #f0c489 0%, #d98b53 55%, #b9532c 100%); }

/* ---------- steps (editorial rows, no cards) ---------- */
.steps { display: grid; gap: 0; max-width: 840px; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 24px; align-items: start; padding: 30px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step-num { font-family: var(--display); font-weight: 400; font-size: 30px; line-height: 1; color: var(--accent); }
.step h3 { font-size: 24px; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 17px; max-width: 54ch; }

/* ---------- why (clean columns, accent rule, no icons) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.why-card { padding-top: 22px; border-top: 2px solid var(--accent); }
.why-card h3 { font-size: 23px; margin-bottom: 10px; }
.why-card p { color: var(--ink-soft); }

/* ---------- product close-up ---------- */
.product-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.product-art { display: flex; justify-content: center; }
.polaroid-solo {
  width: 300px; padding: 18px 18px 58px; background: var(--paper); border-radius: 8px;
  box-shadow: var(--shadow-lg); transform: rotate(-4deg); position: relative; border: 1px solid rgba(33,28,24,.05);
}
.polaroid-solo .photo { width: 100%; aspect-ratio: 1/1; border-radius: 4px; }
.polaroid-solo .cap {
  position: absolute; left: 0; right: 0; bottom: 20px; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--ink-soft);
}
.spec-list { margin-top: 28px; display: grid; }
.spec-list li { padding: 16px 0; border-top: 1px solid var(--line); color: var(--ink-soft); font-size: 17px; }
.spec-list li:last-child { border-bottom: 1px solid var(--line); }

/* ---------- statement (one big emotional beat) ---------- */
.statement { background: var(--cream-2); padding: clamp(110px, 16vw, 220px) 0; }
.statement .container { max-width: 1000px; }
.statement-text {
  font-family: var(--display); font-weight: 400; text-align: center;
  font-size: clamp(30px, 5vw, 58px); line-height: 1.16; letter-spacing: .005em;
  color: var(--ink); max-width: 22ch; margin-inline: auto;
}

/* ---------- pricing (light columns, no cards/pills/ribbon) ---------- */
.plan-toggle { display: inline-flex; gap: 26px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.plan-toggle button {
  border: 0; background: transparent; font-family: var(--sans); font-size: 16px; font-weight: 600;
  color: var(--ink-faint); padding: 0 2px 12px; margin-bottom: -1px; cursor: pointer;
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.plan-toggle button[aria-pressed="true"] { color: var(--ink); border-color: var(--accent); }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-card { padding: 36px 30px; display: flex; flex-direction: column; }
.price-card + .price-card { border-left: 1px solid var(--line); }
.price-accent { background: rgba(216,80,40,.045); }
.price-card h3 { font-size: 26px; }
.price-meta { color: var(--ink-faint); font-size: 14.5px; margin-top: 2px; }
.price { margin: 22px 0 4px; }
.price .amt { font-family: var(--serif); font-size: 42px; color: var(--ink); }
.price .per { font-size: 15px; color: var(--ink-faint); margin-left: 4px; }
.price-foot { font-size: 13.5px; color: var(--accent-deep); min-height: 20px; margin-bottom: 22px; }
.price-feat { display: grid; gap: 12px; margin-bottom: 28px; }
.price-feat li { position: relative; padding-left: 16px; font-size: 15.5px; color: var(--ink-soft); }
.price-feat li::before { content: ""; position: absolute; left: 0; top: 11px; width: 5px; height: 5px; border-radius: 50%; background: var(--terra); }
.price-card .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--ink-faint); font-size: 15px; margin-top: 30px; }

/* ---------- founding ---------- */
.founding { background: var(--ink); color: var(--cream); padding: clamp(72px, 11vw, 120px) 0; position: relative; overflow: hidden; }
.founding::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(55% 60% at 80% 10%, rgba(216,80,40,.30), transparent 60%),
              radial-gradient(45% 50% at 8% 100%, rgba(201,138,102,.16), transparent 60%);
}
.founding-inner { position: relative; z-index: 1; max-width: 680px; text-align: center; margin-inline: auto; }
.founding h2 { font-size: clamp(30px, 4.6vw, 48px); color: #fff; }
.founding-lead { color: rgba(255,255,255,.82); font-size: 18px; margin: 20px auto 34px; max-width: 56ch; }
.founding-note { margin-top: 16px; font-size: 14.5px; color: rgba(255,255,255,.7); }
.founding-meta { margin-top: 22px; font-size: 14.5px; color: rgba(255,255,255,.66); }
.founding-meta strong { color: #fff; }

/* ---------- faq ---------- */
.faq-list { display: grid; gap: 0; }
.faq-list details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative;
  font-family: var(--serif); font-size: 20px; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 26px; color: var(--accent); transition: transform .2s var(--ease); font-weight: 400;
}
.faq-list details[open] summary::after { content: "\2013"; }
.faq-list details p { color: var(--ink-soft); padding: 0 44px 22px 0; font-size: 16.5px; }
.faq-list a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- waitlist ---------- */
.waitlist-inner { text-align: center; }
.waitlist-inner h2 { font-size: clamp(26px, 4vw, 38px); }
.waitlist-inner > p { color: var(--ink-soft); margin: 14px auto 28px; max-width: 48ch; }
.waitlist-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.waitlist-form input {
  flex: 1; font-family: var(--sans); font-size: 16px; padding: 14px 18px;
  border: 1.5px solid var(--line); border-radius: 999px; background: var(--paper); color: var(--ink);
}
.waitlist-form input::placeholder { color: var(--ink-faint); }
.waitlist-msg { margin-top: 18px; font-size: 15.5px; color: var(--accent-deep); font-weight: 500; }

/* ---------- footer ---------- */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--ink-soft); font-size: 15px; margin-top: 16px; max-width: 34ch; }
.footer-brand .made { color: var(--ink-faint); }
.footer-logo { height: 28px; }
.footer-col h4 { font-family: var(--sans); font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; color: var(--ink-soft); font-size: 15px; padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-legal { margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }
.footer-legal p { font-size: 13.5px; color: var(--ink-faint); }

/* ---------- reveal animation (slow, settled) ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s cubic-bezier(.16,.84,.44,1), transform 1.1s cubic-bezier(.16,.84,.44,1); }
.reveal.in { opacity: 1; transform: none; }
/* gentle stagger within grids */
.steps .step:nth-child(2), .why-grid .why-card:nth-child(2), .pricing-grid .price-card:nth-child(2) { transition-delay: .1s; }
.steps .step:nth-child(3), .why-grid .why-card:nth-child(3), .pricing-grid .price-card:nth-child(3) { transition-delay: .2s; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { order: -1; min-height: 340px; }
  .hero-sub { max-width: none; }
  .steps, .why-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card + .price-card { border-left: 0; border-top: 1px solid var(--line); }
  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-art { order: -1; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-actions .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn { width: 100%; }
  .hero-cta .btn { flex: 1; }
}

/* ---------- hero soft link ---------- */
.hero-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px;
  color: var(--accent-deep); border-bottom: 1.5px solid transparent; padding-bottom: 2px; transition: gap .2s var(--ease), border-color .2s;
}
.hero-link:hover { gap: 12px; border-color: var(--accent-deep); }
.link-arrow { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- hero starter card (Uber/Airbnb-style entry point) ---------- */
.hero-start { position: relative; display: flex; justify-content: center; }
.starter-peek { position: absolute; top: -26px; right: 6px; z-index: 0; transform: rotate(7deg); filter: drop-shadow(0 12px 26px rgba(33,28,24,.16)); }
.polaroid-mini { width: 132px; padding: 9px 9px 30px; background: var(--paper); border-radius: 6px; position: relative; border: 1px solid rgba(33,28,24,.05); }
.polaroid-mini .photo { width: 100%; aspect-ratio: 1/1; border-radius: 3px; }
.polaroid-mini .cap { position: absolute; left: 0; right: 0; bottom: 9px; text-align: center; font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--ink-soft); }

.starter {
  position: relative; z-index: 1; width: 100%; max-width: 430px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px 28px 24px; box-shadow: var(--shadow-lg);
}
.starter-eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-deep); }
.starter-title { font-family: var(--display); font-weight: 400; font-size: 30px; margin: 6px 0 20px; letter-spacing: .005em; }
.starter-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin: 0 0 9px; }

/* segmented recipient picker */
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-bottom: 20px; }
.seg button {
  display: flex; flex-direction: column; align-items: center; gap: 1px; padding: 11px 6px;
  border: 1.5px solid var(--line); background: var(--cream); border-radius: 12px;
  font-family: var(--sans); font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s var(--ease);
}
.seg button small { font-size: 11.5px; font-weight: 500; color: var(--ink-faint); }
.seg button:hover { border-color: var(--terra); }
.seg button[aria-pressed="true"] { border-color: var(--accent); background: rgba(216,80,40,.07); }
.seg button[aria-pressed="true"] small { color: var(--accent-deep); }

/* dropzone */
.dropzone {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  padding: 26px 18px; border: 1.5px dashed var(--line); border-radius: 14px; background: var(--cream);
  cursor: pointer; transition: border-color .15s, background .15s; margin-bottom: 14px;
}
.dropzone:hover, .dropzone.drag { border-color: var(--accent); background: rgba(216,80,40,.05); }
.dz-ico { width: 30px; height: 30px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.dz-text { font-size: 15px; color: var(--ink-soft); }
.dz-text em { font-style: normal; color: var(--accent-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.dz-hint { font-size: 12px; color: var(--ink-faint); letter-spacing: .04em; }

.dz-thumbs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.dz-thumbs img { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.dz-more { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 8px; background: var(--cream-2); color: var(--ink-soft); font-size: 13px; font-weight: 600; }

.starter-go { margin-top: 4px; }
.btn-arrow { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s var(--ease); }
.starter-go:hover .btn-arrow { transform: translateX(3px); }
.starter-foot { text-align: center; font-size: 12.5px; color: var(--ink-faint); margin-top: 12px; }

/* ---------- signup modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(33,28,24,.55); backdrop-filter: blur(3px); animation: fade .25s var(--ease); }
.modal-card {
  position: relative; z-index: 1; width: 100%; max-width: 470px; max-height: calc(100vh - 40px); overflow-y: auto;
  background: var(--paper); border-radius: 22px; padding: 34px 32px 28px; box-shadow: var(--shadow-lg);
  animation: pop .3s var(--ease);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.98); } }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: var(--cream-2); color: var(--ink-soft); font-size: 22px; line-height: 1; cursor: pointer;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal-card .eyebrow { margin-bottom: 10px; }
.modal-card h2 { font-size: 30px; }
.modal-sub { color: var(--ink-soft); font-size: 15.5px; margin: 12px 0 18px; }
.modal-summary { margin-bottom: 22px; padding: 13px 16px; background: color-mix(in oklab, var(--accent) 9%, var(--paper)); border-radius: 12px; font-size: 14.5px; font-weight: 500; color: var(--ink); }
.modal-note { text-align: center; font-size: 13.5px; color: var(--ink-faint); margin-top: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input {
  width: 100%; font-family: var(--sans); font-size: 16px; padding: 13px 16px;
  border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream); color: var(--ink); transition: border-color .15s, background .15s;
}
.field input:focus { background: var(--paper); border-color: var(--accent); outline: none; }
.form-error { color: var(--heart); font-size: 13.5px; font-weight: 500; margin: 0 0 12px; }
#signupSubmit { margin-top: 6px; }
.modal-trust { display: flex; flex-wrap: wrap; gap: 12px 22px; justify-content: center; margin-top: 20px; }
.modal-trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }
.modal-fineprint { text-align: center; font-size: 12.5px; color: var(--ink-faint); margin-top: 16px; }
.modal-fineprint a { color: var(--accent-deep); text-decoration: underline; text-underline-offset: 2px; }
body.modal-open { overflow: hidden; }

@media (max-width: 900px) {
  .hero-start { margin-top: 8px; }
  .starter { max-width: 480px; }
  .starter-peek { display: none; }
}
@media (max-width: 560px) {
  .starter { padding: 24px 20px 20px; border-radius: 18px; }
  .starter-title { font-size: 26px; }
  .modal-card { padding: 28px 22px 22px; }
  .modal-card h2 { font-size: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .modal-backdrop, .modal-card { animation: none !important; }
}

/* ============================================================
   FEED-STYLE LAYOUT LAYER (centered logo nav, oversized hero,
   numbered steps, moments gallery, collage, big footer statement)
   ============================================================ */

/* ---- nav: centered logo, numbered right menu ---- */
.nav-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 76px; }
.nav-grid .nav-left { justify-self: start; }
.nav-grid .brand { justify-self: center; }
.nav-grid .nav-right { justify-self: end; display: flex; gap: 30px; }
.nav-right a { font-size: 14px; color: var(--ink-soft); transition: color .15s; }
.nav-right a:hover { color: var(--ink); }
.nav-right .num { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: .04em; vertical-align: super; margin-right: 1px; }

/* ---- hero: centered, oversized ---- */
.hero-feed { padding: clamp(56px, 9vw, 100px) 0 clamp(72px, 10vw, 120px); text-align: center; position: relative; overflow: hidden; }
.hero-feed::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 50% at 50% 0%, rgba(201,138,102,.18), transparent 65%);
}
.hero-display { font-family: var(--display); font-weight: 400; font-size: clamp(52px, 11vw, 150px); line-height: .92; letter-spacing: .01em; }
.hero-tag { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 3vw, 30px); color: var(--ink-soft); margin-top: 22px; }
.hero-actions { margin-top: 38px; }
.hero-feed .hero-note { margin-top: 20px; font-size: 14px; color: var(--ink-faint); }
.hero-visual { display: flex; justify-content: center; margin-top: clamp(48px, 7vw, 84px); }
.hero-visual .pack { transform: scale(1.04); }

/* ---- centered section heads + value/more lines ---- */
.section-head-center { margin-inline: auto; text-align: center; }
.value { padding: clamp(72px, 11vw, 150px) 0; }
.value-line, .more-line {
  font-family: var(--display); font-weight: 400; text-align: center; margin-inline: auto;
  font-size: clamp(26px, 4.2vw, 48px); line-height: 1.18; letter-spacing: .005em; max-width: 20ch; color: var(--ink);
}
.more-line { max-width: 24ch; margin-bottom: clamp(48px, 6vw, 72px); }

/* ---- steps centered (numbered) ---- */
.steps-center { grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 5vw, 56px); max-width: none; }
.steps-center .step { display: block; text-align: center; border: 0 !important; padding: 0; }
.steps-center .step-num { display: block; font-size: 40px; margin: 0 auto 14px; }
.steps-center .step h3 { font-size: 24px; margin-bottom: 8px; }
.steps-center .step p { color: var(--ink-soft); margin-inline: auto; max-width: 34ch; }

/* ---- moments gallery (2-col cards) ---- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 48px); }
.moment { display: flex; flex-direction: column; }
.moment-photo { background: var(--paper); padding: 16px 16px 0; border-radius: 10px; box-shadow: var(--shadow-md); border: 1px solid rgba(33,28,24,.05); }
.moment-photo .photo { width: 100%; aspect-ratio: 4 / 3; border-radius: 4px; }
.moment-meta { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 4px 0; gap: 12px; }
.moment-meta h3 { font-family: var(--serif); font-size: 21px; }
.moment-meta p { color: var(--ink-faint); font-size: 14.5px; }

/* ---- collage ---- */
.collage { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.collage .tile { background: var(--paper); padding: 8px 8px 0; border-radius: 7px; box-shadow: var(--shadow-sm); border: 1px solid rgba(33,28,24,.05); }
.collage .tile:nth-child(odd) { transform: rotate(-1.5deg); }
.collage .tile:nth-child(even) { transform: rotate(1.5deg); }
.collage .photo { width: 100%; aspect-ratio: 1 / 1; border-radius: 3px; margin-bottom: 8px; }

/* ---- founding big statement ---- */
.founding-big { font-size: clamp(40px, 8vw, 92px); line-height: .96; }

@media (max-width: 900px) {
  .nav-grid { grid-template-columns: auto 1fr; height: 64px; }
  .nav-grid .nav-left { display: none; }
  .nav-grid .brand { justify-self: start; }
  .nav-grid .nav-right { display: none; }
  .steps-center { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .collage { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FEED signature: split-word hero, framed photo, edge-nav,
   filmstrip / polaroid slider
   ============================================================ */

/* hero becomes left-aligned with a giant split headline */
.hero-feed { text-align: left; }
.hero-split { font-family: var(--display); font-weight: 400; font-size: clamp(48px, 11.5vw, 150px); line-height: .92; letter-spacing: .01em; }
.hero-split .hl { display: inline; }
.hero-split br { line-height: 0; }
.hl-img { display: inline-block; vertical-align: middle; width: clamp(96px, 13vw, 200px); padding: 7px 7px 7px; margin: 0 .12em; background: var(--paper); border-radius: 6px; box-shadow: var(--shadow-md); border: 1px solid rgba(33,28,24,.06); transform: rotate(-3deg); }
.hl-img .photo { display: block; width: 100%; aspect-ratio: 16 / 11; border-radius: 3px; }

.hero-foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-top: clamp(36px, 5vw, 64px); }
.hero-foot-copy { max-width: 460px; }
.hero-tag { font-size: clamp(17px, 2vw, 20px); color: var(--ink-soft); }
.hero-actions { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.hero-feed .hero-note { font-size: 14px; color: var(--ink-faint); }
.hero-portrait { flex: 0 0 auto; width: clamp(180px, 22vw, 280px); background: var(--paper); padding: 12px 12px 0; border-radius: 8px; box-shadow: var(--shadow-lg); border: 1px solid rgba(33,28,24,.05); transform: rotate(2deg); }
.hero-portrait .photo { display: block; width: 100%; aspect-ratio: 4 / 5; border-radius: 4px; }
.hero-portrait figcaption { text-align: center; font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink-soft); padding: 12px 0 16px; }

/* vertical colored edge-nav */
.edge-nav { position: fixed; top: 0; right: 0; bottom: 0; z-index: 40; display: flex; }
.edge-nav a { width: 38px; background: var(--c); display: flex; align-items: center; justify-content: center; transition: width .2s var(--ease); }
.edge-nav a:hover { width: 48px; }
.edge-nav a span { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: rgba(33,28,24,.55); white-space: nowrap; }
@media (min-width: 1180px) { body { padding-right: 152px; } }
@media (max-width: 1179px) { .edge-nav { display: none; } }

/* filmstrip / polaroid slider */
.filmstrip-head { display: flex; align-items: flex-end; gap: 28px; margin-bottom: 40px; }
.fs-count { font-family: var(--display); font-size: clamp(40px, 7vw, 86px); line-height: .9; color: var(--ink); }
.fs-count .fs-slash { color: var(--accent); }
.fs-title { padding-bottom: 8px; }
.fs-title h2 { font-size: clamp(26px, 3.4vw, 40px); }
.fs-title p { color: var(--ink-soft); margin-top: 8px; max-width: 52ch; }

.filmstrip { position: relative; background: #1d1813; border-radius: 10px; padding: 30px 0; overflow: hidden; }
.filmstrip::before, .filmstrip::after { content: ""; position: absolute; left: 0; right: 0; height: 16px; background: repeating-linear-gradient(90deg, #FBF6EE 0 11px, transparent 11px 30px); opacity: .92; }
.filmstrip::before { top: 7px; }
.filmstrip::after { bottom: 7px; }
.filmstrip-viewport { overflow: hidden; padding: 0 24px; }
.filmstrip-track { display: flex; gap: 22px; transition: transform .5s var(--ease); }
.fs-card { flex: 0 0 auto; width: clamp(220px, 26vw, 300px); background: var(--paper); padding: 14px 14px 0; border-radius: 6px; box-shadow: 0 10px 24px rgba(0,0,0,.3); }
.fs-card .photo { display: block; width: 100%; aspect-ratio: 1 / 1; border-radius: 3px; }
.fs-card figcaption { text-align: center; font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink-soft); padding: 14px 0 18px; }

.fs-controls { display: flex; gap: 12px; margin-top: 28px; }
.fs-arrow { width: 56px; height: 56px; border-radius: 50%; border: 1.5px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s, transform .15s; }
.fs-arrow:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.fs-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.fs-arrow:disabled { opacity: .3; cursor: default; transform: none; background: transparent; color: var(--ink); }

@media (max-width: 700px) {
  .hero-foot { flex-direction: column; align-items: stretch; }
  .hero-portrait { align-self: flex-start; }
  .filmstrip-head { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   CRAFT PASS - elevate from "template" to "designed"
   ============================================================ */

/* body type: warmer, calmer rendering */
body { letter-spacing: -0.011em; }
h1, h2, h3, h4 { letter-spacing: -0.02em; }
.hero-split, .hero-display, .statement-text, .value-line, .more-line, .step-num, .fs-count, .founding-big { letter-spacing: 0; }

/* button-in-button: nest the arrow in its own circle on filled buttons */
.btn-primary .btn-arrow {
  width: 26px; height: 26px; padding: 5px; border-radius: 50%;
  background: rgba(255,255,255,.18); box-sizing: border-box;
  transition: transform .35s cubic-bezier(.32,.72,0,1), background .2s;
}
.btn-primary:hover .btn-arrow { background: rgba(255,255,255,.28); transform: translate(3px,-1px); }
.btn-primary { padding-right: 10px; padding-left: 26px; gap: 12px; }
.btn-primary.btn-lg { padding-left: 32px; }
.btn-primary:active { transform: translateY(0) scale(.985); }

/* softer, premium motion on all buttons */
.btn { transition: transform .35s cubic-bezier(.32,.72,0,1), box-shadow .35s cubic-bezier(.32,.72,0,1), background .2s, color .2s, border-color .2s; }

/* heavier, cinematic reveal */
.reveal { filter: blur(6px); transition: opacity 1s cubic-bezier(.16,.84,.44,1), transform 1s cubic-bezier(.16,.84,.44,1), filter 1s cubic-bezier(.16,.84,.44,1); }
.reveal.in { filter: blur(0); }

/* warm-tinted hairlines instead of flat gray, softer card edges */
.price-card, .step, .moment-photo, .cat, .starter, .modal-card, .field input, .dropzone, .seg button { border-color: var(--hair); }
.faq-list details { border-color: var(--hair); }
.spec-list li { border-color: var(--hair); }

/* refine focus ring to brand, less harsh */
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--accent) 70%, transparent); outline-offset: 3px;
}
