:root {
  /* Warm coral/peach palette per design reference */
  --primary: #F37868;
  --primary-dark: #E55A48;
  --primary-soft: #FCEFE5;
  --primary-tint: #FFF7F2;

  --blush: #FBE5DC;
  --blush-deep: #F6D4C5;

  --accent-coral: #F37868;
  --accent-sage:  #A8C5B5;
  --accent-yellow:#F2B850;
  --accent-mauve: #C8B6CC;

  --text: #1F2937;
  --text-soft: #6B7280;
  --surface: #FFFFFF;
  --bg: #FFFCFA;
  --border: rgba(0,0,0,0.08);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 28px rgba(243,120,104,0.18);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}
a { color: var(--primary-dark); text-decoration: none; transition: color .15s; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; }
h1, h2, h3 { color: var(--text); letter-spacing: -0.01em; line-height: 1.18; margin: 0 0 14px; }
h1 { font-size: clamp(36px, 5.4vw, 60px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; }
h3 { font-size: 18px; font-weight: 700; }
p  { font-size: 16px; }
.accent { color: var(--primary); }
/* Script-style accent word (italic serif) used in headlines */
.script {
  font-family: 'Caveat', 'Brush Script MT', 'Lucida Handwriting', cursive;
  color: var(--primary);
  font-style: normal;
  font-weight: 700;
  font-size: 1.18em;
  line-height: 1;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.announce { background: var(--primary); color: #fff; text-align: center; font-size: 13px; font-weight: 600; padding: 8px 16px; letter-spacing: 0.2px; }

.brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.brand-mark { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--primary) 0%, #F2B850 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; box-shadow: var(--shadow-md); }
.brand-mark--sm { width: 32px; height: 32px; font-size: 16px; border-radius: 9px; }
.brand-name { font-weight: 800; font-size: 22px; letter-spacing: 0.5px; }

/* ===== HERO (full-bleed split layout with soft left mask) ===== */
.hero {
  padding: 0;
  position: relative;
  background: #FFFFFF;
  overflow: hidden;
  min-height: 640px;
}
/* Override container so the hero CAN bleed to the right viewport edge */
.hero .container { max-width: none; padding: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 640px;
}
/* Left half: text contained within a comfortable max-width, aligned right of its column
   so it sits near the centre and doesn't crash into the left viewport edge */
.hero-copy {
  max-width: 580px;
  margin-left: auto;
  margin-right: 0;
  padding: 60px 48px 60px 32px;
  width: 100%;
  align-self: center;
}
.hero-copy h1 .heart-emoji { display: inline-block; transform: translateY(-6px); font-size: 0.7em; }
.hero-copy .lede { color: var(--text-soft); font-size: 18px; margin: 22px 0 32px; max-width: 520px; }
.hero-foot { color: var(--text-soft); font-size: 13px; margin-top: 16px; }

.badge-row { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn { display: inline-flex; transition: transform .2s, box-shadow .2s; border-radius: 12px; }
.store-btn img { height: 56px; width: auto; border-radius: 12px; }
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Right half — image fills the entire half edge-to-edge (touches viewport right edge).
   Soft mask gradient on the left dissolves the image smoothly into the white text area. */
.hero-art {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 640px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 8%, #000 18%);
          mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 8%, #000 18%);
}

/* ===== FEATURES ===== */
.features { background: var(--surface); padding: 90px 0; }
.features h2 { text-align: center; margin-bottom: 50px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card { background: var(--surface); border-radius: var(--radius-lg); padding: 32px 24px; border: 1px solid var(--border); text-align: center; transition: transform .2s, box-shadow .2s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(243,120,104,0.3); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px; color: #fff;
}
.fi-coral  { background: var(--accent-coral); }
.fi-sage   { background: var(--accent-sage); }
.fi-yellow { background: var(--accent-yellow); }
.fi-mauve  { background: var(--accent-mauve); }
.feature-card h3 { color: var(--text); font-size: 19px; margin: 0 0 10px; }
.feature-card p { color: var(--text-soft); font-size: 14.5px; margin: 0; }

/* ===== COMMUNITY (full-bleed split, mirroring hero — soft mask on collage left) ===== */
.community {
  background: #FFFFFF;
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 640px;
}
/* Break out of the centered container */
.community .container { max-width: none; padding: 0; }
.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 640px;
}
/* Left half: text contained within a comfortable max-width, anchored to the right
   of its column so it sits near the centre */
.community-copy {
  max-width: 560px;
  margin-left: auto;
  margin-right: 0;
  padding: 60px 48px 60px 32px;
  width: 100%;
  align-self: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-soft); color: var(--primary);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700;
  margin-bottom: 18px;
}
.pill::before { content: '♥'; font-size: 13px; }
.community-copy h2 { margin: 0 0 16px; font-size: clamp(30px, 3.6vw, 44px); }
.community-copy p { color: var(--text-soft); font-size: 17px; max-width: 460px; margin: 0 0 32px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 480px; }
.stat-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: #fff; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 12px; font-size: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.stat-num { font-size: 26px; font-weight: 800; color: var(--text); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-soft); margin-top: 4px; }

/* Right half — collage fills the entire half edge-to-edge (touches viewport right edge).
   Soft mask gradient on the left dissolves the panel smoothly into the white text area. */
.community-art {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 640px;
  padding: 50px 40px 50px 40px;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 8%, #000 18%);
          mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 8%, #000 18%);
}
/* Sage organic panel sits behind the collage and fills the half */
.community-bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: #CADFD2;
  border-radius: 55% 45% 50% 50% / 45% 50% 50% 55%;
  z-index: 0;
}
.community-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 100%;
  min-height: 540px;
  z-index: 1;
}
.community-collage img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}
.community-collage .img-1 { grid-row: 1 / 2; grid-column: 1 / 2; }
.community-collage .img-2 { grid-row: 1 / 2; grid-column: 2 / 3; }
.community-collage .img-3 { grid-row: 2 / 3; grid-column: 1 / 3; }

