/* Hallmark · custom · Green Country Modern Craftsman
 * Baker Custom Homes by Baker Construction · bakercustomhomes.com
 * tone: confident warm local · paper: cream · accent: forest green + cedar
 * fonts: Cormorant Garamond + Manrope
 */

:root {
  /* Brand */
  --color-pine: #25433A;
  --color-pine-deep: #1B322B;
  --color-pine-soft: #3A5C50;
  --color-cream: #F6F2E9;
  --color-white: #FCFBF8;
  --color-cedar: #9A633E;
  --color-cedar-hover: #7F5133;
  --color-charcoal: #242725;
  --color-sage: #DDE4DC;
  --color-stone: #A39A8D;
  --color-stone-soft: #C4BCB1;
  --color-border: #E4DDD1;
  --color-overlay: rgba(27, 50, 43, 0.58);
  --color-overlay-deep: rgba(27, 50, 43, 0.72);
  --color-focus: #25433A;
  --color-error: #8B3A2F;
  --color-success: #25433A;

  /* Type */
  --font-display: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --text-display: clamp(2.35rem, 5.2vw, 3.75rem);
  --text-h1: clamp(2.1rem, 4.2vw, 3.25rem);
  --text-h2: clamp(1.75rem, 3vw, 2.45rem);
  --text-h3: clamp(1.2rem, 1.6vw, 1.4rem);
  --text-body: 1.0625rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
  --leading-body: 1.7;
  --leading-heading: 1.15;
  --tracking-eyebrow: 0.14em;
  --tracking-nav: 0.04em;
  --tracking-button: 0.04em;

  /* Layout */
  --container: 1180px;
  --container-narrow: 720px;
  --container-wide: 1280px;
  --row: min(92%, var(--container));
  --section-y: clamp(3.75rem, 7vw, 6.25rem);
  --section-y-sm: clamp(2.5rem, 5vw, 3.5rem);
  --gap-xs: 0.5rem;
  --gap-sm: 0.75rem;
  --gap-md: 1.25rem;
  --gap-lg: 2rem;
  --gap-xl: 3rem;
  --gap-2xl: 4.5rem;

  /* Components */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --btn-h: 48px;
  --header-h: 78px;
  --util-h: 36px;
  --sticky-cta-h: 64px;
  --shadow-sm: 0 1px 2px rgba(36, 39, 37, 0.04), 0 4px 14px rgba(36, 39, 37, 0.05);
  --shadow-md: 0 4px 10px rgba(36, 39, 37, 0.05), 0 16px 36px rgba(36, 39, 37, 0.08);
  --ease: 220ms cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --focus-ring: 0 0 0 3px rgba(37, 67, 58, 0.35);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-charcoal);
  background: var(--color-cream);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
