:root {
  --bg: #F7F4EE;
  --bg-alt: #EDE8DE;
  --fg: #1C1A17;
  --fg-muted: #6B6358;
  --accent: #C8854A;
  --accent-light: #E8C9A4;
  --forest: #2D3B28;
  --cream: #F7F4EE;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  font-weight: 600;
}

em { font-style: italic; }

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid rgba(45,59,40,0.08);
}

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

.nav-tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.nav-cart {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  margin-left: 8px;
  color: var(--forest);
  transition: color 0.2s;
}
.nav-cart:hover { color: var(--accent); }

.cart-badge {
  position: absolute;
  top: 2px;
  right: 4px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
}

/* HERO */
.hero {
  padding: 80px 60px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,133,74,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(44px, 5vw, 72px);
  color: var(--forest);
  margin-bottom: 28px;
  line-height: 1.1;
}

.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--accent-light);
  color: var(--accent);
  border-radius: 2px;
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.soap-orb-container {
  position: relative;
  width: 360px;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.soap-orb {
  border-radius: 50%;
  position: absolute;
  box-shadow: 0 20px 60px rgba(44,59,40,0.15);
}

.soap-orb-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #E8C9A4 0%, #C8854A 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.soap-orb-2 {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #D4B896 0%, #B8864F 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  z-index: 2;
  opacity: 0.6;
}

.soap-orb-3 {
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, #EDE8DE 0%, #D4B896 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(30deg);
  z-index: 1;
  opacity: 0.4;
}

.soap-tag {
  position: absolute;
  bottom: 30px;
  right: -10px;
  background: var(--forest);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  font-weight: 500;
  z-index: 4;
}

/* INGREDIENTS */
.ingredients {
  background: var(--bg-alt);
  padding: 100px 60px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-headline {
  font-size: clamp(36px, 4vw, 56px);
  color: var(--forest);
  margin-bottom: 60px;
  line-height: 1.15;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.ingredient-card {
  background: var(--cream);
  padding: 36px 28px;
  border: 1px solid rgba(200,133,74,0.15);
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,59,40,0.1);
}

.ingredient-icon {
  margin-bottom: 20px;
}

.ingredient-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 12px;
}

.ingredient-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* CRAFT */
.craft {
  background: var(--forest);
  color: #fff;
  padding: 100px 60px;
}

.craft-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: center;
}

.craft-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.craft-stat-block {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.craft-stat-block:first-child {
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: var(--accent-light);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.craft-divider { display: none; }

.craft-right .section-label {
  color: var(--accent-light);
}

.craft-right .section-headline {
  color: #fff;
}

.craft-body {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 20px;
}

.craft-quote {
  margin-top: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}

.craft-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--bg);
  padding: 100px 60px;
  overflow: hidden;
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.closing-visual {
  display: flex;
  justify-content: center;
}

.closing-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 30px 80px rgba(200,133,74,0.3);
  position: relative;
}

.closing-inner-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  position: absolute;
}

.closing-label {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-style: italic;
  line-height: 1.4;
  z-index: 1;
}

.closing-headline {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--forest);
  margin-bottom: 28px;
  line-height: 1.15;
}

.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* FOOTER */
.footer {
  background: var(--bg-alt);
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(44,59,40,0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--forest);
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col p:hover {
  color: var(--forest);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(44,59,40,0.08);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner,
  .closing-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .craft-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .craft-left {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  
  .craft-stat-block {
    flex: 1;
    min-width: 100px;
    padding: 20px 20px;
  }
  
  .nav { padding: 20px 30px; }
  .hero { padding: 60px 30px 80px; }
  .ingredients { padding: 80px 30px; }
  .craft { padding: 80px 30px; }
  .closing { padding: 80px 30px; }
  .footer { padding: 60px 30px 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { gap: 40px; }
  .hero-visual { order: -1; }
  .soap-orb-container { width: 240px; height: 240px; }
  .closing-circle { width: 220px; height: 220px; }
  .closing-inner-ring { width: 160px; height: 160px; }
}

@media (max-width: 500px) {
  .ingredients-grid { grid-template-columns: 1fr; }
  .nav-tag { display: none; }
  .soap-orb-container { width: 200px; height: 200px; }
  .soap-orb-1 { width: 130px; height: 130px; }
  .soap-orb-2 { width: 190px; height: 190px; }
  .soap-orb-3 { width: 240px; height: 240px; }
}

/* NAV LINKS */
.nav-links { display: flex; gap: 28px; }
.nav-link { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--forest); }

/* FOOTER LINKS */
.footer-col a { color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--forest); }

/* ===== ABOUT PAGE ===== */
.about-hero { padding: 80px 60px 100px; background: var(--bg); position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; top: -60px; left: -60px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,133,74,0.1) 0%, transparent 70%); pointer-events: none; }
.about-hero-inner { max-width: 800px; margin: 0 auto; }
.about-headline { font-size: clamp(44px, 5vw, 72px); color: var(--forest); margin-bottom: 28px; line-height: 1.1; }
.about-hero-lede { font-size: 18px; color: var(--fg-muted); line-height: 1.75; max-width: 560px; }

.about-story { background: var(--bg); padding: 0 60px 100px; }
.about-section-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-section-headline { font-size: clamp(32px, 3.5vw, 48px); color: var(--forest); margin-bottom: 28px; line-height: 1.2; }
.about-body { font-size: 16px; color: var(--fg-muted); line-height: 1.8; margin-bottom: 16px; }
.about-intro { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 48px; max-width: 600px; }

