/* === Brooke Heiche Consulting — shared site styles === */

:root {
  --ink: #1B2638;
  --ink-soft: #2D3748;
  --muted: #4A5568;
  --quiet: #718096;
  --line-soft: #E5E0D6;
  --line: #DDD6C7;
  --bg: #FAF7F2;
  --card: #FFFFFF;
  --accent: #5B7FA0;
  --accent-dark: #406283;
  --accent-soft: rgba(91,127,160,0.10);
  --highlight: #C97B5C;
  --section-alt: #F1ECE2;
  --dark-bg: #1B2638;
  --dark-card: rgba(255,255,255,0.04);
  --shadow: 0 8px 24px rgba(27, 38, 56, 0.08);
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--ink);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.15s ease;
}
a:hover { color: var(--highlight); }

ul.clean { list-style: none; padding: 0; margin: 0; }

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 780px; }
.tight { max-width: 660px; }

/* === NAV === */
nav.top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
nav.top .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px; max-width: 1100px; margin: 0 auto;
}
nav.top .brand {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 1.08rem; color: var(--ink); border: none;
  letter-spacing: -0.005em;
}
nav.top .brand:hover { color: var(--accent-dark); }
@media (max-width: 520px) {
  nav.top .brand { font-size: 0.98rem; }
}
nav.top .links { display: flex; gap: 28px; }
nav.top .links a {
  color: var(--muted); border: none; font-size: 0.95rem; font-weight: 500;
}
nav.top .links a:hover { color: var(--ink); }
nav.top .links a.active { color: var(--ink); border-bottom: 2px solid var(--accent); padding-bottom: 4px; }
@media (max-width: 720px) {
  nav.top .inner { padding: 14px 18px; }
  nav.top .links { gap: 16px; font-size: 0.85rem; }
  nav.top .links a { font-size: 0.85rem; }
}

/* === BUTTONS === */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 8px;
  font-weight: 500; font-size: 1rem; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: 1px solid transparent; border-bottom: 1px solid transparent !important;
  text-align: center;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); border-bottom-color: var(--ink) !important; }
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-ghost { background: transparent; color: var(--accent-dark); padding: 8px 0; border-radius: 0; }
.btn-ghost:hover { color: var(--highlight); }