img { object-fit: cover; }
a { color: var(--color-pine); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--color-cedar); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: normal;
  line-height: var(--leading-heading);
  color: var(--color-pine);
  margin: 0 0 0.65em;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  min-width: 0;
}
h1 { font-size: var(--text-h1); font-weight: 600; }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); font-family: var(--font-body); font-weight: 650; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 1em; padding-left: 1.2em; }
li { margin-bottom: 0.35em; }
strong { font-weight: 650; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 1000;
  background: var(--color-pine); color: #fff; padding: 0.75rem 1rem;
  border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 1rem; color: #fff; box-shadow: var(--focus-ring); }

/* Layout helpers */
.container {
  width: var(--row);
  max-width: var(--container);
  margin-inline: auto;
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }
.section {
  padding-block: var(--section-y);
}
.section--sm { padding-block: var(--section-y-sm); }
.section--sage { background: var(--color-sage); }
.section--white { background: var(--color-white); }
.section--pine {
  background: var(--color-pine);
  color: var(--color-cream);
}
.section--pine h2,
.section--pine h3,
.section--pine .eyebrow { color: var(--color-cream); }
.section--pine p { color: rgba(246, 242, 233, 0.9); }
.section-head { max-width: 40rem; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.section-head--center {
  text-align: center;
  margin-inline: auto;
}
.section-lead {
  font-size: 1.0625rem;
  color: var(--color-charcoal);
  opacity: 0.92;
  max-width: 38rem;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 650;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-cedar);
  margin: 0 0 0.85rem;
}
.accent-rule {
  width: 3rem;
  height: 2px;
  background: var(--color-cedar);
  margin: 0 0 1.25rem;
  border: 0;
}
.text-muted { color: var(--color-stone); }
.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--btn-h);
  min-width: 44px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 650;
  letter-spacing: var(--tracking-button);
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  background: var(--color-pine);
  color: #fff;
  white-space: nowrap;
}
.btn:hover {
  background: var(--color-pine-deep);
  color: #fff;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn--cedar {
  background: var(--color-cedar);
  color: #fff;
}
.btn--cedar:hover {
  background: var(--color-cedar-hover);
  color: #fff;
}
.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  color: inherit;
}
.btn--outline-pine {
  background: transparent;
  border-color: var(--color-pine);
  color: var(--color-pine);
}
.btn--outline-pine:hover {
  background: var(--color-pine);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--color-pine);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  padding-inline: 0.5rem;
}
.btn--ghost:hover { color: var(--color-cedar); background: transparent; }
.btn--sm {
  min-height: 44px;
  padding: 0.55rem 1rem;
  font-size: var(--text-xs);
}
.btn--block { width: 100%; }
.hero-actions, .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 1.5rem;
}
@media (max-width: 640px) {
  .hero-actions,
  .cta-row {
    justify-content: center;
    width: 100%;
  }
  .hero-actions .btn,
  .cta-row .btn {
    flex: 1 1 auto;
    min-width: min(100%, 10.5rem);
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hero .hero-actions {
    justify-content: stretch;
  }
  .hero .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
  }
  .band-cta .hero-actions .btn {
    flex: 1 1 100%;
    width: 100%;
    max-width: 22rem;
  }
  .split-copy .cta-row,
  .section-head + .cta-row,
  .inline-cta .cta-row {
    justify-content: stretch;
  }
  .filter-bar {
    justify-content: center;
  }
  .nav-drawer__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .sticky-cta {
    justify-content: center;
  }
  .sticky-cta .btn {
    justify-content: center;
    text-align: center;
    font-size: 0.8125rem;
    padding-inline: 0.65rem;
  }
  .contact-form-card .btn,
  .inline-cta .btn,
  .form .btn {
    width: 100%;
    justify-content: center;
  }
  .article-main .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .article-main .cta-row .btn {
    width: 100%;
    max-width: none;
  }
}
.text-link {
  font-weight: 650;
  font-size: var(--text-sm);
  color: var(--color-pine);
  text-decoration: none;
  border-bottom: 1px solid var(--color-stone-soft);
  padding-bottom: 1px;
}
.text-link:hover {
  color: var(--color-cedar);
  border-bottom-color: var(--color-cedar);
}

/* ========== UTILITY BAR ========== */
.util-bar {
  background: var(--color-pine-deep);
  color: rgba(246, 242, 233, 0.9);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  min-height: var(--util-h);
  display: flex;
  align-items: center;
}
.util-bar__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-block: 0.5rem;
  width: min(96%, var(--container));
  margin-inline: auto;
}
.util-bar__main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  min-width: 0;
  flex: 1 1 auto;
}
.util-bar__since {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.15rem 0.55rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(252, 251, 248, 0.12);
  border: 1px solid rgba(252, 251, 248, 0.2);
  border-radius: 999px;
}
.util-bar__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(246, 242, 233, 0.45);
  flex-shrink: 0;
}
.util-bar__area {
  color: rgba(246, 242, 233, 0.88);
  font-weight: 550;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.util-bar__services {
  color: rgba(246, 242, 233, 0.7);
  white-space: nowrap;
}
.util-bar__services::before {
  content: "·";
  margin-right: 0.55rem;
  opacity: 0.5;
}
.util-bar__phone {
  flex-shrink: 0;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(252, 251, 248, 0.1);
  border: 1px solid rgba(252, 251, 248, 0.22);
  transition: background var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.util-bar__phone:hover {
  color: #fff;
  background: rgba(252, 251, 248, 0.18);
  border-color: rgba(252, 251, 248, 0.35);
  text-decoration: none;
}
.util-bar__phone svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  /* Header already has a Call button on mobile; drop the utility bar */
  .util-bar {
    display: none;
  }
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 248, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  width: min(96%, var(--container));
  margin-inline: auto;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem 0.9rem;
  text-decoration: none;
  color: var(--color-pine);
  min-width: 0;
  flex-shrink: 1;
}
.brand:hover { color: var(--color-pine); text-decoration: none; }
.brand__logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand__logo {
  height: clamp(36px, 5.5vw, 46px);
  width: auto;
  max-width: min(42vw, 168px);
  object-fit: contain;
  object-position: left center;
}
.brand__mark {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-pine);
}
.brand__sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-stone);
}
.brand__lockup {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  padding-left: 0.75rem;
  border-left: 1px solid var(--color-border);
}
.brand--on-dark .brand__mark { color: #fff; }
.brand--on-dark .brand__sub { color: rgba(246, 242, 233, 0.55); }
.brand--on-dark .brand__lockup { border-left-color: rgba(246, 242, 233, 0.18); }
.brand--on-dark .brand__logo {
  height: clamp(40px, 6vw, 52px);
  max-width: min(52vw, 200px);
}
@media (max-width: 420px) {
  .brand__lockup { display: none; }
  .brand__logo { max-width: 150px; height: 40px; }
}

/* Social */
.social-links {
  list-style: none;
  display: flex;
  gap: 0.65rem;
  padding: 0;
  margin: 0 0 1.25rem;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(246, 242, 233, 0.22);
  color: rgba(246, 242, 233, 0.9);
  text-decoration: none;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.social-links a:hover {
  background: rgba(246, 242, 233, 0.12);
  color: #fff;
  border-color: rgba(246, 242, 233, 0.4);
  text-decoration: none;
}
.nav-cluster {
  display: flex;
  align-items: center;
  gap: 0.5rem 0.75rem;
}
.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.15rem;
}
.nav-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.35rem 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: var(--tracking-nav);
  color: var(--color-charcoal);
  text-decoration: none;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--color-pine); background: var(--color-sage); }