.about-story-visual { position: relative; width: 320px; height: 320px; display: flex; justify-content: center; align-items: center; }
.about-circle { border-radius: 50%; position: absolute; }
.about-circle-1 { width: 260px; height: 260px; background: linear-gradient(135deg, #E8C9A4 0%, #C8854A 100%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3; }
.about-circle-2 { width: 300px; height: 300px; background: linear-gradient(135deg, #D4B896 0%, #B8864F 100%); top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(20deg); z-index: 2; opacity: 0.5; }
.about-circle-3 { width: 320px; height: 320px; background: linear-gradient(135deg, #EDE8DE 0%, #D4B896 100%); top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(35deg); z-index: 1; opacity: 0.35; }

.about-ingredients { background: var(--bg-alt); padding: 100px 60px; }
.about-ingredients-inner { max-width: 1200px; margin: 0 auto; }
.about-ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.about-ingredient-card { background: var(--cream); padding: 32px 24px; border: 1px solid rgba(200,133,74,0.15); border-radius: 2px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.about-ingredient-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,59,40,0.1); }
.about-ingredient-icon { margin-bottom: 16px; }
.about-ingredient-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--forest); margin-bottom: 10px; }
.about-ingredient-card p { font-size: 13px; color: var(--fg-muted); line-height: 1.7; }

.about-promise { background: var(--forest); padding: 100px 60px; }
.about-promise-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.about-promise-quote { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3vw, 34px); color: #fff; line-height: 1.5; font-style: italic; margin: 32px 0 40px; }
.about-promise-badges { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.badge-dark { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; padding: 8px 18px; border: 1px solid rgba(232,201,164,0.4); color: var(--accent-light); border-radius: 2px; }

.about-cta { background: var(--bg); padding: 100px 60px; text-align: center; }
.about-cta-inner { max-width: 600px; margin: 0 auto; }
.about-cta-headline { font-size: clamp(32px, 4vw, 52px); color: var(--forest); margin-bottom: 20px; line-height: 1.15; }
.about-cta .about-body { margin-bottom: 36px; }

.btn { display: inline-block; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; padding: 14px 32px; border-radius: 2px; cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: #3a4f36; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(44,59,40,0.2); }
.btn-full { width: 100%; }

/* ===== CONTACT PAGE ===== */
.contact-hero { padding: 80px 60px 80px; background: var(--bg); position: relative; overflow: hidden; }
.contact-hero::before { content: ''; position: absolute; bottom: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,133,74,0.1) 0%, transparent 70%); pointer-events: none; }
.contact-hero-inner { max-width: 700px; margin: 0 auto; }
.contact-headline { font-size: clamp(44px, 5vw, 72px); color: var(--forest); margin-bottom: 24px; line-height: 1.1; }
.contact-lede { font-size: 17px; color: var(--fg-muted); line-height: 1.75; }

.contact-main { background: var(--bg-alt); padding: 0 60px 100px; }
.contact-main-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 360px; gap: 80px; align-items: start; }

.contact-form-wrap { background: var(--cream); padding: 48px; border: 1px solid rgba(200,133,74,0.15); border-radius: 2px; }
.contact-form-title { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--forest); margin-bottom: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg); border: 1px solid rgba(44,59,40,0.15); border-radius: 2px; padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--fg); transition: border-color 0.2s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group input.input-error, .form-group select.input-error, .form-group textarea.input-error { border-color: #c0392b; }
.form-group textarea { resize: vertical; }
.form-error { font-size: 12px; color: #c0392b; min-height: 16px; }
.form-success { display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: rgba(45,59,40,0.06); border: 1px solid rgba(45,59,40,0.15); border-radius: 2px; font-size: 14px; color: var(--forest); }
.form-error-global { padding: 12px 16px; background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.2); border-radius: 2px; font-size: 14px; color: #c0392b; }

.wholesale-note { margin-top: 28px; padding: 20px 24px; background: var(--bg-alt); border-left: 3px solid var(--accent); display: flex; gap: 14px; align-items: flex-start; }
.wholesale-note-icon { flex-shrink: 0; margin-top: 2px; }
.wholesale-note p { font-size: 13px; color: var(--fg-muted); line-height: 1.65; }

.contact-sidebar { display: flex; flex-direction: column; gap: 24px; padding-top: 8px; }
.contact-info-card, .contact-social-card { background: var(--cream); padding: 32px; border: 1px solid rgba(200,133,74,0.15); border-radius: 2px; }
.contact-info-title { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--forest); margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { flex-shrink: 0; margin-top: 2px; }
.contact-info-label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; margin-bottom: 2px; }
.contact-info-value { font-size: 14px; color: var(--fg); }
a.contact-info-value { text-decoration: none; color: var(--accent); }
a.contact-info-value:hover { text-decoration: underline; }
.contact-social-links { display: flex; flex-direction: column; gap: 12px; }
.social-link { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.social-link:hover { color: var(--forest); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-hero, .about-story, .about-ingredients, .about-promise, .about-cta, .contact-hero, .contact-main { padding-left: 30px; padding-right: 30px; }
  .about-section-inner, .contact-main-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .about-story-visual { margin: 0 auto; }
  .about-promise-badges { gap: 12px; }
  .contact-form-wrap { padding: 32px 24px; }
}

@media (max-width: 500px) {
  .about-ingredients-grid { grid-template-columns: 1fr; }
  .about-promise-badges { flex-direction: column; align-items: center; }
  .nav-links { display: none; }
}