/* Warm-editorial theme — organic-skincare founder aesthetic.
   Cream ground, sage + terracotta accents, serif display headings. */

:root {
  --cream: #faf6f0;
  --cream-2: #f2ebe0;
  --ink: #2e2a26;
  --ink-soft: #5a534a;
  --sage: #6f8262;
  --sage-deep: #566450;
  --terracotta: #b5673f;
  --terracotta-soft: #c7815b;
  --line: #e4dccf;
  --maxw: 720px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--sage-deep); text-decoration: underline; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; z-index: 10; }

/* ---------- Hero ---------- */
.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 88px 24px 56px;
  flex-wrap: wrap;
}
.portrait {
  width: 300px;
  height: auto;
  max-width: 42vw;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(86, 100, 80, 0.24);
  border: 6px solid #fff;
  flex: 0 0 auto;
}
.hero-text { flex: 1 1 300px; min-width: 260px; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin: 0 0 12px;
}
.hero-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.02;
  margin: 0 0 14px;
  color: var(--ink);
}
.tagline {
  font-size: 1.2rem;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 34ch;
}
.hero-cta { margin-top: 22px; }
.hero-cta a {
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: underline;
  text-decoration-color: var(--terracotta-soft);
  text-underline-offset: 4px;
}
.hero-cta a::after {
  content: " →";
  text-decoration: none;
}
.hero-cta a:hover { color: var(--sage-deep); text-decoration-color: currentColor; }

/* ---------- Prose ---------- */
.prose {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 24px 40px;
}
.qa { margin: 0 0 8px; }
.qa p { margin: 0 0 30px; color: var(--ink-soft); }

.qa h1, .qa h2, .qa h3, .qa h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--sage-deep);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.qa h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.5rem);
  font-weight: 700;
  padding-top: 8px;
}
.qa.lvl-2 { margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line); }
.qa h2 { font-size: 1.6rem; font-weight: 700; }
.qa h3 { font-size: 1.28rem; font-weight: 600; margin-top: 30px; }
.qa h4 { font-size: 1.05rem; font-weight: 600; margin-top: 26px; }

/* ---------- Connect ---------- */
.connect {
  margin-top: 56px;
  padding: 40px;
  background: var(--cream-2);
  border-radius: 18px;
}
.connect > h2 {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--sage-deep);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.connect-group { margin-top: 22px; }
.connect-group h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--sage-deep);
  margin: 0 0 12px;
}
.links {
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: 2;
}
.links li { display: inline; }
.links li:not(:last-child)::after {
  content: " · ";
  color: var(--ink-soft);
  opacity: 0.6;
}
.links a {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
}
.links a:hover {
  color: var(--sage-deep);
  text-decoration-color: currentColor;
}

/* ---------- Footer ---------- */
.site-footer {
  max-width: var(--maxw);
  margin: 40px auto 0;
  padding: 30px 24px 70px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .hero { padding-top: 56px; gap: 28px; justify-content: center; text-align: center; }
  .hero-text { text-align: center; }
  .tagline { margin-left: auto; margin-right: auto; }
  .connect { padding: 28px 22px; }
}
