/* ── LAVERTON.CO — SHARED STYLES ── */

:root {
  --ink: #1a1a18;
  --stone: #6b6b60;
  --cream: #f7f5f0;
  --rule: #d8d4cc;
  --accent: #2a4a3e;
  --accent-light: #3a6b56;
  --bracket-left: #2a4a3e;
  --bracket-right: #1a1a18;
}

[data-theme="dark"] {
  --ink: #ede9e1;
  --stone: #9a9a8a;
  --cream: #131311;
  --rule: #2a2a26;
  --accent: #4d8c6f;
  --accent-light: #5fa882;
  --bracket-left: #5fa882;
  --bracket-right: #ede9e1;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ink: #ede9e1;
    --stone: #9a9a8a;
    --cream: #131311;
    --rule: #2a2a26;
    --accent: #4d8c6f;
    --accent-light: #5fa882;
    --bracket-left: #5fa882;
    --bracket-right: #ede9e1;
  }
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  transition: background .3s, color .3s;
}

/* ── THEME TOGGLE ── */
.theme-toggle {
  background: none;
  border: 1px solid var(--rule);
  color: var(--stone);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: border-color .2s, color .2s;
}
.theme-toggle:hover { border-color: var(--stone); color: var(--ink); }

/* ── TRANSITIONS ── */
nav, section, footer, .service-card, .process-step, .tag,
.btn-primary, .btn-ghost, h1, h2, h3, p, .label, .step-num,
.nav-logo, .nav-links a, .cred-label {
  transition: background .3s, color .3s, border-color .3s;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px max(64px, calc((100% - 1200px) / 2));
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  background: var(--cream);
  z-index: 100;
  transition: background .3s, border-color .3s;
}

/* ── LOGO ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark { display: block; flex-shrink: 0; }
.logo-mark path { transition: stroke .3s; }
.nav-wordmark {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  transition: color .3s;
}
.nav-domain {
  color: var(--accent);
  font-style: normal;
  letter-spacing: .1em;
}

/* ── NAV LINKS ── */
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"] {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ── DROPDOWNS ── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.dropdown-caret {
  font-size: 8px;
  display: inline-block;
  transition: transform .2s;
  line-height: 1;
}
.nav-has-dropdown:hover .dropdown-caret { transform: rotate(180deg); }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  border: 1px solid var(--rule);
  list-style: none;
  min-width: 230px;
  z-index: 200;
  padding: 6px 0;
  margin-top: 10px;
  transition: background .3s, border-color .3s;
}
/* Bridge gap so the mouse can travel from link to dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: 7px 16px;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--stone);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s;
}
.nav-dropdown li a:hover { color: var(--ink); }
.nav-dropdown { min-width: 260px; }
.nav-dropdown-group-label {
  display: block;
  padding: 6px 16px 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  pointer-events: none;
}
.nav-dropdown-divider {
  height: 1px;
  background: var(--rule);
  margin: 5px 0;
  pointer-events: none;
}
.nav-dropdown li a.nav-dropdown-view-all {
  font-style: italic;
  color: var(--accent);
  padding-top: 3px;
  padding-bottom: 6px;
}
.nav-dropdown li a.nav-dropdown-view-all:hover { color: var(--accent-light); }
.mobile-nav-sub-label {
  display: block;
  padding: 8px 0 3px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
}
.mobile-nav-sub-view-all {
  font-style: italic;
  color: var(--accent) !important;
}

.nav-cta {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: var(--accent-light); }

/* ── FOOTER LOGO ── */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 6px;
}
.footer-wordmark {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .3s;
}
.footer-wordmark .nav-domain { color: var(--accent); font-style: normal; letter-spacing: .1em; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--rule);
  cursor: pointer;
  width: 36px;
  height: 36px;
  align-items: center;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--stone);
  transition: transform .2s, opacity .2s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 20px 24px;
  gap: 20px;
  transition: background .3s;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--ink); }
