:root {
  --bg: #FAF7F2;
  --fg: #1A1A1A;
  --muted: #6B5F54;
  --accent: #4A1942;
  --accent-light: #7B3D6B;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --border: rgba(74, 25, 66, 0.12);
  --card-bg: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  position: relative;
  padding: 100px 48px 120px;
  overflow: hidden;
  background: var(--accent);
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 70%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  color: #FFFFFF;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-lede {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  border: 1px solid rgba(201, 168, 76, 0.35);
  padding: 6px 14px;
  border-radius: 2px;
}

/* MANIFESTO */
.manifesto {
  padding: 90px 48px;
  background: var(--bg);
}

.manifesto-inner {
  max-width: 780px;
  margin: 0 auto;
}

.manifesto-label, .section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 32px;
  font-style: normal;
}

.manifesto-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
}

/* PRODUCTS */
.products {
  padding: 80px 48px 100px;
  background: #FFFFFF;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-header {
  margin-bottom: 60px;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 620px;
}

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

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(74, 25, 66, 0.08);
}

.product-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}

.product-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* PROCESS */
.process {
  padding: 90px 48px;
  background: var(--accent);
}

.process-header {
  margin-bottom: 64px;
}

.process .section-label {
  color: var(--gold-light);
}

.process .section-headline {
  color: #FFFFFF;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.step {
  padding: 40px 32px 40px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding-right: 40px;
}

.step:last-child {
  border-right: none;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.25);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.step-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}

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

.closing-ornament {
  margin-bottom: 40px;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  max-width: 680px;
  margin: 0 auto 24px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

/* FOOTER */
.footer {
  padding: 48px;
  background: var(--accent);
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .navbar { padding: 18px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 72px 24px 80px; }
  .hero-headline { font-size: 52px; }
  .manifesto { padding: 64px 24px; }
  .manifesto-quote { font-size: 28px; }
  .products { padding: 64px 24px; }
  .process { padding: 64px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-right: 0; padding-bottom: 32px; margin-bottom: 32px; }
  .step:last-child { border-bottom: none; margin-bottom: 0; }
  .closing { padding: 72px 24px; }
  .footer { padding: 40px 24px; }
}