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

:root {
  --bg:        #EDE4DB;
  --surface:   #FFFFFF;
  --primary:   #E0998F;
  --primary-d: #C87A6F;
  --secondary: #A9B89E;
  --taupe:     #C9B8A8;
  --text:      #3B342E;
  --muted:     #7A6E67;
  --gold:      #D9B26A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 96px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

@media (max-width: 600px) {
  nav { padding: 0.75rem 1.25rem; }
  .nav-logo img { height: 60px; }
  .nav-links { gap: 1rem; }
  .nav-links a { font-size: 0.82rem; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.82rem; }
}

.nav-cta {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--primary-d); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--primary-d); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--taupe);
  border-radius: 999px;
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: 0.85rem;
  color: var(--muted);
}

footer a { color: var(--muted); text-decoration: underline; }
footer a:hover { color: var(--text); }

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}

.footer-logo img {
  height: 78px;
  width: auto;
}

@media (max-width: 600px) {
  .footer-logo img { height: 52px; }
}

/* ── DOC PAGES (terms / privacy) ── */
.doc-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.doc-card {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(201,184,168,0.35);
}

.doc-card h1 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.doc-card .updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.doc-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
}

.doc-card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.doc-card ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.doc-card li {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.doc-card a { color: var(--primary); }

/* ── HERO ── */
.hero {
  text-align: center;
  padding: 4rem 1.5rem 5rem;
  max-width: 720px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(169,184,158,0.25);
  color: var(--muted);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero h1 em { font-style: italic; color: var(--primary); }

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── PHONE MOCKUP ── */
.mockup-wrap {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem 5rem;
}

.phone {
  width: min(280px, 72vw);
  background: var(--surface);
  border-radius: 2.5rem;
  box-shadow: 0 32px 80px rgba(59,52,46,0.15);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(201,184,168,0.4);
}

.phone-notch {
  width: 80px;
  height: 10px;
  background: #e0d8d0;
  border-radius: 999px;
  margin: 0 auto 1.5rem;
}

.phone-countdown {
  background: linear-gradient(135deg, var(--primary) 0%, #d4786d 100%);
  border-radius: 1.25rem;
  padding: 1.25rem;
  color: #fff;
  margin-bottom: 1rem;
}

.phone-countdown .weeks {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.phone-countdown .label {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.phone-trim {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.trim-pill {
  flex: 1;
  background: rgba(169,184,158,0.2);
  border-radius: 0.75rem;
  padding: 0.6rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.trim-pill.active { background: var(--secondary); color: #fff; }

.phone-cards { display: flex; flex-direction: column; gap: 0.6rem; }

.phone-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg);
  border-radius: 1rem;
  padding: 0.7rem 0.9rem;
  text-align: left;
}

.phone-card .icon { font-size: 1.2rem; width: 2rem; text-align: center; }
.phone-card .card-label { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.phone-card .card-sub { font-size: 0.68rem; color: var(--muted); }

/* ── FEATURES ── */
.features {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.section-label {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--surface);
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(201,184,168,0.35);
}

.feature-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }

.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.feature-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

/* ── TOGETHER CTA ── */
.together {
  background: var(--text);
  color: #F5EDE6;
  text-align: center;
  padding: 5rem 1.5rem;
}

.together h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.together h2 em { font-style: italic; color: var(--primary); }

.together p {
  font-size: 1.05rem;
  color: rgba(245,237,230,0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