/* === HERO === */
.hero { padding: 88px 0 72px; }
.hero .eyebrow,
.section-eyebrow {
  display: inline-block; font-size: 0.82rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-dark);
  background: var(--accent-soft); padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px; font-weight: 500;
}
.section-eyebrow { margin-bottom: 14px; }
.hero h1 { max-width: 16ch; margin-bottom: 22px; }
.hero .sub {
  font-size: 1.2rem; color: var(--muted); max-width: 58ch; line-height: 1.55;
  margin-bottom: 32px;
}
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* === SECTIONS === */
section { padding: 76px 0; border-top: 1px solid var(--line-soft); }
section:first-of-type { border-top: none; }
section.alt { background: var(--section-alt); }
section.dark { background: var(--dark-bg); color: #E2E8F0; border-top: none; }
section.dark h2, section.dark h3, section.dark h4 { color: #fff; }
section.dark p { color: #CBD5E0; }
section.dark a { color: #FBD38D; }
section.dark .section-eyebrow {
  color: #FBD38D; background: rgba(251,211,141,0.10);
}

.section-intro {
  color: var(--muted); font-size: 1.08rem; max-width: 58ch; line-height: 1.55;
}

/* === PAIN POINTS / QUOTE TILES === */
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px; margin-top: 36px;
}
.pain {
  background: var(--dark-card); padding: 22px 24px; border-radius: 10px;
  border-left: 3px solid var(--highlight);
}
.pain p {
  margin: 0; font-style: italic; color: #E2E8F0;
  font-size: 1.02rem; line-height: 1.55;
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; margin-top: 44px;
}
.service-card {
  background: var(--card); padding: 32px 28px; border-radius: 12px;
  border: 1px solid var(--line-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px); border-color: var(--accent);
  box-shadow: var(--shadow);
}
.service-card .num {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 0.95rem;
  color: var(--accent); letter-spacing: 0.04em;
}
.service-card h3 { margin: 8px 0 14px; }
.service-card p {
  color: var(--muted); font-size: 0.97rem; line-height: 1.6; margin-bottom: 18px;
}
.service-card .pkgs {
  font-size: 0.85rem; color: var(--quiet); font-weight: 500;
  border-top: 1px dashed var(--line); padding-top: 14px; line-height: 1.5;
}
.service-card .pkgs strong { color: var(--ink-soft); font-weight: 600; }

/* === Detailed services blocks (services page) === */
.service-block {
  background: var(--card); padding: 40px; border-radius: 12px;
  border: 1px solid var(--line-soft); margin-bottom: 24px;
}
.service-block .num-large {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 0.9rem;
  color: var(--accent); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 10px;
}
.service-block h3 { font-size: 1.6rem; margin-bottom: 14px; }
.service-block .lede { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 22px; }
.service-block .body { color: var(--muted); }
.service-block .body p { margin-bottom: 12px; }
.service-block .packages {
  margin-top: 24px; padding: 20px 22px; background: var(--section-alt);
  border-radius: 10px;
}
.service-block .packages h4 {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-dark);
  margin: 0 0 12px;
}
.service-block .packages ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 10px;
}
.service-block .packages li {
  font-size: 0.95rem; color: var(--ink-soft);
  padding-left: 18px; position: relative;
}
.service-block .packages li::before {
  content: "›"; position: absolute; left: 0; color: var(--accent);
  font-weight: 600;
}
.service-block .tools {
  margin-top: 18px; font-size: 0.88rem; color: var(--quiet); font-style: italic;
}

/* === HOW WE WORK STEPS === */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; margin-top: 40px; }
.step .n {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 2.4rem;
  color: var(--accent); line-height: 1; margin-bottom: 12px;
}
.step h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* === ENGAGEMENT MODES === */
.modes-row {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start;
  margin-top: 28px;
}
.modes-row.center { justify-content: center; }
.mode {
  background: var(--card); border: 1px solid var(--line);
  padding: 10px 20px; border-radius: 999px; font-weight: 500;
  color: var(--ink-soft); font-size: 0.95rem;
}

/* === CASE STUDIES === */
.cases { display: grid; gap: 28px; margin-top: 40px; }
.case-card {
  background: var(--card); padding: 36px 38px; border-radius: 12px;
  border: 1px solid var(--line-soft);
}
.case-card .tag {
  display: inline-block; font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-dark);
  background: var(--accent-soft); padding: 5px 12px; border-radius: 999px;
  font-weight: 500; margin-bottom: 14px;
}
.case-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.case-card .illustrative {
  font-size: 0.78rem; color: var(--quiet); font-style: italic;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin: -4px 0 14px; font-weight: 500;
}
.top-note {
  font-size: 0.95rem; color: var(--ink-soft);
  background: var(--section-alt); border-left: 3px solid var(--accent);
  padding: 16px 22px; border-radius: 6px;
  margin: 0 0 40px; line-height: 1.55;
}
.top-note strong { color: var(--ink); font-weight: 600; }

