/* Oh Naturel — 100% Natural Handmade Vegan Skincare.
   Design: soft eucalyptus + oat/clay palette, minimal and airy.
   Humanist sans body, geometric display for headings. Deliberately
   distinct from sibling sites (no mauve, no gold, no slate-blue). */

:root {
  --bg:       #f7f4ef;        /* warm oat cream */
  --bg-soft:  #eee6d8;        /* oat/clay */
  --ink:      #2d3328;        /* deep forest */
  --muted:    #6a7a65;        /* sage muted */
  --primary:  #7d9b86;        /* eucalyptus green */
  --accent:   #a0855b;        /* warm clay */
  --line:     #ddd5c5;
  --border:   #ddd5c5;
  --card:     #ffffff;
  --maxw:     1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Gill Sans", "Gill Sans MT", "Trebuchet MS", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: Optima, "Optima Nova LT", Candara, "Noto Serif", Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.015em;
}

a { color: var(--primary); }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 16px;
}

/* ---- Header ---- */
header {
  background: rgba(247,244,239,.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Optima, Candara, Georgia, serif;
  font-size: 1.38rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.brand-icon { width: 26px; height: 26px; flex-shrink: 0; color: var(--primary); }
.brand-icon path, .brand-icon circle, .brand-icon line { vector-effect: non-scaling-stroke; }
.brand:hover .brand-icon { color: var(--accent); transition: color 0.15s ease; }

.nav-links { display: flex; gap: 26px; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--primary); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(170deg, var(--bg-soft) 0%, var(--bg) 65%);
  text-align: center;
  padding: 88px 26px 68px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.45;
}
.hero h1 {
  font-size: 3rem;
  max-width: 18ch;
  margin: 0 auto 22px;
  font-weight: 500;
}
.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 30px;
}
.hero .btn { margin: 0 5px 8px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 2px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: background .15s, transform .15s;
}
.btn:hover { background: #6b8872; transform: translateY(-1px); color: #fff; }
.btn-soft { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-soft:hover { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ---- Sections ---- */
section { padding: 66px 0; }
section.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 60ch; margin: 0 auto 44px; }
section h2 { font-size: 2.05rem; margin-bottom: 14px; }
section p { color: var(--muted); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split.reverse .ph { order: 2; }
.ph {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(45,51,40,.14);
}
.ph::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,.45);
  pointer-events: none;
  border-radius: 2px;
}
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Card grid ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .16s, box-shadow .16s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(45,51,40,.11); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 22px 24px 26px; }
.pill {
  display: inline-block;
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid color-mix(in srgb, var(--primary) 38%, transparent);
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.card p { font-size: 0.94rem; margin: 0; color: var(--muted); }

/* ---- Ingredient grid ---- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ingred-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px 28px;
}
.ingred-card h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 8px; }
.ingred-card p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* ---- Prose ---- */
.prose { max-width: 68ch; margin: 0 auto; }
.prose h2 { font-size: 1.78rem; margin: 46px 0 12px; }
.prose h3 { font-size: 1.22rem; margin: 30px 0 8px; }
.prose p, .prose li { color: #4a5645; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.note {
  background: color-mix(in srgb, var(--primary) 8%, var(--bg));
  border: 1px solid var(--line);
  border-left: 3px solid var(--primary);
  border-radius: 3px;
  padding: 20px 24px;
  margin: 28px 0;
}
.note p { margin: 0; color: var(--ink); }
.pull {
  font-family: Optima, Candara, Georgia, serif;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--primary);
  text-align: center;
  max-width: 34ch;
  margin: 42px auto;
}

/* ---- Avoid table ---- */
.avoids { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; list-style: none; padding: 0; }
.avoids li {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 6px 14px;
  color: var(--accent);
}

/* ---- CTA ---- */
.cta { background: var(--ink); color: #dce8dd; text-align: center; padding: 72px 26px; }
.cta h2 { font-size: 2rem; margin-bottom: 12px; color: #f0f4f0; }
.cta p { color: #a5baa6; max-width: 52ch; margin: 0 auto 26px; }
.cta .btn-soft { color: color-mix(in srgb, var(--accent) 80%, #fff); border-color: color-mix(in srgb, var(--accent) 60%, transparent); }

/* ---- Footer ---- */
footer {
  background: var(--ink);
  color: #a5baa6;
  padding: 52px 0 28px;
  border-top: 1px solid rgba(125,155,134,.22);
}
.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 38px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(125,155,134,.18);
}
.footer-grid h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-grid a, .footer-grid p {
  font-size: 14px;
  color: #8aaa8e;
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  line-height: 1.5;
}
.footer-grid a:hover { color: var(--primary); }
.footer-meta {
  font-size: 13px;
  color: #6a7a65;
  text-align: center;
  margin: 0;
  padding: 0 26px;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .ph { order: 0; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
}
@media (max-width: 540px) {
  .grid-3 { grid-template-columns: 1fr; }
  nav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero h1 { font-size: 1.95rem; }
}