.mobile-menu .mobile-cta {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  font-weight: 500;
  transition: background .2s;
}
.mobile-menu .mobile-cta:hover { background: var(--accent-light); color: #fff; }
.mobile-nav-group { display: flex; flex-direction: column; gap: 0; }
.mobile-dropdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-dropdown-toggle {
  background: none;
  border: none;
  color: var(--stone);
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  line-height: 1;
  transition: color .2s, transform .2s;
}
.mobile-nav-group.open .mobile-dropdown-toggle { transform: rotate(180deg); color: var(--ink); }
.mobile-nav-sub {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 10px 0 4px 14px;
  border-left: 1px solid var(--rule);
  margin-top: 6px;
}
.mobile-nav-group.open .mobile-nav-sub { display: flex; }
.mobile-nav-sub-link {
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .01em;
  text-transform: none;
  color: var(--stone);
  text-decoration: none;
  transition: color .2s;
}
.mobile-nav-sub-link:hover { color: var(--ink); }

/* ── SECTIONS ── */
section { padding: 64px max(64px, calc((100% - 1200px) / 2)); }
section + section { border-top: 1px solid var(--rule); }

.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
}

h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.15;
  max-width: 780px;
}

h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

p { color: var(--stone); max-width: 640px; }
p + p { margin-top: 12px; }

/* ── HERO ── */
.hero { padding: 80px max(64px, calc((100% - 1200px) / 2)) 64px; }
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 18px; line-height: 1.6; margin-bottom: 28px; }

/* Hero two-column (copy left, brand mark right) — wide screens only */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 24px;
  align-items: center;
}
.hero-grid .hero-copy h1 { max-width: none; }
.hero-grid .hero-copy p { max-width: none; }

/* Hero mark — oversized bracket logo echoing the nav mark */
.hero-mark {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-mark .bracket-left  { stroke: var(--bracket-left); }
.hero-mark .bracket-right { stroke: var(--bracket-right); }
.hero-mark .mark-label {
  font-family: 'Libre Baskerville', serif;
  fill: var(--ink);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: .02em;
  transition: fill .3s;
}
.hero-mark .mark-sub {
  font-family: 'DM Sans', sans-serif;
  fill: var(--stone);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.hero-mark .mark-accent {
  fill: var(--accent);
  stroke: var(--accent);
  transition: fill .3s, stroke .3s;
}

/* ── SECTION SPLIT (label+h2 left, content right) ── */
.section-split {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: start;
}
.section-split .section-split-head { position: sticky; top: 104px; }
.section-split .section-split-head .label { margin-bottom: 16px; }
.section-split .section-split-head h1,
.section-split .section-split-head h2 { margin-bottom: 0; max-width: none; }
.section-split .section-split-body > p { max-width: none; }
.section-split .section-split-body > p + p { margin-top: 14px; }
.hero-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 32px;
}
.tag {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 14px;
  transition: color .3s, border-color .3s;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  margin-right: 16px;
  transition: background .2s;
}
.btn-primary:hover { background: var(--accent-light); }
.btn-ghost {
  display: inline-block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }

/* ── NEEDS ── */
.needs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 36px;
}
.need-item h3 { font-size: 16px; margin-bottom: 6px; }
.need-item p { font-size: 15px; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 36px;
}
.service-card {
  background: var(--cream);
  padding: 24px 24px;
}
.service-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.service-cta-text {
  font-size: 18px;
  line-height: 1.5;
  color: var(--stone);
  font-style: italic;
}
.service-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--stone);
  margin-bottom: 16px;
}
.service-card h3 { font-size: 17px; margin-bottom: 10px; }
.service-desc {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 14px;
}
.service-summary {
  font-size: 13px;
  font-style: italic;
  color: var(--stone);
  margin-top: auto;
}

/* ── WHO ── */
.who-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 16px;
  color: var(--stone);
}
.who-item strong {
  display: block;
  margin-bottom: 2px;
}
.who-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 9px;
}

/* ── ABOUT ── */
.about-top {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 56px;
  align-items: start;
}

/* Photo placeholder */
.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--rule);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--stone);
  transition: background .3s, border-color .3s;
}
.about-photo svg { opacity: .4; }
.about-photo-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
  text-align: center;
  line-height: 1.5;
}

