:root {
  --bg: #fffaf7;
  --surface: #ffffff;
  --surface-soft: #fff4ec;
  --text: #2b2320;
  --muted: #6f625c;
  --line: #eadfd7;
  --primary: #aa6d54;
  --primary-dark: #87523d;
  --secondary: #e9d2bf;
  --accent: #d0b18c;
  --shadow: 0 18px 50px rgba(63, 35, 21, 0.08);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 88px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section h2, .hero h1, .quote-box h3, .scripture-card h3 {
  font-family: 'Playfair Display', serif;
}
.section h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; margin: 0; }
.topbar {
  background: #2c1f1b;
  color: #f6ece7;
  text-align: center;
  padding: 10px 14px;
  font-size: .9rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,250,247,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234,223,215,.65);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 80px; gap: 20px; }
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
}
.logo span { color: var(--primary); }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--muted); font-weight: 600; }
.nav a:hover { color: var(--text); }
.nav-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
}
.hero { padding: 88px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .96;
  margin: 0 0 18px;
}
.lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 640px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--surface); border: 1px solid var(--line); }
.scripture-card {
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 580px;
}
.scripture-card h3 { margin: 0 0 10px; font-size: 1.55rem; }
.scripture-card p { margin: 0; color: var(--muted); line-height: 1.7; }
.card-stack { position: relative; min-height: 560px; }
.visual-card {
  position: absolute;
  border-radius: 32px;
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow);
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.card-a { inset: 0 14% auto 0; background: linear-gradient(135deg, #d6b08d, #ad745f); }
.card-b { inset: 170px 0 auto 18%; background: linear-gradient(135deg, #e8c4bc, #c68f86); }
.card-c { inset: 355px 10% auto 6%; background: linear-gradient(135deg, #4e352d, #8c5d4b); }
.tag {
  align-self: start;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: auto;
  font-size: .8rem;
}
.visual-card h3 { margin: 0 0 6px; font-size: 1.6rem; font-family: 'Playfair Display', serif; }
.visual-card p { margin: 0; opacity: .92; }
.stats { padding-top: 16px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat strong { display: block; font-size: 2rem; margin-bottom: 8px; }
.stat span { color: var(--muted); }
.collection-grid, .testimonial-grid, .quote-grid, .contact-grid, .about-grid, .newsletter-wrap {
  display: grid;
  gap: 22px;
}
.collection-grid { grid-template-columns: repeat(3, 1fr); }
.collection-card {
  min-height: 270px;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow);
}
.soft-peach { background: linear-gradient(180deg, #fff0e8, #ffe2d0); }
.soft-blue { background: linear-gradient(180deg, #eef4f8, #d9e8f2); }
.soft-gold { background: linear-gradient(180deg, #fcf3e6, #f1dfbe); }
.collection-card h3 { margin: 6px 0 12px; font-size: 1.8rem; font-family: 'Playfair Display', serif; }
.collection-card p { color: rgba(43,35,32,.8); line-height: 1.7; }
.collection-card a, .text-link { font-weight: 700; color: var(--primary-dark); }
.mini { text-transform: uppercase; font-size: .78rem; letter-spacing: .12em; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: var(--surface);
  border-radius: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.product-image { border-radius: 22px; height: 250px; margin-bottom: 18px; }
.gradient-1 { background: linear-gradient(135deg, #e8d1c9, #c17f63); }
.gradient-2 { background: linear-gradient(135deg, #efd9bf, #d39f72); }
.gradient-3 { background: linear-gradient(135deg, #edd5d9, #be8a95); }
.gradient-4 { background: linear-gradient(135deg, #d7e4ea, #92a9b4); }
.gradient-5 { background: linear-gradient(135deg, #f3e7d5, #cdb08b); }
.gradient-6 { background: linear-gradient(135deg, #ddd4f0, #9786bf); }
.product-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.product-card p { margin: 0 0 16px; color: var(--muted); line-height: 1.6; }
.product-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.product-row span { font-weight: 800; }
.product-row a { color: var(--primary); font-weight: 700; }
.quote-band { padding-top: 30px; }
.quote-grid { grid-template-columns: repeat(3, 1fr); }
.quote-box {
  background: #fff2e8;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}
.quote-box.dark { background: #2d1f1b; color: #fff; border-color: transparent; }
.quote-box.accent { background: linear-gradient(135deg, #f0dcc7, #e7c4a8); }
.quote-box h3 { margin: 0 0 12px; font-size: 1.8rem; }
.quote-box p { margin: 0; line-height: 1.75; }
.about-grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
.feature-list { padding-left: 18px; color: var(--muted); line-height: 1.9; }
.about-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.panel-box {
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, #fffaf7, #fff1e6);
  border: 1px solid var(--line);
}
.panel-box span { color: var(--primary); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; }
.panel-box h3 { margin: 10px 0 0; font-size: 1.2rem; line-height: 1.5; }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.testimonial-card p { margin: 0 0 20px; line-height: 1.8; color: var(--muted); }
.newsletter-wrap {
  grid-template-columns: 1fr .95fr;
  align-items: center;
  background: linear-gradient(135deg, #fbefe6, #f8e0d0);
  border-radius: 34px;
  padding: 38px;
}
.newsletter-form, .contact-form {
  display: grid;
  gap: 14px;
}
.newsletter-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  background: rgba(255,255,255,.92);
}
.contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.contact-cards { display: grid; gap: 14px; margin-top: 24px; }
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.contact-card strong { display: block; margin-bottom: 6px; }
.contact-card span { color: var(--muted); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.site-footer {
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  background: #fff9f5;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo { display: inline-block; margin-bottom: 10px; }
.footer-wrap p { margin: 0; color: var(--muted); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .hero-grid, .about-grid, .newsletter-wrap, .contact-grid,
  .collection-grid, .product-grid, .testimonial-grid, .quote-grid, .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .card-stack { min-height: 620px; }
}

@media (max-width: 768px) {
  .menu-toggle { display: inline-block; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    background: rgba(255,250,247,.98);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .hero-grid, .about-grid, .newsletter-wrap, .contact-grid,
  .collection-grid, .product-grid, .testimonial-grid, .quote-grid, .stat-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 68px 0; }
  .hero { padding-top: 54px; }
  .hero h1 { line-height: 1; }
  .card-stack { min-height: auto; display: grid; gap: 16px; }
  .visual-card { position: relative; inset: auto; min-height: 180px; }
  .section-head.split, .footer-wrap { flex-direction: column; align-items: flex-start; }
}