/* === PROJECT TYPES (How I Help page) === */
.project-types { display: grid; gap: 24px; margin-top: 4px; }
.project-type {
  background: var(--card); padding: 36px 38px; border-radius: 12px;
  border: 1px solid var(--line-soft);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.project-type:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.project-type .num-large {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 0.9rem;
  color: var(--accent); letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 10px;
}
.project-type h3 { font-size: 1.4rem; margin-bottom: 14px; }
.project-type .body p { color: var(--muted); margin-bottom: 0; line-height: 1.65; }
.project-type .helpful {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 0.9rem; color: var(--quiet); line-height: 1.65;
}
.project-type .helpful strong { color: var(--ink-soft); font-weight: 600; }
@media (max-width: 720px) {
  .project-type { padding: 28px 26px; }
}
.case-card .meta {
  font-size: 0.88rem; color: var(--quiet); margin-bottom: 18px;
  display: flex; flex-wrap: wrap; gap: 16px;
}
.case-card .meta span strong {
  color: var(--ink-soft); font-weight: 600; margin-right: 4px;
}
.case-card .body p { color: var(--muted); margin-bottom: 10px; }
.case-card .outcomes {
  margin-top: 18px; padding-top: 18px; border-top: 1px dashed var(--line);
}
.case-card .outcomes strong {
  color: var(--ink-soft); font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.case-card .outcomes ul { margin: 8px 0 0; padding-left: 20px; color: var(--muted); }
.case-card .outcomes li { margin-bottom: 4px; }

/* === ABOUT === */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; align-items: start;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
}
.about-grid p { color: var(--muted); }
.photo-placeholder {
  aspect-ratio: 4/5; border-radius: 14px;
  background: linear-gradient(135deg, #C9D5E2 0%, #5B7FA0 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-family: 'Fraunces', serif; font-size: 1rem;
  letter-spacing: 0.08em;
}
.photo {
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--section-alt);
  box-shadow: 0 6px 24px rgba(27, 38, 56, 0.10);
}
.photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 800px) {
  .photo { max-width: 380px; margin: 0 auto; }
}

/* === MEET BROOKE (homepage) === */
.meet-brooke {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: center;
}
.meet-photo {
  aspect-ratio: 4/5;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 8px 28px rgba(27, 38, 56, 0.10);
}
.meet-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.meet-body h2 { margin-bottom: 16px; max-width: 26ch; }
.meet-body p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 22px;
  max-width: 60ch;
}
@media (max-width: 800px) {
  .meet-brooke { grid-template-columns: 1fr; gap: 32px; }
  .meet-photo { max-width: 340px; margin: 0 auto; }
  .meet-body { text-align: left; }
}
.credentials {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft);
  font-size: 0.92rem; color: var(--quiet);
}
.credentials strong { color: var(--ink-soft); font-weight: 600; }

/* === CONTACT === */
.contact-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px;
}
@media (max-width: 720px) { .contact-row { grid-template-columns: 1fr; } }
.contact-card {
  padding: 32px 30px; background: var(--card); border-radius: 12px;
  border: 1px solid var(--line-soft);
}
.contact-card h3 { margin-bottom: 10px; }
.contact-card p { color: var(--muted); font-size: 0.97rem; }
.contact-card .field { margin-bottom: 14px; }
.contact-card .label {
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--quiet); font-weight: 600; margin-bottom: 4px;
}
.contact-card .value { color: var(--ink); font-size: 1.02rem; }

/* === CTA BLOCK === */
.cta-final { text-align: center; padding: 80px 0; }
.cta-final h2 { max-width: 22ch; margin: 0 auto 16px; }
.cta-final p { color: var(--muted); font-size: 1.1rem; margin-bottom: 28px; }
.cta-final .actions { justify-content: center; }

/* === FOOTER === */
footer.site {
  background: var(--dark-bg); color: #A0AEC0; padding: 36px 0;
  font-size: 0.92rem;
}
footer.site .inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
footer.site a { color: #CBD5E0; border-bottom: 1px solid transparent; }
footer.site a:hover { border-bottom-color: #CBD5E0; }

/* === UTILITIES === */
.note {
  font-size: 0.85rem; color: var(--quiet); font-style: italic;
  text-align: center; margin: 60px auto 0; max-width: 700px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.6); border: 1px dashed var(--line);
  border-radius: 10px;
}
.actions { display: flex; gap: 14px; flex-wrap: wrap; }
