:root {
  --bg: #faf8f4;
  --fg: #1c1c1c;
  --accent: #c8502a;
  --accent-light: rgba(200, 80, 42, 0.08);
  --amber: #d4a853;
  --muted: #7a7570;
  --border: rgba(28, 28, 28, 0.12);
  --border-dark: rgba(28, 28, 28, 0.25);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
}
.nav-cta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  background: var(--accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.15s;
}
.nav-cta:hover { background: #a03d1f; }

/* Hero */
.hero {
  padding-top: calc(5rem + var(--space-2xl));
  padding-bottom: var(--space-xl);
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 46ch;
  font-weight: 300;
}
.hero-image-wrap {
  position: relative;
}
.hero-image-frame {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e8e3db;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image-caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}
.caption-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 2rem;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-number {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
  margin: 0 2.5rem;
}

/* How */
.how {
  background: var(--fg);
  color: var(--bg);
  padding: var(--space-2xl) 2rem;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.how-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.how-eyebrow .eyebrow-line { background: var(--amber); }
.how-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--bg);
  margin-bottom: 0;
}
.how-text {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250, 248, 244, 0.7);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.how-text em { color: var(--bg); font-style: italic; }
.how-text strong { color: var(--amber); font-weight: 500; }
.mise-card {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem;
  border: 1px solid rgba(250, 248, 244, 0.15);
  border-radius: 2px;
}
.mise-fr {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--bg);
  margin-bottom: 0.25rem;
}
.mise-en {
  font-size: 0.8rem;
  color: rgba(250, 248, 244, 0.4);
  font-style: normal;
  font-family: var(--sans);
}

/* Features */
.features {
  padding: var(--space-2xl) 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.features-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature-card {
  padding: 2rem 2rem 2rem 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-last-child(-n+3) { border-bottom: none; }
.feature-icon {
  margin-bottom: 1rem;
}
.feature-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.feature-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

/* Why */
.why {
  background: #f0ebe3;
  padding: var(--space-2xl) 2rem;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}
.why-image-col {
  position: relative;
}
.why-image-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(28, 28, 28, 0.7);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.75rem 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  text-align: center;
  border-radius: 1px;
}
.why-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.why-headline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--fg);
}
.why-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.why-quote {
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}
.why-quote blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.why-quote cite {
  font-size: 0.78rem;
  color: var(--muted);
  font-style: normal;
}

/* Manifesto */
.manifesto {
  background: var(--accent);
  padding: var(--space-2xl) 2rem;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 1.5rem;
}
.manifesto-body {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 60ch;
  margin-bottom: 1rem;
  font-weight: 300;
}
.manifesto-highlight {
  color: white;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 1.5rem;
  font-weight: 400;
}

/* Footer */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--bg);
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(250,248,244,0.4);
  font-family: var(--serif);
  font-style: italic;
}
.footer-rule {
  height: 1px;
  background: rgba(250,248,244,0.1);
  margin-bottom: 1.5rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(250,248,244,0.3);
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-image-wrap { order: -1; }
  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .stat-divider { display: none; }
  .how-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .feature-card:nth-child(2n) { border-right: none; }
  .feature-card:nth-last-child(-n+2) { border-bottom: none; }
  .feature-card:nth-last-child(3) { border-bottom: 1px solid var(--border); }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-image-col { order: -1; }
  .why-img { aspect-ratio: 16/9; }
  .hero { padding-top: calc(5rem + var(--space-lg)); }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none !important; }
  .feature-card:last-child { border-bottom: none !important; }
}