/* SitBliss splash site. No build step: plain CSS, self-hosted fonts. */

@font-face { font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Cormorant Garamond"; font-style: italic; font-weight: 500; font-display: swap; src: url("fonts/cormorant-garamond-latin-500-italic.woff2") format("woff2"); }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/jost-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 500; font-display: swap; src: url("fonts/jost-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Jost"; font-style: normal; font-weight: 600; font-display: swap; src: url("fonts/jost-latin-600-normal.woff2") format("woff2"); }

:root {
  --ivory: #FBF9F5;
  --champagne: #F4EEE3;
  --champagne-line: #E3D6BC;
  --ink: #182334;
  --text: #4A5468;
  --muted: #5A6478;
  --gold: #B8924A;       /* decorative only: lines, dots, rims */
  --gold-text: #8A6A2F;  /* gold that is readable as text */
  --plum: #A04584;
  --steel: #547597;
  --blue: #3564B5;
  --white: #FFFFFF;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
  --page: 1248px;
  --gutter: clamp(20px, 5vw, 96px);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; touch-action: manipulation; }
/* touch-action: manipulation stops iOS Safari's double-tap zoom (tapping an FAQ open then closed
   counted as a double tap and zoomed the page); pinch-zoom still works. */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* guard: nothing may widen the page and make phones zoom out */
}

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

a { color: var(--gold-text); text-underline-offset: 3px; }
a:hover { color: #6B5122; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--white);
  padding: 10px 16px; border-radius: 8px; z-index: 10;
}
.skip-link:focus { top: 12px; color: var(--white); }

.wrap { width: 100%; max-width: calc(var(--page) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }

/* Header */
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 88px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; }
.brand svg { width: 34px; height: 34px; }
.brand span { font-family: var(--serif); font-size: 32px; font-weight: 600; letter-spacing: 0.01em; line-height: 1; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; }
.site-nav a:hover { color: var(--ink); }
.badge {
  font-size: 12px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-text); padding: 8px 16px; border: 1px solid #DCCBA6; border-radius: 999px; white-space: nowrap;
}

/* Hero */
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); gap: 64px; align-items: center; padding-top: 24px; padding-bottom: 72px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; font-size: 13px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--gold); flex-shrink: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
h1 { margin: 0 0 24px; font-size: clamp(48px, 6vw, 80px); line-height: 0.98; }
h1 em, h2 em { font-style: italic; font-weight: 500; color: var(--gold-text); }
.lede { margin: 0 0 32px; max-width: 540px; font-size: 19px; line-height: 1.65; color: var(--text); }

.launch-note {
  display: flex; gap: 16px; align-items: flex-start; max-width: 540px;
  padding: 20px 24px; background: var(--white); border: 1px solid var(--champagne-line); border-radius: 20px;
}
.launch-note svg { width: 32px; height: 32px; flex-shrink: 0; margin-top: 2px; }
.launch-note strong { display: block; font-family: var(--serif); font-size: 24px; font-weight: 600; line-height: 1.2; margin-bottom: 4px; }
.launch-note p { margin: 0; font-size: 15px; color: var(--text); }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.button {
  white-space: nowrap;
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 28px;
  border-radius: 999px; font-family: var(--sans); font-size: 16px; font-weight: 500; letter-spacing: 0.03em; text-decoration: none; cursor: pointer;
}
.button-primary { background: var(--plum); color: var(--white); border: 0; }
.button-primary:hover { background: #87386F; color: var(--white); }
.button-ghost { background: transparent; color: var(--ink); border: 1px solid #D8CFBF; }
.button-ghost:hover { border-color: var(--gold); color: var(--ink); }

.hero-art { background: var(--champagne); border-radius: 40px; padding: 20px; }
.hero-art .art-compact { display: none; }

/* Waitlist form: kept for later (see README), hidden until an email provider is connected. */
.waitlist { display: flex; flex-direction: column; gap: 10px; max-width: 560px; }
.waitlist label { font-size: 15px; font-weight: 500; }
.waitlist .row { display: flex; gap: 10px; }
.waitlist input {
  flex: 1; min-width: 0; height: 56px; padding: 0 20px; font: inherit; font-size: 17px; color: var(--ink);
  background: var(--white); border: 1px solid #D8CFBF; border-radius: 999px;
}
.waitlist small { font-size: 14px; color: var(--muted); padding-left: 20px; }

/* Sections */
section { scroll-margin-top: 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--white); border-top: 1px solid #EFE7D8; border-bottom: 1px solid #EFE7D8; }
.section-head { max-width: 680px; margin: 0 0 56px; }
.section-head .eyebrow { margin-bottom: 16px; }
h2 { margin: 0 0 16px; font-size: clamp(38px, 4.2vw, 56px); line-height: 1.05; }
.section-head p { margin: 0; font-size: 18px; color: var(--text); }

/* How it works */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; counter-reset: step; }
.step { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.step-art { background: var(--champagne); border-radius: 28px; padding: 24px; min-width: 0; }
/* Every illustration sizes from its container's width; height follows the SVG's viewBox.
   (Percentage heights here made iOS Safari size the SVGs from their min-content and
   widen the whole page.) */
.hero-art svg, .step-art svg, .story-art svg { display: block; width: 100%; height: auto; }
.hero-art, .step-art, .story-art { min-width: 0; overflow: hidden; }
.step-num { font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-text); }
.step h3 { margin: 0; font-size: 30px; line-height: 1.1; }
.step p { margin: 0; font-size: 16px; color: var(--text); }

/* Occasions strip */
.occasions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; padding: 40px 0; margin: 0; list-style: none; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: 26px; color: var(--ink); }
.occasions li { display: flex; align-items: center; gap: 28px; }
.occasions li + li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Story */
.story .wrap { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr); gap: 72px; align-items: center; }
.story-art { background: var(--champagne); border-radius: 40px; padding: 40px; }
.story p { margin: 0 0 18px; font-size: 18px; color: var(--text); max-width: 560px; }
.values { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 16px; max-width: 560px; }
.values li { display: grid; grid-template-columns: 28px minmax(0, 1fr); gap: 12px; align-items: start; font-size: 16px; color: var(--text); }
.values svg { width: 22px; height: 22px; margin-top: 3px; }
.values strong { color: var(--ink); font-weight: 600; }