.nav-menu a[aria-current="page"] {
  color: var(--color-pine);
  box-shadow: inset 0 -2px 0 var(--color-cedar);
  border-radius: 0;
  background: transparent;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-pine);
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1;
}
.nav-toggle:hover { background: var(--color-sage); }
.header-call {
  display: inline-flex;
  min-height: 44px;
}
.header-cta { display: none; }
@media (min-width: 1100px) {
  .nav-menu { display: flex; align-items: center; }
  .nav-toggle { display: none; }
  .header-cta { display: inline-flex; }
  .header-call { display: none; }
}
/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}
.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 39, 37, 0.45);
  opacity: 0;
  transition: opacity var(--ease);
}
.nav-drawer.is-open .nav-drawer__backdrop { opacity: 1; }
.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 340px);
  height: 100%;
  background: var(--color-white);
  padding: 1.25rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform var(--ease);
  box-shadow: var(--shadow-md);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.nav-drawer__close {
  width: 44px; height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-cream);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-pine);
}
.nav-drawer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.nav-drawer__links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.5rem 0.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}
.nav-drawer__links a[aria-current="page"] { color: var(--color-pine); }
.nav-drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: clamp(28rem, 78vh, 42rem);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--color-pine-deep);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media picture {
  width: 100%;
  height: 100%;
  display: block;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(27, 50, 43, 0.82) 0%, rgba(27, 50, 43, 0.55) 42%, rgba(27, 50, 43, 0.28) 100%),
    linear-gradient(to top, rgba(27, 50, 43, 0.55) 0%, transparent 45%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: min(92%, var(--container));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.75rem, 6vw, 4.5rem);
  max-width: 40rem;
}
.hero .eyebrow { color: rgba(246, 242, 233, 0.85); }
.hero h1 {
  color: #fff;
  font-size: var(--text-display);
  margin-bottom: 0.85rem;
  text-wrap: balance;
}
.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(252, 251, 248, 0.92);
  max-width: 34rem;
  margin-bottom: 0;
}
.hero__trust {
  margin-top: 1.25rem;
  font-size: var(--text-sm);
  color: rgba(246, 242, 233, 0.88);
  font-weight: 650;
  letter-spacing: 0.02em;
}
.hero-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 1rem;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem;
  background: rgba(252, 251, 248, 0.14);
  border: 1px solid rgba(252, 251, 248, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.hero-badge__year {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  background: var(--color-cedar);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
}
.hero-badge__text {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(252, 251, 248, 0.95);
  padding-right: 0.25rem;
}
.footer-since {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(246, 242, 233, 0.12);
  border: 1px solid rgba(246, 242, 233, 0.22);
  border-radius: 999px;
}
.hero--page {
  min-height: clamp(18rem, 42vh, 26rem);
  align-items: center;
}
.hero--page .hero__content {
  padding-block: clamp(3rem, 7vw, 4.5rem);
  max-width: 42rem;
}
.hero--page .hero__overlay {
  background:
    linear-gradient(100deg, rgba(27, 50, 43, 0.78) 0%, rgba(27, 50, 43, 0.48) 55%, rgba(27, 50, 43, 0.3) 100%);
}

/* ========== SPLIT / VALUE ========== */
.split {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
  .split--reverse { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
  .split--reverse .split-media { order: 2; }
  .split--reverse .split-copy { order: 1; }
}
.split-media {
  position: relative;
  min-width: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}
.split-media picture {
  width: 100%;
  height: 100%;
  display: block;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-copy { min-width: 0; }
.split-copy .section-lead,
.split-copy p { max-width: 36rem; }

/* Pillars  -  editorial, not icon circles */
.pillars {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
@media (min-width: 720px) {
  .pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
}
.pillar {
  padding: 1.25rem 0 0;
  border-top: 2px solid var(--color-pine);
}
.pillar h3 {
  margin-bottom: 0.45rem;
  color: var(--color-pine);
}
.pillar p {
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  margin: 0;
}

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.check-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: 0.98rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--color-cedar);
  border-radius: 1px;
}

/* Two pathway cards */
.pathways {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
@media (min-width: 800px) {
  .pathways { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
.pathway {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}
.pathway--life { border-top: 3px solid var(--color-pine); }
.pathway--sale { border-top: 3px solid var(--color-cedar); }
.pathway h3 { margin-bottom: 0.35rem; }
.pathway .pathway-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 0.5rem;
}
.pathway ul {
  margin: 1rem 0 0;
  padding-left: 1.1em;
  font-size: var(--text-sm);
}
.qualifier {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--color-sage);
  border-left: 3px solid var(--color-pine);
  font-size: var(--text-sm);
  color: var(--color-charcoal);
  max-width: 48rem;
}

/* Service chips / links */
.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
  list-style: none;
  padding: 0;
}
.service-chips a,
.service-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.4rem 0.9rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-pine);
  text-decoration: none;
}
.service-chips a:hover {
  border-color: var(--color-pine);
  background: var(--color-sage);
  color: var(--color-pine);
}

