@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,400;1,9..144,600&family=Manrope:wght@400;500;600&display=swap');

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

:root {
  --bg:     #FAF6EE;
  --ink:    #1A1A1A;
  --accent: #C5432B;
  --muted:  #7A7060;
  --border: #E5DDD0;
  --card:   #F3EDE2;
}

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.b-circle {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.wordmark span {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

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

/* ── Store buttons ── */
.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .15s;
  line-height: 1.3;
}

.store-btn:hover { opacity: 0.8; text-decoration: none; }

.store-btn svg { flex-shrink: 0; }

.store-btn-label { display: flex; flex-direction: column; }
.store-btn-label small { font-size: 10px; opacity: 0.7; font-weight: 400; letter-spacing: 0.03em; }
.store-btn-label strong { font-size: 15px; }

/* ── Hero ── */
.hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px 72px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 8vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 20px;
}

h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero .store-buttons { justify-content: center; }

/* ── How it works ── */
.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 40px;
  border-top: 1px solid var(--border);
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step {
  background: var(--card);
  border-radius: 16px;
  padding: 28px 24px;
}

.step-num {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Footer ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--muted);
}

.footer-links a:hover { color: var(--ink); text-decoration: none; }

/* ── Content pages (privacy, terms, contact) ── */
.page-hero {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 40px 40px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  text-align: left;
}

.page-hero .updated {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}

.content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.content h2 {
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 12px;
}

.content h3 {
  font-family: 'Fraunces', serif;
  font-size: 17px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
}

.content p {
  margin-bottom: 14px;
  color: #3A3530;
  line-height: 1.7;
}

.content ul {
  margin: 0 0 14px 20px;
  color: #3A3530;
  line-height: 1.7;
}

.content ul li { margin-bottom: 6px; }

/* ── Contact ── */
.contact-card {
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-email {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
}

.contact-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
}

.lang-dot { color: var(--border); font-size: 13px; }

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 3px 6px;
  border-radius: 5px;
  transition: color .15s, background .15s;
}

.lang-btn:hover { color: var(--ink); }
.lang-btn.active { color: var(--ink); background: var(--card); }

/* ── Responsive ── */
@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .hero, .section, .page-hero, .content { padding-left: 20px; padding-right: 20px; }
  footer { padding: 24px 20px; }
  .contact-card { padding: 28px 20px; }
}
