:root {
  --bg: #F7F4EF;
  --fg: #2E2925;
  --accent: #C9897A;
  --muted: #A89585;
  --surface: #EDE8E0;
  --white: #FDFBF8;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2rem 4rem 1.5rem;
  border-bottom: 1px solid var(--surface);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

/* ── Section Label ── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  padding: 5rem 4rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 88vh;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5A524B;
  max-width: 42ch;
  margin-bottom: 0;
}
.hero-image-wrap {
  width: 100%;
}
.hero-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--surface);
  padding: 6rem 4rem;
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--fg);
  margin-bottom: 0.8rem;
}
.manifesto-attribution {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}
.manifesto-body p {
  font-size: 1rem;
  line-height: 1.9;
  color: #5A524B;
  margin-bottom: 1.5rem;
}
.manifesto-body p strong {
  color: var(--fg);
  font-weight: 500;
}
.manifesto-body p em {
  font-style: italic;
  color: var(--accent);
}

/* ── Softness ── */
.softness {
  padding: 6rem 4rem;
}
.softness-header {
  margin-bottom: 4rem;
}
.softness-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg);
}
.softness-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
}
.softness-card-image {
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 2px;
}
.softness-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.softness-card:hover .softness-img {
  transform: scale(1.03);
}
.softness-card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.softness-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: var(--fg);
}
.softness-card-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: #5A524B;
}

/* ── Products ── */
.products {
  background: var(--surface);
  padding: 6rem 4rem;
}
.products-header {
  margin-bottom: 4rem;
}
.products-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--fg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--surface);
  border: 1px solid var(--surface);
}
.product-item {
  background: var(--bg);
  padding: 2.5rem 2rem;
}
.product-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.product-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--fg);
}
.product-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: #5A524B;
}

/* ── Closing ── */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 8rem 4rem;
  text-align: center;
}
.closing-inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--bg);
}
.closing-body {
  font-size: 1rem;
  line-height: 1.9;
  color: #C4BAB2;
  margin-bottom: 3rem;
}
.closing-body em {
  color: var(--accent);
  font-style: italic;
}
.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* ── Footer ── */
.footer {
  background: #252220;
  color: #9E9388;
  padding: 3rem 4rem 2.5rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--bg);
  margin-bottom: 1rem;
}
.footer-copy {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 40ch;
  margin: 0 auto 1.5rem;
  color: #7A7066;
}
.footer-links {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4A4440;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 1.5rem 1.5rem 1rem; }
  .hero {
    padding: 3rem 1.5rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    min-height: auto;
  }
  .manifesto, .softness, .products { padding: 4rem 1.5rem; }
  .softness-grid { grid-template-columns: 1fr; gap: 2rem; }
  .products-grid { grid-template-columns: 1fr; }
  .closing { padding: 5rem 1.5rem; }
  .footer { padding: 2.5rem 1.5rem 2rem; }
}