/* ========== EDITORIAL GALLERY / MASONRY ========== */
.gallery-editorial {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .gallery-editorial {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(140px, auto);
    gap: 0.85rem;
  }
  .gallery-editorial__item { min-width: 0; }
  .gallery-editorial__item--lg {
    grid-column: span 7;
    grid-row: span 2;
  }
  .gallery-editorial__item--md {
    grid-column: span 5;
    grid-row: span 2;
  }
  .gallery-editorial__item--sm {
    grid-column: span 4;
  }
  .gallery-editorial__item--sm2 {
    grid-column: span 4;
  }
  .gallery-editorial__item--sm3 {
    grid-column: span 4;
  }
}
.gallery-editorial figure {
  margin: 0;
  position: relative;
  height: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-sage);
}
.gallery-editorial a,
.gallery-editorial button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  min-height: 200px;
}
.gallery-editorial picture {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 200px;
}
.gallery-editorial img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.gallery-editorial a:hover img,
.gallery-editorial button:hover img {
  transform: scale(1.03);
}
.gallery-editorial figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.25rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(27,50,43,0.75));
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
}
.project-card-copy {
  margin-top: 1.5rem;
  max-width: 36rem;
}
.project-card-copy h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

/* ========== PROCESS ========== */
.process {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 800px) {
  .process {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.process-step {
  position: relative;
  padding: 1.35rem 1.15rem 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  min-width: 0;
}
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-cedar);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.process-step h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}
.process-step p {
  font-size: var(--text-sm);
  margin: 0;
  color: var(--color-charcoal);
}

/* ========== LOCAL PROOF ========== */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.4rem;
  justify-content: flex-start;
  margin-top: 1.5rem;
  padding: 0;
  list-style: none;
  max-width: 48rem;
}
.area-list li {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-pine);
  padding: 0;
  background: transparent;
  border-radius: 999px;
  border: 0;
  margin: 0;
}
.area-list a,
.area-list--links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.4rem 0.9rem;
  font-size: var(--text-sm);
  font-weight: 650;
  color: var(--color-pine);
  text-decoration: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.area-list a:hover,
.area-list--links a:hover {
  background: var(--color-sage);
  border-color: var(--color-pine);
  color: var(--color-pine-deep);
  text-decoration: none;
}