/* ===== VOICES (Testimonials) ===== */
.voices { background: var(--bg); padding: 90px 0; }
.voices h2 { text-align: center; margin-bottom: 50px; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 36px 26px 26px; border: 1px solid var(--border);
  margin: 0; box-shadow: var(--shadow-sm);
  position: relative;
}
.voice::before {
  content: '“'; position: absolute; top: 8px; left: 24px;
  font-family: Georgia, serif; font-size: 64px; line-height: 1;
  color: var(--primary); opacity: 0.85;
}
.voice p { color: var(--text); font-size: 15.5px; margin: 12px 0 20px; font-style: italic; line-height: 1.6; }
.voice footer { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-soft); }
.voice-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary-soft); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  flex-shrink: 0;
}
.voice footer strong { color: var(--text); display: block; font-size: 14px; }
.voice-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.voice-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--primary-soft); display: inline-block; }
.voice-dots i.active { background: var(--primary); width: 22px; border-radius: 4px; }

/* ===== WAITLIST CTA ===== */
.waitlist {
  padding: 30px 0 90px;
}
.waitlist-card {
  background: var(--primary-soft);
  border-radius: 32px;
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.waitlist-phone-art {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.waitlist-phone-art svg { width: 100%; max-width: 260px; height: auto; }
.waitlist-copy h2 { margin: 0 0 12px; font-size: 32px; }
.waitlist-copy p.sub { color: var(--text-soft); font-size: 16px; margin: 0 0 24px; max-width: 460px; }
.waitlist-form { display: flex; gap: 10px; max-width: 520px; flex-wrap: wrap; }
.waitlist-form input { flex: 1; min-width: 220px; padding: 15px 20px; border: 1.5px solid var(--border); border-radius: 999px; font-size: 15px; font-family: inherit; outline: none; transition: border-color .15s; background: #fff; }
.waitlist-form input:focus { border-color: var(--primary); }
.waitlist-form button { padding: 15px 28px; background: var(--primary); color: #fff; border: 0; border-radius: 999px; font-weight: 700; font-size: 15px; font-family: inherit; cursor: pointer; transition: background .15s, transform .15s; }
.waitlist-form button:hover { background: var(--primary-dark); transform: translateY(-1px); }
.waitlist-form button:disabled { opacity: 0.6; cursor: wait; }
.waitlist-status { font-size: 14px; margin: 14px 0 0; min-height: 22px; font-weight: 600; }
.waitlist-status.ok  { color: #047857; }
.waitlist-status.err { color: #B91C1C; }
.waitlist-foot { color: var(--text-soft); font-size: 13px; margin-top: 14px; }

/* ===== FOOTER ===== */
.site-footer { background: #1F2937; color: #D1D5DB; padding: 56px 0 32px; }
.site-footer .brand-name { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 2fr 1fr; gap: 40px; align-items: start; }
.footer-tag { color: #9CA3AF; font-size: 14px; margin: 4px 0 0; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.site-footer nav a { color: #D1D5DB; font-size: 14.5px; font-weight: 500; }
.site-footer nav a:hover { color: var(--primary); }
.footer-copy { color: #9CA3AF; font-size: 13px; text-align: right; }

/* ===== STATIC PAGES ===== */
.page { padding: 70px 0 90px; background: var(--surface); }
.page .container { max-width: 760px; }
.page h1 { font-size: 38px; margin-bottom: 12px; }
.page .page-sub { color: var(--text-soft); margin-bottom: 36px; }
.page h2 { font-size: 22px; margin-top: 32px; margin-bottom: 8px; }
.page p, .page li { font-size: 15.5px; color: var(--text); line-height: 1.75; }
.page ul { padding-left: 22px; }
.page .back { display: inline-block; margin-bottom: 18px; font-size: 14px; font-weight: 600; }
.faq-q { font-weight: 700; color: var(--text); cursor: pointer; padding: 18px 0; border-bottom: 1px solid var(--border); list-style: none; position: relative; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; position: absolute; right: 0; color: var(--primary); font-weight: 700; font-size: 22px; }
details[open] .faq-q::after { content: '–'; }
.faq-a { color: var(--text-soft); padding: 4px 0 18px; }

/* Contact form (simplified — just the form) */
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 560px; margin: 28px auto 0; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border);
  border-radius: 12px; font-size: 15px; font-family: inherit; background: #fff;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--primary); outline: none; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  padding: 14px 28px; background: var(--primary); color: #fff;
  border: 0; border-radius: 999px; font-weight: 700; font-size: 15px;
  font-family: inherit; cursor: pointer; align-self: flex-start;
}
.contact-form button:hover { background: var(--primary-dark); }
.contact-form button:disabled { opacity: 0.6; cursor: wait; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero { padding: 30px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .hero-art { min-height: 380px; }
  .hero-img { margin: 0 auto; max-width: 420px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: 1fr; gap: 40px; }
  .voice-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-copy { text-align: left; }
  .waitlist-card { grid-template-columns: 1fr; padding: 40px 28px; gap: 24px; text-align: center; }
  .waitlist-form { justify-content: center; margin: 0 auto; }
  .waitlist-copy p.sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 520px) {
  h1 { font-size: 32px; }
  .feature-grid { grid-template-columns: 1fr; }
  .store-btn img { height: 50px; }
  .badge-row { gap: 10px; }
  .stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .stat-num { font-size: 22px; }
}
