:root {
  --bg: #FAF7F2;
  --bg-warm: #F3EDE4;
  --bg-accent: #E8DFD1;
  --fg: #2C2420;
  --fg-muted: #7A6E64;
  --fg-light: #A69A8E;
  --accent: #C4956A;
  --accent-dark: #A67B52;
  --accent-light: #E4C9A8;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;
  --max-width: 1200px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

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

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

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

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bg-accent);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--fg);
}

.logo-mark {
  color: var(--accent);
  margin-right: 0.35rem;
}

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

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

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-texture {
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--accent-light) 40%, var(--bg-accent) 70%, var(--bg-warm) 100%);
  opacity: 0.4;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 10% 100%);
  z-index: 1;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: var(--space-md);
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.hero-title em {
  font-style: italic;
  color: var(--accent-dark);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--bg-accent);
  max-width: 620px;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--fg-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--bg-accent);
}

/* ---- STORY ---- */
.story {
  padding: var(--space-2xl) 2rem;
  background: var(--bg-warm);
}

.story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.story-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
}

.story-right p {
  color: var(--fg-muted);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

.story-right p:last-child {
  margin-bottom: 0;
}

/* ---- FEATURES ---- */
.features {
  padding: var(--space-2xl) 2rem;
}

.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-header {
  margin-bottom: var(--space-xl);
}

.features-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-dark);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-md);
  background: var(--white);
  border: 1px solid var(--bg-accent);
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 36, 32, 0.06);
}

.feature-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- MATERIALS ---- */
.materials {
  padding: var(--space-2xl) 2rem;
  background: var(--fg);
  color: var(--bg);
}

.materials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.material-block {
  text-align: center;
}

.material-swatch {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  margin-bottom: var(--space-sm);
}

.swatch-linen {
  background: linear-gradient(145deg, #D4C5A9 0%, #C2B08A 30%, #E0D4BC 60%, #CFC0A2 100%);
  background-size: 200% 200%;
}

.swatch-cotton {
  background: linear-gradient(145deg, #F0EAE0 0%, #E6DDD0 30%, #F5F0E8 60%, #EDE4D8 100%);
}

.swatch-blend {
  background: linear-gradient(145deg, #B8ADA0 0%, #A69888 30%, #C4BAB0 60%, #B0A494 100%);
}

.swatch-smart {
  background: linear-gradient(145deg, #3D3832 0%, #524B44 30%, #2C2622 60%, #4A433C 100%);
  position: relative;
}

.swatch-smart::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border: 2px solid var(--accent-light);
  border-radius: 50%;
}

.material-block h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--bg);
}

.material-block p {
  font-size: 0.85rem;
  color: var(--fg-light);
  line-height: 1.5;
}

.materials-note {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(250, 247, 242, 0.1);
}

.materials-note p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent-light);
}

/* ---- CLOSING ---- */
.closing {
  padding: var(--space-2xl) 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  color: var(--fg);
}

.closing-text {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.footer {
  padding: var(--space-lg) 2rem;
  border-top: 1px solid var(--bg-accent);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-brand {
  font-weight: 600;
  font-size: 1rem;
}

.footer-detail {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-links {
  font-size: 0.85rem;
  color: var(--fg-light);
}

/* ---- NAV CTA ---- */
.nav-cta-btn {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ---- HERO CTA ---- */
.hero-cta-btn {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 1rem 2rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
}
.hero-cta-btn:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ---- CLOSING CTA ---- */
.closing-cta {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s, transform 0.1s;
}
.closing-cta:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero {
    padding: 8rem 1.25rem 4rem;
    min-height: auto;
  }

  .hero-texture {
    width: 100%;
    right: 0;
    opacity: 0.2;
    clip-path: none;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .nav-inner {
    padding: 0.75rem 1.25rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .story, .features, .materials, .closing {
    padding: var(--space-xl) 1.25rem;
  }
}