/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F9F6F0;
  --surface: #EFEBE3;
  --fg: #2C2724;
  --fg-muted: #6B6560;
  --accent: #B85C2A;
  --accent-warm: #D4895E;
  --border: #DDD8CF;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 60px 80px;
  max-width: 880px;
  margin: 0 auto;
}

.manifesto-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 32px;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 36px;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.manifesto-ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 72px;
}

.ornament-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ornament-circle {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* === PRODUCTS === */
.products {
  background: var(--surface);
  padding: 80px 60px;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  transition: border-color 0.2s;
}

.product-card:hover {
  border-color: var(--accent-warm);
}

.product-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 0 0 3px 3px;
}

.product-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 12px;
  padding-right: 40px;
}

.product-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--fg);
}

.product-format {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
}

.product-buy-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}
.product-buy-btn:hover { background: #9e4e22; }

/* === PHILOSOPHY === */
.philosophy {
  padding: 100px 60px;
  max-width: 920px;
  margin: 0 auto;
}

.philosophy-quote {
  margin-bottom: 60px;
}

blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 20px;
}

cite {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-style: normal;
}

.philosophy-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--fg);
}

.philosophy-body p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* === CLOSING === */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 60px;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--bg);
}

.closing-sub {
  font-size: 0.95rem;
  color: rgba(249,246,240,0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === FOOTER === */
.footer {
  padding: 28px 60px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* === CLOSING CTA === */
.closing-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.closing-cta:hover { background: #9e4e22; }

/* === MOBILE === */
  .nav { padding: 20px 28px; }
  .manifesto { padding: 60px 28px 48px; }
  .products { padding: 60px 28px; }
  .products-grid { grid-template-columns: 1fr; }
  .philosophy { padding: 60px 28px; }
  .closing { padding: 72px 28px; }
  .footer { padding: 20px 28px; }
  .footer-inner { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 375px) {
  .manifesto-headline { font-size: 2.2rem; }
  .product-card { padding: 24px; }
}