/* =========================================================
   Little Whole Me - production stylesheet
   Fonts: Cormorant Garamond (display/serif), Jost (body/sans)
   ========================================================= */

:root {
  --ivory: #F7F3ED;       /* Warm Ivory - main background */
  --cream: #FCF9F4;       /* Soft Cream - nav / alternating sections */
  --espresso: #38261F;    /* Espresso - headings, dark sections, primary buttons */
  --charcoal: #4F4944;    /* Soft Charcoal - body text */
  --sage: #AAB3A0;        /* Muted Sage - reserved accent */
  --oat: #D8CBBB;         /* Natural Oat - dividers, secondary image tint */
  --clay: #B57963;        /* Soft Clay - links, eyebrows, small accents */
  --clay-dark: #8B5A44;   /* link hover */
  --stone: #E6DDD2;       /* Warm Stone - cards, primary image tint */
  --accent-light: #EAD8D0;/* optional light accent, use sparingly */
  --muted-label: #8C8178; /* form field labels */

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1320px;
  --container-medium: 1100px;
  --container-narrow: 900px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

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

::selection { background: var(--accent-light); }

img { max-width: 100%; display: block; }

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

/* ---------- Announcement bar ---------- */
.announcement-bar {
  background: var(--espresso);
  color: var(--stone);
  text-align: center;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.announcement-bar a {
  color: var(--stone);
  border-bottom: 1px solid var(--clay);
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252,249,244,0.9);
  backdrop-filter: blur(10px);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  row-gap: 10px;
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--espresso); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
}
.nav__links a {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  white-space: nowrap;
}
.nav__links a.is-current { color: var(--espresso); border-bottom: 1px solid var(--clay); }
.nav__cta {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--clay);
  color: var(--espresso);
  padding-bottom: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--espresso);
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 640px) {
  .nav__links { display: none; width: 100%; justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 0 4px; }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: block; }
  .nav__inner { padding: 18px 24px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn--primary {
  background: var(--espresso);
  color: var(--cream);
}
.btn--outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn--text {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  color: var(--espresso);
  padding-bottom: 4px;
}
.btn--text-light { color: var(--ivory); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 88vh;
  min-height: 620px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,13,10,0.92) 0%, rgba(20,13,10,0.55) 42%, rgba(20,13,10,0.2) 68%, rgba(20,13,10,0.05) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
}
.hero__eyebrow {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(20,13,10,0.55);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(38px, 5.6vw, 68px);
  line-height: 1.1;
  color: var(--ivory);
  margin: 0 0 28px;
  max-width: 780px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--stone);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* Page (non-homepage) header, simpler than full hero */
.page-header {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 96px 48px 32px;
  text-align: center;
}
.page-header__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.page-header__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--espresso);
  margin: 0 0 20px;
}
.page-header__desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  margin: 0;
}

/* ---------- Trust bar ---------- */
.trust-bar {
  border-bottom: 1px solid var(--oat);
}
.trust-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 26px 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-bar__item {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

/* ---------- Opening statement / mission ---------- */
.statement {
  max-width: 820px;
  margin: 0 auto;
  padding: 150px 48px 130px;
  text-align: center;
}
.statement__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
  color: var(--espresso);
  margin: 0 0 24px;
}
.statement__support {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  margin: 0;
}

/* ---------- Section shells ---------- */
.section { padding: 130px 48px; }
.section--tight-top { padding-top: 40px; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--espresso); color: var(--ivory); }

.section__header {
  max-width: 640px;
  margin: 0 auto 72px;
  text-align: center;
}
.section__header--wide { max-width: 680px; }
.section__header--left { margin: 0 0 56px; text-align: left; max-width: 640px; }
.section__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 16px;
}
.section__eyebrow--light { color: var(--oat); }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.5vw, 42px);
  color: var(--espresso);
  margin: 0;
}
.section__title--large { font-size: clamp(32px, 4vw, 48px); }
.section__desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  margin: 18px 0 0;
}