.about-p2 { margin-top: 16px; }

/* Credential bar */
.about-credentials-bar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--rule);
  transition: border-color .3s;
  min-width: 140px;
}
.cred-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 24px;
}
.cred-bar-value {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  color: var(--accent);
  line-height: 1;
  white-space: nowrap;
  transition: color .3s;
}
.cred-bar-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--stone);
  white-space: nowrap;
  transition: color .3s;
}
.cred-bar-divider {
  width: auto;
  height: 1px;
  background: var(--rule);
  flex-shrink: 0;
  transition: background .3s;
}

/* Pull quote */
.about-pullquote {
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  background: var(--rule);
  margin-top: 48px;
  max-width: 740px;
  transition: background .3s, border-color .3s;
}
.pullquote-mark {
  font-family: 'Libre Baskerville', serif;
  font-size: 48px;
  color: var(--accent);
  line-height: .8;
  margin-bottom: 12px;
  transition: color .3s;
}
.pullquote-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  max-width: none;
  line-height: 1.6;
  transition: color .3s;
}

/* Credentials grid */
.about-credentials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 40px; margin-top: 40px; }
.cred-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  transition: color .3s;
}
.cred-item p { font-size: 14px; }

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 36px;
}
.process-step {
  background: var(--cream);
  padding: 28px 28px;
}
.step-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 32px;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 14px;
}

/* ── PAGE INTRO (non-hero pages) ── */
.page-intro { padding: 56px max(64px, calc((100% - 1200px) / 2)) 48px; border-bottom: 1px solid var(--rule); }
.page-intro h1 { margin-bottom: 12px; }
.page-intro p { font-size: 18px; line-height: 1.6; max-width: 780px; }

/* ── CTA STRIP (bottom of pages) ── */
.cta-strip {
  text-align: center;
  padding: 56px max(64px, calc((100% - 1200px) / 2));
  border-top: 1px solid var(--rule);
}
.cta-strip h2 { max-width: 520px; margin: 0 auto 12px; }
.cta-strip p { margin: 0 auto 28px; text-align: center; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; align-items: center; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 36px;
}
.contact-method {
  padding: 32px;
  border: 1px solid var(--rule);
}
.contact-method h3 { margin-bottom: 10px; }
.contact-method p { margin-bottom: 24px; }

/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; max-width: 600px; }
.contact-form label { font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 6px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--rule);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s, background .3s, color .3s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-notice { font-size: 13px; color: var(--stone); margin-top: 4px; }
.contact-aside { padding-top: 8px; }
.contact-aside h3 { margin-bottom: 16px; }
.contact-aside-item { margin-bottom: 20px; }
.contact-aside-item .cred-label { margin-bottom: 4px; }
.contact-aside-item p { font-size: 14px; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 36px;
}
.pricing-card {
  background: var(--cream);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .3s;
}
.pricing-card.featured { background: var(--accent); }
.pricing-card.featured * { color: #fff !important; border-color: rgba(255,255,255,.3) !important; }
.pricing-card.featured .pricing-price { color: #fff !important; }
.pricing-tier {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--stone);
}
.pricing-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 28px;
  color: var(--accent);
  line-height: 1.1;
}
.pricing-price span { font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--stone); }
.pricing-desc { font-size: 14px; color: var(--stone); }
.pricing-hours { font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--stone); border-top: 1px solid var(--rule); padding-top: 12px; margin-top: 4px; }
.pricing-ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pricing-ul li { font-size: 13px; color: var(--stone); padding-left: 14px; position: relative; }
.pricing-ul li::before { content: '—'; position: absolute; left: 0; color: var(--rule); }

