:root {
  --accent: #A88A64;
  --accent-light: #D4B28C;
  --bg: #F8F7F4;
  --card: #FFFFFF;
  --text-primary: #191919;
  --text-secondary: #6B6660;
  --text-tertiary: #928B83;
  --border: #E5E3DF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─────────────────────────────────────────────── */

nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  text-decoration: none;
}

.btn-nav {
  display: inline-block;
  border: 1.5px solid var(--text-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 100px;
  transition: background 0.18s, color 0.18s;
}

.btn-nav:hover {
  background: var(--text-primary);
  color: #fff;
}

/* ─── HERO ─────────────────────────────────────────────── */

#hero {
  padding: 96px 48px 80px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

.word-pills {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pill em {
  font-style: italic;
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 15px;
}

#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(54px, 9vw, 96px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

#hero .subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.65;
}

.hero-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 420px;
  margin: 0 auto 14px;
}

.hero-form input[type="email"],
.waitlist-form input[type="email"] {
  flex: 1;
  padding: 13px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: var(--card);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.hero-form input[type="email"]:focus,
.waitlist-form input[type="email"]:focus {
  border-color: var(--accent);
}

.hero-form input[type="email"]::placeholder,
.waitlist-form input[type="email"]::placeholder {
  color: var(--text-tertiary);
}

.hero-form button {
  padding: 13px 24px;
  background: var(--text-primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.18s;
}

.hero-form button:hover {
  opacity: 0.72;
}

.hero-byline {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.launch-note {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ─── STORY ─────────────────────────────────────────────── */

#story {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 48px;
}

.story-inner {
  max-width: 600px;
  margin: 0 auto;
}

.story-lead {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.story-inner p + p {
  margin-top: 16px;
}

.story-inner p:not(.story-lead) {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
}

.story-pullquote {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary);
  margin-top: 28px;
}

/* ─── DEMO ─────────────────────────────────────────────── */

#demo {
  padding: 96px 48px;
  text-align: center;
}

#demo h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.18;
  margin-bottom: 64px;
  color: var(--text-primary);
}

.screenshots {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.screenshots figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.phone-frame {
  width: 252px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(25, 25, 25, 0.13),
    0 4px 16px rgba(25, 25, 25, 0.06);
  background: var(--bg);
  outline: 1px solid rgba(0,0,0,0.06);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.screenshots figcaption {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ─── ABOUT ─────────────────────────────────────────────── */

#about {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 48px;
}

.about-inner {
  display: flex;
  align-items: center;
  gap: 52px;
  max-width: 720px;
  margin: 0 auto;
}

.photo-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.about-photo img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.about-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.about-text p:not(.about-label) {
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 16px;
}

/* ─── WAITLIST ─────────────────────────────────────────── */

#waitlist {
  padding: 96px 48px;
  text-align: center;
}

#waitlist h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
}

#waitlist > p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 380px;
  margin: 0 auto 44px;
  line-height: 1.65;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto;
}

.waitlist-form button {
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
}

.waitlist-form button:hover {
  background: #8E7352;
}

/* ─── FOOTER ─────────────────────────────────────────────── */

footer.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-tertiary);
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s;
}

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

.copyright {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ─── LEGAL PAGES ─────────────────────────────────────────── */

.legal-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 72px 48px 96px;
}

.legal-body h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 8px;
}

.legal-body .effective-date {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 48px;
  display: block;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 12px;
}

.legal-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-body li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-body a {
  color: var(--accent);
  text-decoration: none;
}

.legal-body a:hover {
  text-decoration: underline;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 680px) {
  nav.site-nav { padding: 0 24px; }

  #hero { padding: 64px 24px 56px; }

  .hero-form { flex-direction: column; }
  .hero-form input[type="email"],
  .hero-form button { width: 100%; }

  #story { padding: 64px 24px; }

  #demo { padding: 64px 24px; }
  .screenshots { gap: 28px; }
  .phone-frame { width: 200px; }

  #about { padding: 64px 24px; }
  .about-inner { flex-direction: column; text-align: center; }

  #waitlist { padding: 64px 24px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form input[type="email"],
  .waitlist-form button { width: 100%; }

  footer.site-footer { padding: 36px 24px; }

  .legal-body { padding: 48px 24px 72px; }
}