/* ---------- Pillars (Method) ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 56px;
}
.pillar { text-align: center; }
.pillar__roman {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--clay);
  margin-bottom: 14px;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--espresso);
  margin: 0 0 12px;
}
.pillar__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  margin: 0 auto;
  max-width: 280px;
}

/* ---------- Care Experiences ---------- */
.care-row {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 70px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.care-row--reverse .care-row__image { grid-column: 2; }
.care-row--reverse .care-row__content { grid-column: 1; grid-row: 1; }
.care-row__image {
  aspect-ratio: 5 / 4;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.care-row__image--placeholder {
  background: var(--stone);
}
.care-row__image--placeholder.tint-oat { background: var(--oat); }
.care-row__placeholder-label {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--charcoal);
  background: rgba(247,243,237,0.85);
  padding: 8px 14px;
  border-radius: 3px;
}
.care-row__eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--clay);
  margin-bottom: 14px;
}
.care-row__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  color: var(--espresso);
  margin: 0 0 18px;
}
.care-row__desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  margin: 0 0 22px;
  max-width: 480px;
}
.care-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.care-services li {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--espresso);
  display: flex;
  align-items: center;
  gap: 8px;
}
.care-services li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--clay);
  display: inline-block;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .care-row { grid-template-columns: 1fr; gap: 32px; padding: 48px 24px; }
  .care-row--reverse .care-row__image,
  .care-row--reverse .care-row__content { grid-column: 1; }
}

/* ---------- Why Families Choose Us ---------- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 56px;
}
.reason { border-top: 1px solid var(--oat); padding-top: 28px; }
.reason__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--espresso);
  margin: 0 0 12px;
}
.reason__desc { font-size: 15px; font-weight: 300; color: var(--charcoal); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 140px 48px;
  text-align: center;
}
.testimonial { margin-bottom: 64px; }
.testimonial:last-child { margin-bottom: 0; }
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  color: var(--ivory);
  margin: 0 0 22px;
}
.testimonial__name {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oat);
}

/* ---------- Process steps ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 56px;
}
.step { text-align: center; }
.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--clay);
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: var(--espresso);
  margin: 0 0 10px;
}
.step__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  margin: 0 auto;
  max-width: 280px;
}

/* ---------- Join Little Whole Me ---------- */
.join {
  max-width: var(--container-medium);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 56px;
  align-items: center;
}
.join__eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 14px;
}
.join__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  color: var(--espresso);
  margin: 0 0 14px;
  max-width: 460px;
}
.join__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  margin: 0 0 22px;
  max-width: 460px;
}
.join__image {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}
@media (max-width: 700px) {
  .join { grid-template-columns: 1fr; padding: 56px 24px; }
}

/* ---------- Contact ---------- */
.contact {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 48px;
  text-align: center;
}
.contact__consult-btn { margin-bottom: 48px; }
.contact__form {
  background: var(--cream);
  padding: 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.form-field {
  flex: 1;
  min-width: 180px;
}
.form-field label {
  display: block;
  font-size: 13px;
  color: var(--muted-label);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--oat);
  background: transparent;
  padding: 10px 4px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--espresso);
}
.form-field textarea { resize: vertical; min-height: 70px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-bottom-color: var(--clay);
}
.contact__submit { margin-top: 10px; width: 100%; }
.contact__info {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--charcoal);
}
.contact__areas {
  font-size: 13px;
  color: var(--muted-label);
  margin-top: 20px;
}

/* ---------- Footer ---------- */
.footer { background: var(--ivory); border-top: 1px solid var(--oat); }
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
}
.footer__copy { font-size: 12px; color: var(--charcoal); }
.footer__credit { font-size: 12px; color: var(--charcoal); }

.footer__explore {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 32px 48px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  border-top: 1px solid var(--oat);
  padding-top: 28px;
}
.footer__explore a {
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--charcoal);
}
.footer__explore a:hover { color: var(--clay-dark); }

/* ---------- Deep landing pages (service detail content) ---------- */
.service-hero {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.service-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,13,10,0.85) 0%, rgba(20,13,10,0.35) 60%, rgba(20,13,10,0.05) 100%);
}
.service-hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 48px 56px;
  width: 100%;
}
.service-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(20,13,10,0.55);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.service-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--ivory);
  margin: 0;
  max-width: 720px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.service-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 90px 48px;
}
.service-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  color: var(--espresso);
  margin: 48px 0 16px;
}
.service-body h2:first-child { margin-top: 0; }
.service-body p {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  margin: 0 0 18px;
}
.service-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.service-body ul li {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.cta-banner {
  background: var(--espresso);
  color: var(--ivory);
  text-align: center;
  padding: 72px 48px;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 3vw, 36px);
  margin: 0 0 28px;
  color: var(--ivory);
}

.faq-item {
  border-top: 1px solid var(--oat);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--oat); }
.faq-item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  color: var(--espresso);
  margin: 0 0 10px;
}
.faq-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--charcoal);
  margin: 0;
}
