:root {
  --ink: #042e3a;
  --ink-soft: #1b1f28;
  --cream: #fbf6ec;
  --peach: #f2e1d7;
  --sage: #e4efe7;
  --muted: #826e63;
  --line: #e7e0d6;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Top bar ---------- */
.promo {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  padding: 12px 16px;
  font-weight: 600;
}
.promo a { text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  background: #fff;
  padding: 24px 24px 12px;
  text-align: center;
  border-bottom: 1px solid #f0eee9;
}
.brand {
  display: inline-block;
  line-height: 0;
}
.brand img {
  height: 64px;
  width: auto;
  display: block;
}
.nav {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.nav a { color: var(--ink); transition: opacity .2s; }
.nav a:hover, .nav a.active { opacity: .55; }

/* ---------- Sections ---------- */
section { padding: 80px 24px; }
.section-cream { background: var(--cream); }
.section-sage { background: var(--sage); }
.section-peach { background: var(--peach); }
.container { max-width: 1200px; margin: 0 auto; }
.center { text-align: center; }

h1, h2, h3 { font-family: "Helvetica Neue", Arial, sans-serif; color: var(--ink); margin: 0 0 16px; line-height: 1.1; }
h1 { font-size: clamp(40px, 6vw, 84px); font-weight: 700; }
h2 { font-size: clamp(34px, 4.5vw, 56px); font-weight: 700; }
h3 { font-size: 24px; font-weight: 700; }
.eyebrow { font-size: 14px; letter-spacing: 0.18em; font-weight: 700; text-transform: uppercase; }
.lede { font-family: "Times New Roman", Times, serif; font-size: clamp(20px, 2.2vw, 30px); color: var(--ink); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--peach);
  color: var(--ink);
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: transform .15s, background .2s;
  text-transform: none;
}
.btn:hover { background: #e9d2c2; transform: translateY(-1px); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: #073544; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1ebe5b; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: #2c2c2c center/cover no-repeat;
  padding: 80px 24px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.18), rgba(0,0,0,.18));
}
.hero > .hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero h1 { color: #fff; }
.hero p { font-family: "Times New Roman", Times, serif; font-size: clamp(20px, 2.2vw, 28px); margin: 8px 0 28px; }

/* ---------- Bestsellers / Product grid ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 36px 24px;
  margin-top: 40px;
}
.product-card { display: block; color: var(--ink); }
.product-card .img-wrap {
  position: relative;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
}
.product-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .img-wrap img { transform: scale(1.04); }
.ribbon {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  padding: 6px 10px;
  letter-spacing: 0.06em;
  border-radius: 2px;
  z-index: 1;
}
.product-card .name { margin-top: 14px; font-size: 18px; font-weight: 500; }
.product-card .price { color: var(--muted); font-size: 14px; margin-top: 4px; }

/* ---------- Feature row (Hair health starts here) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-row .features-list { display: grid; gap: 22px; }
.feature-row .features-list h4 { margin: 0; font-size: 22px; font-weight: 700; }
.feature-row .features-list p { margin: 4px 0 0; font-size: 15px; line-height: 1.5; }

.hair-health {
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  background-color: #fff;
  min-height: 600px;
  padding: 80px 24px;
  display: flex;
  align-items: center;
}
.hair-health-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hair-health-text { grid-column: 2; }
.hair-health-text h2 { margin-bottom: 28px; }
.hair-health-text .features-list { display: grid; gap: 22px; }
.hair-health-text .features-list h4 { margin: 0; font-size: 22px; font-weight: 700; }
.hair-health-text .features-list p { margin: 4px 0 0; font-size: 15px; line-height: 1.5; }

@media (max-width: 800px) {
  .hair-health {
    background-size: 100% auto;
    background-position: top center;
    padding-top: 60vw;
    min-height: 0;
  }
  .hair-health-inner { grid-template-columns: 1fr; }
  .hair-health-text { grid-column: 1; }
}

/* ---------- Three column icon row ---------- */
.icon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-top: 48px;
}
.icon-row .icon-cell img { margin: 0 auto 16px; max-width: 110px; }
.icon-row p { margin: 0; font-size: 15px; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: #fff;
  max-width: 720px;
  margin: 40px auto 0;
  padding: 56px 48px;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.testimonial .who {
  font-size: 14px; letter-spacing: 0.18em; font-weight: 700;
  margin-bottom: 22px;
}
.testimonial .quote { font-size: 16px; line-height: 1.6; }
.testimonial .qmark { font-size: 56px; color: var(--ink); margin-top: 10px; font-family: Georgia, serif; line-height: 0.6; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 40px 24px;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.footer a { color: var(--cream); }
.footer .copy { margin-bottom: 10px; letter-spacing: 0.18em; font-size: 13px; }
.footer .links a { margin: 0 8px; }
.footer .socials { margin-top: 14px; display: flex; gap: 14px; justify-content: center; }
.footer .socials a { display: inline-flex; color: var(--cream); }
.footer .socials svg { width: 22px; height: 22px; fill: currentColor; }

/* ---------- Product detail page ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.product-detail .gallery img { width: 100%; }
.product-detail .meta h1 { font-size: 38px; font-weight: 600; line-height: 1.1; margin-bottom: 14px; }
.product-detail .meta .price { font-size: 22px; margin: 0 0 24px; }
.product-detail .meta .blurb { font-size: 15px; line-height: 1.6; margin: 18px 0 28px; }
.product-detail .meta details { border-top: 1px solid var(--line); padding: 14px 0; }
.product-detail .meta details summary { cursor: pointer; font-weight: 700; font-size: 15px; list-style: none; display: flex; justify-content: space-between; }
.product-detail .meta details summary::after { content: "+"; font-size: 22px; line-height: 0.8; }
.product-detail .meta details[open] summary::after { content: "−"; }
.product-detail .meta details .content { padding: 12px 0 4px; font-size: 14px; line-height: 1.6; }
.product-detail .meta details .content ul { padding-left: 18px; }
.crumbs { font-size: 14px; color: var(--muted); padding: 24px 24px 0; max-width: 1200px; margin: 0 auto; }
.crumbs a { color: var(--muted); }

/* ---------- HairSmoothies (ingredients) page ---------- */
.smoothie-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.smoothie-block.alt { direction: rtl; }
.smoothie-block.alt > * { direction: ltr; }
.smoothie-block h2 { font-size: 60px; margin-bottom: 4px; }
.smoothie-block .tag { font-style: italic; font-weight: 700; font-size: 20px; margin-bottom: 18px; }
.smoothie-block ul { list-style: none; padding: 0; margin: 0 0 28px; }
.smoothie-block li { margin: 10px 0; font-size: 16px; line-height: 1.45; }
.smoothie-block li b { display: block; font-size: 18px; }
.smoothie-bg-cream { background: var(--cream); }
.smoothie-bg-peach { background: var(--peach); }
.smoothie-bg-sage { background: var(--sage); }
.smoothie-bg-violet { background: #f0e6f7; }

/* ---------- About page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-hero img { border-radius: 2px; }
.about-hero .text p { font-size: 16px; line-height: 1.65; margin: 0 0 16px; }
.about-quote {
  background: var(--cream);
  text-align: center;
  padding: 80px 24px;
}
.about-quote p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.25;
  font-weight: 400;
  max-width: 1000px;
  margin: 0 auto;
}
.about-mission {
  max-width: 800px; margin: 0 auto; padding: 60px 24px;
  font-size: 17px; line-height: 1.7;
}
.about-mission .pull { font-size: 22px; font-weight: 700; margin: 24px 0; }

/* ---------- Util ---------- */
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 24px; }
.mt-4 { margin-top: 48px; }

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  section { padding: 56px 20px; }
  .nav { gap: 22px; }
  .feature-row, .smoothie-block, .product-detail, .about-hero { grid-template-columns: 1fr; gap: 32px; }
  .smoothie-block.alt { direction: ltr; }
  .icon-row { grid-template-columns: 1fr; }
  .hero { min-height: 420px; }
}