/* ========== FORMS ========== */
.form {
  display: grid;
  gap: 1rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
.form-field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 650;
  margin-bottom: 0.4rem;
  color: var(--color-charcoal);
}
.form-field .req { color: var(--color-cedar); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2325433A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--color-stone);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-pine);
  box-shadow: var(--focus-ring);
  outline: none;
}
.form-note {
  font-size: var(--text-xs);
  color: var(--color-stone);
  margin: 0;
}
.form-status {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
}
.form-status.is-visible { display: block; }
.form-status--ok {
  background: var(--color-sage);
  color: var(--color-pine);
  border: 1px solid var(--color-pine-soft);
}
.form-status--err {
  background: #F8EBE8;
  color: var(--color-error);
  border: 1px solid #E0B8B0;
}
.contact-panel {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .contact-panel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    align-items: start;
  }
}
.contact-aside {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-aside h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.contact-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--color-border);
}
.contact-brand__logo {
  width: auto;
  height: clamp(64px, 10vw, 88px);
  max-width: min(100%, 280px);
  object-fit: contain;
  object-position: left center;
}
.contact-brand__name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-pine);
  margin: 0;
}
.contact-brand__sub {
  margin: 0.2rem 0 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-stone);
}
.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.contact-trust__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--color-pine-soft);
  background: var(--color-sage);
  color: var(--color-pine);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-trust--inline {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.contact-aside__note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--color-stone);
}
.contact-form-card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.contact-body-media {
  margin-top: clamp(2rem, 4vw, 3rem);
}
.contact-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-meta li {
  margin-bottom: 0.85rem;
  font-size: var(--text-sm);
}
.contact-meta strong {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.contact-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}

/* Inline form on service pages */
.inline-cta {
  display: grid;
  gap: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 800px) {
  .inline-cta {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }
}

/* ========== FAQ ========== */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 48rem;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 650;
  font-size: 0.98rem;
  color: var(--color-pine);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-cedar);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "-"; }
.faq-answer {
  padding: 0 1.15rem 1.15rem;
  font-size: var(--text-sm);
  color: var(--color-charcoal);
}
.faq-answer p { margin: 0; }

