:root {
  --bg: #0D0D0F;
  --surface: #161618;
  --gold: #C9A96E;
  --gold-dim: #8A7347;
  --cream: #F5F0E8;
  --muted: #8A8680;
  --deep: #1A1518;
  --border: rgba(201,169,110,0.12);
}

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

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.nav__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 3rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.06) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  max-width: 900px;
  z-index: 1;
}

.hero__eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hero__stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--cream);
}

.hero__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Manifesto */
.manifesto {
  background: var(--deep);
  padding: 6rem 3rem;
}

.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
}

.manifesto__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2rem;
}

.manifesto__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 2.5rem;
  white-space: pre-line;
}

.manifesto__body {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-line;
}

/* Products */
.products {
  padding: 6rem 3rem;
}

.products__header {
  margin-bottom: 3.5rem;
}

.products__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.products__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.2;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.products__card {
  background: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.products__icon {
  color: var(--gold);
  width: 32px;
  height: 32px;
}

.products__card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cream);
}

.products__card-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  flex-grow: 1;
}

.products__card-price {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}

/* Aesthetic */
.aesthetic {
  padding: 6rem 3rem;
  background: var(--surface);
}

.aesthetic__header {
  margin-bottom: 3rem;
}

.aesthetic__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.aesthetic__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.2;
}

.aesthetic__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 4rem;
}

.aesthetic__block {
  height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.aesthetic__block--dark {
  background: #0D0D0F;
}

.aesthetic__block--gold {
  background: #C9A96E;
}

.aesthetic__block--cream {
  background: #F5F0E8;
}

.aesthetic__block--deep {
  background: #1A1518;
}

.aesthetic__block-text {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.aesthetic__block--dark .aesthetic__block-text { color: var(--gold); }
.aesthetic__block--gold .aesthetic__block-text { color: #0D0D0F; }
.aesthetic__block--cream .aesthetic__block-text { color: var(--deep); }
.aesthetic__block--deep .aesthetic__block-text { color: var(--muted); }

.aesthetic__quote {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.aesthetic__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  font-weight: 300;
  color: var(--muted);
}

/* Closing */
.closing {
  padding: 8rem 3rem;
  text-align: center;
}

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

.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.closing__sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  white-space: pre-line;
  margin-bottom: 2.5rem;
}

.closing__rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.closing__fine {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

/* Footer */
.footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer__copy {
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.6;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 1.5rem 1.5rem; }
  .hero { padding: 4rem 1.5rem 3rem; min-height: auto; }
  .manifesto { padding: 4rem 1.5rem; }
  .products { padding: 4rem 1.5rem; }
  .aesthetic { padding: 4rem 1.5rem; }
  .aesthetic__grid { grid-template-columns: repeat(2, 1fr); }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .hero__stats { gap: 2rem; }
  .hero__headline { font-size: 2.8rem; }
}

@media (max-width: 480px) {
  .aesthetic__grid { grid-template-columns: 1fr 1fr; }
  .aesthetic__block { height: 160px; }
}