/* ── FAQ ── */
.faq-list { margin-top: 36px; border: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-family: 'Libre Baskerville', serif;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { font-size: 18px; color: var(--stone); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-chevron { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; }
.faq-answer-inner p { font-size: 15px; max-width: none; }

/* ── ASSESSMENT CARD ── */
.assessment-card {
  border: 1px solid var(--accent);
  padding: 36px;
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
}
.assessment-card h3 { margin-bottom: 8px; }
.assessment-card p { font-size: 15px; max-width: none; }
.assessment-card ul { list-style: none; padding: 0; margin-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.assessment-card ul li { font-size: 14px; color: var(--stone); padding-left: 14px; position: relative; }
.assessment-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--rule); }
.assessment-price-col { text-align: center; border-left: 1px solid var(--rule); padding-left: 32px; min-width: 160px; }
.assessment-price { font-family: 'Libre Baskerville', serif; font-size: 36px; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.assessment-price-label { font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--stone); margin-bottom: 20px; }
.assessment-credit { font-size: 12px; color: var(--stone); margin-top: 12px; line-height: 1.5; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule);
  padding: 32px max(64px, calc((100% - 1200px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color .3s;
}
footer p { font-size: 13px; color: var(--stone); max-width: 480px; }

/* ── SCROLL OFFSET for sticky nav ── */
[id] { scroll-margin-top: 90px; }

/* Services grid — tile down on narrower widths before mobile */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding-left: 24px; padding-right: 24px; }
  section, .hero, .cta-strip, .page-intro, footer { padding-left: 24px; padding-right: 24px; }
  section { padding-top: 44px; padding-bottom: 44px; }
  .hero { padding-top: 48px; padding-bottom: 44px; }
  .page-intro { padding-top: 40px; padding-bottom: 36px; }
  .cta-strip { padding-top: 44px; padding-bottom: 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-portrait { max-width: 260px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .hero-portrait::before, .hero-portrait::after { width: 20px; height: 20px; }
  .section-split { grid-template-columns: 1fr; gap: 20px; }
  .section-split .section-split-head { position: static; }
  .services-grid { grid-template-columns: 1fr; }
  footer p { max-width: none; }
  .about-top { grid-template-columns: 1fr; gap: 36px; }
  .about-credentials-bar { flex-direction: row; min-width: unset; }
  .cred-bar-divider { width: 1px; height: 56px; }
  .about-photo { max-width: 200px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .process-steps { grid-template-columns: 1fr; }
  .about-credentials { grid-template-columns: 1fr 1fr; }
  .about-credentials-bar { flex-direction: column; align-items: stretch; }
  .cred-bar-divider { width: auto; height: 1px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .cta-buttons { flex-direction: column; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .assessment-card { grid-template-columns: 1fr; }
  .assessment-price-col { border-left: none; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 24px; min-width: unset; }
  section > div[style*="grid-template-columns:1fr 360px"] { grid-template-columns: 1fr !important; }
}

/* ── BLOG STYLES ── */

/* Blog listing page */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 720px;
}

.blog-card {
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}

.blog-card-meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--stone);
  letter-spacing: .04em;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}

.blog-card-title a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-desc {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.blog-card-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: .04em;
}

.blog-card-link:hover {
  text-decoration: underline;
}

.blog-empty {
  color: var(--stone);
  font-style: italic;
}

.research-index-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

/* Blog post page */
.post-meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--stone);
  letter-spacing: .04em;
  margin-top: 8px;
}

.post-body {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}

.post-body h2 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2.4rem 0 0.8rem;
  color: var(--ink);
}

.post-body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 2rem 0 0.6rem;
}

.post-body p {
  margin: 0 0 1.2rem;
}

.post-body ul,
.post-body ol {
  padding-left: 1.4rem;
  margin: 0 0 1.2rem;
}

.post-body li {
  margin-bottom: .4rem;
}

.post-body strong {
  font-weight: 600;
}

.post-body em {
  font-style: italic;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 2.4rem 0;
}

.post-body a {
  color: var(--accent);
}

.post-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

/* ── EQUITY RESEARCH REPORT WRAPPER ── */
/* Reports manage their own internal layout; this wrapper just constrains width */
.research-page-body {
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 80px;
}

/* In a research page, remove body max-width since .research-page-body handles it */
.research-page-body body {
  max-width: none;
}