/* ========== PORTFOLIO ========== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.filter-btn {
  min-height: 44px;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}
.filter-btn:hover {
  border-color: var(--color-pine);
  color: var(--color-pine);
}
.filter-btn.is-active {
  background: var(--color-pine);
  border-color: var(--color-pine);
  color: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 600px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .portfolio-grid .portfolio-item--wide {
    grid-column: span 2;
  }
}
.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-sage);
  min-width: 0;
  aspect-ratio: 4 / 3;
}
.portfolio-item--wide { aspect-ratio: 16 / 9; }
.portfolio-item.is-hidden { display: none; }
.portfolio-item button {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: none;
  position: relative;
  display: block;
  min-height: 200px;
}
.portfolio-item picture {
  width: 100%;
  height: 100%;
  display: block;
}
.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.portfolio-item button:hover img { transform: scale(1.04); }
.portfolio-item__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(27,50,43,0.8));
  color: #fff;
  text-align: left;
}
.portfolio-item__cat {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}
.portfolio-item__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 650;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(27, 50, 43, 0.92);
}
.lightbox.is-open { display: flex; }
.lightbox__inner {
  position: relative;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  width: 100%;
}
.lightbox__img {
  max-height: 80vh;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #111;
}
.lightbox__caption {
  color: rgba(246, 242, 233, 0.9);
  text-align: center;
  margin-top: 0.75rem;
  font-size: var(--text-sm);
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  border: 0;
  background: rgba(252, 251, 248, 0.12);
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(252, 251, 248, 0.25);
}
.lightbox__close { top: -0.25rem; right: 0; position: fixed; top: 1rem; right: 1rem; }
.lightbox__prev { left: 0.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 0.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 700px) {
  .lightbox__prev { left: 0.25rem; }
  .lightbox__next { right: 0.25rem; }
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--color-pine-deep);
  color: rgba(246, 242, 233, 0.85);
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
}
.site-footer a { color: rgba(246, 242, 233, 0.9); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  }
}
.footer-brand .brand {
  margin-bottom: 0.35rem;
}
.footer-brand p {
  margin: 1rem 0 1.1rem;
  font-size: var(--text-sm);
  max-width: 28rem;
  color: rgba(246, 242, 233, 0.78);
}
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 242, 233, 0.55);
  margin: 0 0 1rem;
}
.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li, .footer-contact li {
  margin-bottom: 0.55rem;
  font-size: var(--text-sm);
}
.footer-bottom {
  border-top: 1px solid rgba(246, 242, 233, 0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: rgba(246, 242, 233, 0.55);
}
.footer-bottom a { color: rgba(246, 242, 233, 0.7); }
.legal-line {
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: rgba(246, 242, 233, 0.45);
  margin-top: 0.75rem;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: stretch;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  background: rgba(252, 251, 248, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 20px rgba(36, 39, 37, 0.08);
}
.sticky-cta .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
  white-space: normal;
  line-height: 1.2;
}
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}
body { padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 900px) {
  body { padding-bottom: 0; }
}

/* Page content extras */
.prose { max-width: 40rem; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; font-family: var(--font-body); }
.content-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 760px) {
  .content-grid--2 { grid-template-columns: 1fr 1fr; }
  .content-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.feature-block {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  min-width: 0;
  box-shadow: var(--shadow-sm);
}
.feature-block h3 { margin-bottom: 0.45rem; }
.feature-block p { font-size: var(--text-sm); margin: 0; }

.band-cta {
  background: var(--color-pine);
  color: var(--color-cream);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
}
.band-cta h2 { color: #fff; }
.band-cta p {
  color: rgba(246, 242, 233, 0.88);
  max-width: 36rem;
  margin-inline: auto;
}
.band-cta .hero-actions { justify-content: center; }

/* Reveal on scroll (gentle) */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Insights / articles */
.insight-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.insight-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.insight-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-sage);
}
.insight-card__media picture,
.insight-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insight-card__body {
  padding: 1.25rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.insight-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  line-height: 1.25;
}
.insight-card__title a {
  color: var(--color-pine);
  text-decoration: none;
}
.insight-card__title a:hover {
  color: var(--color-cedar);
}
.insight-card__body p {
  font-size: var(--text-sm);
  margin: 0 0 0.5rem;
  flex: 1;
}
/* Article layout */
.article-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 980px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 2.5rem;
  }
}
.article-main {
  min-width: 0;
  max-width: 48rem;
}
.article-meta {
  font-size: var(--text-sm);
  color: var(--color-stone);
  margin: 0 0 1.5rem;
}
.article-section {
  margin-bottom: 2.25rem;
  scroll-margin-top: 6rem;
}
.article-section h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin: 0 0 0.85rem;
}
.prose p {
  margin-bottom: 1em;
  max-width: 42rem;
}
.prose .check-list,
.prose .article-list {
  margin: 0 0 1.25rem;
  padding-left: 1.2em;
  max-width: 42rem;
}
.prose .article-list li,
.prose .check-list li {
  margin-bottom: 0.5rem;
}
.article-figure {
  margin: 1.25rem 0 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-sage);
  box-shadow: var(--shadow-sm);
}
.article-figure picture,
.article-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.article-figure figcaption {
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
  color: var(--color-stone);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 0;
}
.article-callout {
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.15rem;
  background: var(--color-sage);
  border-left: 3px solid var(--color-pine);
  font-size: 0.98rem;
  max-width: 42rem;
}
.table-wrap {
  margin: 1.25rem 0 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 520px;
}
.content-table th,
.content-table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}
.content-table th {
  background: var(--color-pine);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.content-table tr:last-child td {
  border-bottom: 0;
}
.content-table tbody tr:nth-child(even) td {
  background: rgba(221, 228, 220, 0.35);
}
.article-aside {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.aside-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
}
.aside-card__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin: 0 0 0.75rem;
}
.aside-card p {
  font-size: var(--text-sm);
  margin: 0 0 1rem;
}
.aside-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aside-links li {
  margin: 0;
  border-bottom: 1px solid var(--color-border);
}
.aside-links li:last-child {
  border-bottom: 0;
}
.aside-links a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--color-pine);
}
.aside-links a:hover {
  color: var(--color-cedar);
}
.article-faq {
  max-width: 52rem;
}
.article-faq .faq-answer p {
  max-width: none;
}
.faq-answer p {
  line-height: 1.7;
}
.container--narrow {
  max-width: 720px;
  width: var(--row);
  margin-inline: auto;
}

/* Legal pages */
.legal-page {
  padding-block: var(--section-y);
}
.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page .updated {
  font-size: var(--text-sm);
  color: var(--color-stone);
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
}
.legal-page p, .legal-page li {
  font-size: 0.98rem;
  max-width: 42rem;
}

/* Chat / CRM placeholder */
.integration-slot {
  /* Reserved for XealAI / GHL widget embed */
  display: none;
}

/* Print */
@media print {
  .util-bar, .site-header, .sticky-cta, .nav-drawer, .lightbox { display: none !important; }
  body { padding: 0; background: #fff; color: #000; }
}
