/* ============================================================
   Dr. Erin Wiley, ND — Brand Stylesheet
   Palette: "Sage & Clay"
   Design direction: editorial, airy, understated — inspired by
   Sézane's minimal, photography-led aesthetic. Generous
   whitespace, restrained color, quiet typography over bold UI.
   ============================================================ */

:root {
  --sage: #3F4B3B;
  --sage-deep: #2F3830;
  --clay: #B5674D;
  --rose: #D9A79C;
  --charcoal: #2B2B28;
  --oat: #F5EFE4;
  --white: #ffffff;
  --grey: #766f62;
  --line: #e9e2d3;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Jost', 'Avenir Next', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Bodoni Moda', 'Tenez', Georgia, serif;
  font-weight: 500;
  color: var(--sage);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.55em;
}

h1 { font-size: 3.3rem; font-weight: 500; }
h2 { font-size: 2.15rem; }
h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: 0; }

p { margin: 0 0 1.2em; }

a { color: var(--sage); text-decoration: none; }
a:hover { color: var(--clay); }

/* ---------- Unified photo treatment ----------
   The site currently mixes photos pulled from different shoots/sources.
   This shared filter gives them one consistent, warm, slightly muted
   color grade so they read as a single cohesive set regardless of the
   original lighting or white balance. Swap in matched photography later
   and this can be lightened or removed. */
main img {
  filter: grayscale(18%) sepia(10%) saturate(112%) contrast(102%) brightness(101%);
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--clay);
  font-weight: 500;
  margin-bottom: 1.1em;
  display: block;
}

/* ---------- Header / Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--sage);
  letter-spacing: 0.01em;
}
.logo .logo-tagline {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-top: 2px;
}
.logo-mark { flex-shrink: 0; }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  margin: 0;
  padding: 0;
  align-items: center;
}

nav.main-nav a {
  font-size: 0.78rem;
  color: var(--charcoal);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

nav.main-nav a.current,
nav.main-nav a:hover { color: var(--sage); border-bottom: 1px solid var(--clay); padding-bottom: 6px; }

/* The button-styled nav link (Book a Discovery Call) was inheriting the
   dark nav-link text color above, since "nav.main-nav a" is more specific
   than ".btn-primary" — making the label hard to read against the sage
   fill. Force it back to white in every state. */
nav.main-nav a.btn-primary,
nav.main-nav a.btn-primary:hover,
nav.main-nav a.btn-primary.current {
  color: #fff;
  border-bottom: none;
  padding: 14px 30px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: 1px solid var(--sage);
}

.btn-primary {
  background: var(--sage);
  color: #fff;
}
.btn-primary:hover { background: var(--sage-deep); border-color: var(--sage-deep); color: #fff; }

.btn-outline {
  background: transparent;
  border-color: transparent;
  color: var(--sage);
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1px solid var(--sage);
  border-radius: 0;
}
.btn-outline:hover { color: var(--clay); border-color: var(--clay); background: transparent; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: 88px 0 88px;
}
.hero img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 0;
}
.hero h1 { margin-bottom: 0.45em; }
.hero .lede {
  font-size: 1.15rem;
  color: var(--grey);
  max-width: 44ch;
  margin-bottom: 2em;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 100px 0; }
section.alt { background: var(--oat); }
section.dark {
  background: var(--sage-deep);
  color: #e9ede6;
}
section.dark h2, section.dark h3 { color: #fff; }
section.dark .eyebrow { color: var(--rose); }

.section-head {
  max-width: 620px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-head p { color: var(--grey); font-size: 1.05rem; }

/* ---------- Process grid ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 32px;
}
.process-card {
  background: transparent;
  border: none;
  border-top: 1px solid var(--line);
  padding: 26px 0 0;
}
.process-card .num {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.1rem;
  color: var(--clay);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.process-card h3 { font-size: 1.1rem; margin-bottom: 0.5em; font-weight: 600; }
.process-card p { font-size: 0.93rem; color: var(--grey); margin-bottom: 0; }

/* ---------- Focus areas ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.focus-card {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  border: none;
}
.focus-card img { width: 100%; height: 320px; object-fit: cover; display: block; }
.focus-card .body { padding: 22px 2px 0; }
.focus-card h3 { font-size: 1.1rem; font-weight: 600; }
.focus-card p { font-size: 0.93rem; color: var(--grey); margin-bottom: 0; }

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.two-col img { width: 100%; border-radius: 0; height: 500px; object-fit: cover; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ---------- Quote / positioning banner ---------- */
.positioning-banner {
  text-align: center;
  padding: 70px 0;
}
.positioning-banner blockquote {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.9rem;
  font-style: italic;
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto;
  color: var(--sage);
  line-height: 1.5;
}
.positioning-banner cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
}

/* ---------- Credential strip ---------- */
.credential-strip {
  display: flex;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--sage);
}

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--sage);
  font-family: 'Bodoni Moda', serif;
  font-size: 1.15rem;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2rem;
  color: var(--clay);
  font-family: 'Jost', sans-serif;
}
.faq details[open] summary::after { content: '\2212'; }
.faq .faq-answer { margin-top: 14px; color: var(--grey); }

/* ---------- Pricing box ---------- */
.pricing-box {
  background: transparent;
  border: none;
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  border-radius: 0;
  padding: 48px 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.pricing-box .amount {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.6rem;
  color: var(--sage);
  font-weight: 500;
  margin: 10px 0;
}
.pricing-box p.fine { font-size: 0.82rem; color: var(--grey); letter-spacing: 0.03em; }

/* ---------- Common Questions list (About page) ---------- */
.qa-item { margin-bottom: 28px; }
.qa-item h4 { color: var(--sage); font-family: 'Jost', sans-serif; font-size: 1.05rem; margin-bottom: 0.3em; }
.qa-item p { color: var(--grey); margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 100px 0;
  background: var(--oat);
}
.cta-band .eyebrow { color: var(--clay); }
.cta-band h2 { margin-bottom: 0.4em; color: var(--sage); }
.cta-band p { color: var(--grey); max-width: 500px; margin: 0 auto 34px; }
.cta-band .btn-primary { background: var(--sage); border-color: var(--sage); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-detail { margin-bottom: 26px; }
.contact-detail .label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--clay);
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}
form.contact-form { display: flex; flex-direction: column; gap: 18px; }
form.contact-form input,
form.contact-form textarea {
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: inherit;
  font-size: 1rem;
  background: transparent;
}
form.contact-form input:focus,
form.contact-form textarea:focus { outline: none; border-bottom-color: var(--sage); }
form.contact-form label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey); margin-bottom: -12px; }
form.contact-form button { align-self: flex-start; margin-top: 8px; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--sage-deep);
  color: #d9ddd4;
  padding: 70px 0 30px;
  font-size: 0.88rem;
}
footer.site-footer a { color: #f2f0e9; }
footer.site-footer a:hover { color: var(--rose); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-grid h4 {
  color: #fff;
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
  font-size: 0.76rem;
  color: #b7bfb2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-disclaimer { font-size: 0.72rem; color: #9ba896; max-width: 900px; margin-top: 16px; line-height: 1.6; }

/* ---------- EW Monogram ---------- */
.ew-mark { display: inline-block; line-height: 0; }
.ew-mark svg { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 56px 0; gap: 40px; }
  .hero img { height: 380px; order: -1; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col img { height: 340px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav.main-nav { display: none; }
  section { padding: 64px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
}