/* FAQ */
.faq-list { max-width: 820px; border-top: 1px solid var(--champagne-line); }
.faq-list details { border-bottom: 1px solid var(--champagne-line); }
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; font-family: var(--serif); font-size: 26px; font-weight: 600; line-height: 1.2; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; flex: none; width: 14px; height: 14px; border-right: 1.5px solid var(--gold-text); border-bottom: 1.5px solid var(--gold-text);
  transform: rotate(45deg) translate(-3px, -3px); transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(225deg) translate(-3px, -3px); }
.faq-list details p { overflow-wrap: anywhere; margin: 0 0 24px; max-width: 700px; font-size: 17px; color: var(--text); }
@media (prefers-reduced-motion: reduce) { .faq-list summary::after { transition: none; } }

/* Closing band */
.closing { text-align: center; padding: 96px 0; }
.closing .ornament { width: 120px; margin: 0 auto 24px; }
.closing h2 { margin-bottom: 12px; }
.closing p { margin: 0 auto; max-width: 560px; font-size: 18px; color: var(--text); }

/* Footer */
.site-footer { border-top: 1px solid var(--champagne-line); }
.site-footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 80px; font-size: 14px; color: var(--muted); flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; }
.site-footer nav { display: flex; gap: 24px; }

/* Plain content pages (privacy, 404) */
.page { padding: 48px 0 96px; }
.page article { max-width: 720px; }
.page h1 { font-size: clamp(44px, 5vw, 64px); margin-bottom: 12px; }
.page .meta { margin: 0 0 32px; font-size: 15px; color: var(--muted); }
.page h2 { font-size: 30px; margin: 40px 0 10px; }
.page p, .page li { font-size: 17px; line-height: 1.7; color: #2E3A4F; }
.page ul { padding-left: 22px; }

/* Responsive */
@media (max-width: 980px) {
  .hero .wrap, .story .wrap { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .steps { grid-template-columns: minmax(0, 1fr); gap: 48px; max-width: 560px; }
  .site-nav a { display: none; }
  .story-art { order: 2; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .site-header .wrap { min-height: 72px; }
  .brand span { font-size: 27px; }
  .brand svg { width: 28px; height: 28px; }
  .badge { font-size: 11px; padding: 7px 12px; letter-spacing: 0.14em; }
  .eyebrow { font-size: 11px; letter-spacing: 0.14em; }
  .lede { font-size: 17px; }
  .hero .wrap { padding-bottom: 56px; }
  .hero-art { border-radius: 28px; padding: 12px; }
  .hero-art .art-full { display: none; }
  .hero-art .art-compact { display: block; }
  .hero-actions .button { flex: 1 1 100%; }
  .section, .closing { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .occasions { font-size: 22px; gap: 8px 18px; }
  .occasions li { gap: 18px; }
  .faq-list summary { font-size: 22px; padding: 20px 0; }
  .story-art { padding: 24px; border-radius: 28px; }
  .waitlist .row { flex-direction: column; }
  .waitlist small { padding-left: 0; }
}
