@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: #f7f5f0;
  color: #1a1a1a;
  font-family: Inter, -apple-system, system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
::selection { background: #c8553d; color: #f7f5f0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
img, svg { display: block; max-width: 100%; }

/* ─── NAV ─── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(26,26,26,.08);
  background: #f7f5f0;
  position: sticky; top: 0; z-index: 20;
}
.nav-logo { display: flex; align-items: baseline; gap: 12px; text-decoration: none; color: #1a1a1a; }
.nav-logo-name { font-family: "PT Serif", Georgia, serif; font-size: 26px; font-weight: 700; letter-spacing: -.01em; }
.nav-logo-est { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: rgba(26,26,26,.5); }
.nav-links { display: flex; gap: 28px; font-size: 13px; }
.nav-links a { color: rgba(26,26,26,.7); padding-bottom: 2px; border-bottom: 1.5px solid transparent; transition: color .15s, border-color .15s; }
.nav-links a:hover { color: #1a1a1a; }
.nav-links a.active { color: #c8553d; font-weight: 600; border-bottom-color: #c8553d; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: ui-monospace, "Geist Mono", monospace;
  font-size: 13px; font-weight: 500;
  color: #c8553d; text-decoration: none;
}

/* ─── LAYOUT ─── */
.inner { max-width: 1280px; margin: 0 auto; }
.section-tag {
  font-family: ui-monospace, monospace; font-size: 11px;
  letter-spacing: .12em; color: rgba(26,26,26,.5); margin-bottom: 28px;
}

/* ─── FOOTER ─── */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(26,26,26,.15);
  background: #f7f5f0;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 36px;
}
.footer-brand-name { font-family: "PT Serif", Georgia, serif; font-size: 24px; font-weight: 700; }
.footer-brand-desc { font-size: 13px; color: rgba(26,26,26,.65); max-width: 320px; margin-top: 12px; line-height: 1.55; }
.footer-col-title { font-family: ui-monospace, monospace; font-size: 11px; color: rgba(26,26,26,.5); margin-bottom: 14px; letter-spacing: .1em; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(26,26,26,.85); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: #c8553d; }
.footer-bottom {
  display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(26,26,26,.5);
  font-family: ui-monospace, monospace;
  padding-top: 24px; border-top: 1px solid rgba(26,26,26,.1);
}

/* ════════════════════════════════════════
   HOME PAGE
════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
  padding: 40px 48px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.hero-text { padding-top: 32px; }
.hero-eyebrow {
  font-family: ui-monospace, "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(26,26,26,.5); margin-bottom: 28px;
}
.hero-h1 {
  font-family: "PT Serif", Georgia, serif;
  font-size: clamp(56px, 7.5vw, 96px);
  line-height: .92; font-weight: 700;
  letter-spacing: -.025em; margin: 0;
}
.hero-h1 em { color: #c8553d; font-style: italic; font-weight: 400; }
.hero-sub {
  font-size: 16px; color: rgba(26,26,26,.7);
  margin-top: 32px; max-width: 380px; line-height: 1.6;
}
.hero-cta { margin-top: 40px; display: flex; align-items: center; gap: 28px; }
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  background: #1a1a1a; color: #f7f5f0;
  font-size: 14px; font-weight: 500;
  text-decoration: none; transition: background .2s;
}
.btn-call:hover { background: #333; }
.btn-call-mono { font-family: ui-monospace, "Geist Mono", monospace; }
.hero-phone-info { font-size: 13px; color: rgba(26,26,26,.6); line-height: 1.5; }
.hero-phone-info small { font-size: 11px; color: rgba(26,26,26,.45); }

/* Figure column */
.hero-fig-wrap { display: flex; justify-content: center; position: relative; }
.fig-caption {
  position: absolute; top: 12px; left: 0;
  font-family: ui-monospace, "Geist Mono", monospace;
  font-size: 10px; letter-spacing: .08em;
  color: rgba(26,26,26,.4);
}

/* Service panel */
.service-panel {
  padding: 32px;
  border: 1px solid rgba(26,26,26,.15);
  background: #efeae0;
  position: sticky; top: 80px;
  min-height: 480px;
  transition: background .2s;
}
.panel-label {
  font-family: ui-monospace, "Geist Mono", monospace;
  font-size: 11px; letter-spacing: .1em;
  color: rgba(26,26,26,.5); margin-bottom: 18px;
}
.panel-title {
  font-family: "PT Serif", Georgia, serif;
  font-size: 32px; font-weight: 700;
  letter-spacing: -.01em; line-height: 1.1; margin: 0;
}
.panel-body { font-size: 15px; color: rgba(26,26,26,.75); margin-top: 18px; line-height: 1.6; }
.panel-stats { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(26,26,26,.12); }
.panel-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.panel-stat-k { font-family: ui-monospace, "Geist Mono", monospace; font-size: 10px; color: rgba(26,26,26,.5); text-transform: uppercase; letter-spacing: .1em; }
.panel-stat-v { font-size: 14px; margin-top: 4px; font-weight: 500; }
.panel-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #c8553d; font-size: 14px;
  border-bottom: 1px solid currentColor;
  text-decoration: none; transition: opacity .15s;
}
.panel-link:hover { opacity: .75; }

/* Stats strip */
.stats-strip {
  padding: 32px 48px 16px;
  margin-top: 64px;
  border-top: 1px solid rgba(26,26,26,.15);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { position: relative; }
.stat-item + .stat-item { padding-left: 32px; border-left: 1px solid rgba(26,26,26,.12); }
.stat-n { font-family: "PT Serif", Georgia, serif; font-size: 56px; font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.stat-l { font-size: 13px; color: rgba(26,26,26,.7); margin-top: 12px; }
.stat-l strong { font-weight: 500; }

/* ─── METHOD ─── */
.method { padding: 88px 48px; background: #1a1a1a; color: #f7f5f0; }
.method-inner { max-width: 1100px; margin: 0 auto; }
.method .section-tag { opacity: .6; }
.method-h2 {
  font-family: "PT Serif", Georgia, serif;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: .95; font-weight: 700;
  letter-spacing: -.02em; max-width: 900px; margin: 0;
}
.method-h2 em { color: #c8553d; font-weight: 400; }
.method-sub { font-size: 18px; opacity: .75; margin-top: 36px; max-width: 600px; line-height: 1.55; }
.steps {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(247,245,240,.15);
}
.step { background: #1a1a1a; padding: 32px 28px; min-height: 200px; }
.step-n { font-family: ui-monospace, "Geist Mono", monospace; font-size: 12px; color: #c8553d; margin-bottom: 24px; }
.step-t { font-family: "PT Serif", Georgia, serif; font-size: 22px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 12px; }
.step-d { font-size: 13px; opacity: .7; line-height: 1.55; }

/* ─── REVIEWS ─── */
.reviews { padding: 88px 48px; }
.reviews-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 48px; }
.reviews-h2 { font-family: "PT Serif", Georgia, serif; font-size: clamp(40px, 4.5vw, 64px); font-weight: 700; letter-spacing: -.02em; margin: 0; }
.reviews-count { font-family: ui-monospace, "Geist Mono", monospace; font-size: 13px; color: rgba(26,26,26,.6); white-space: nowrap; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.review-card { padding: 32px 0; border-top: 1px solid rgba(26,26,26,.2); }
.review-idx { font-family: ui-monospace, "Geist Mono", monospace; font-size: 11px; color: rgba(26,26,26,.5); letter-spacing: .1em; }
.review-text { margin: 20px 0 24px; font-family: "PT Serif", Georgia, serif; font-size: 24px; line-height: 1.35; font-weight: 400; font-style: italic; }
.review-author { font-size: 13px; color: rgba(26,26,26,.7); }

/* ─── FAQ ─── */
.faq { padding: 88px 48px; background: #efeae0; }
.faq-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.faq-h2 { font-family: "PT Serif", Georgia, serif; font-size: clamp(40px, 4vw, 56px); font-weight: 700; letter-spacing: -.02em; line-height: 1; margin: 0; }
.faq-list { border-bottom: 1px solid rgba(26,26,26,.15); }
.faq-q {
  width: 100%; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: transparent; border: none; border-top: 1px solid rgba(26,26,26,.15);
  cursor: pointer; font: inherit; color: inherit; text-align: left;
}
.faq-q-text { font-family: "PT Serif", Georgia, serif; font-size: 24px; font-weight: 700; }
.faq-icon { font-size: 22px; color: #c8553d; transition: transform .2s; flex-shrink: 0; margin-left: 16px; }
.faq-icon.open { transform: rotate(45deg); }
.faq-a { padding-bottom: 24px; font-size: 16px; color: rgba(26,26,26,.75); max-width: 720px; line-height: 1.6; display: none; }
.faq-a.open { display: block; }

/* ─── HOME CONTACTS ─── */
.contacts { padding: 88px 48px; }
.contacts-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contacts-h2 { font-family: "PT Serif", Georgia, serif; font-size: clamp(40px, 4vw, 56px); font-weight: 700; letter-spacing: -.02em; line-height: 1; margin: 0; margin-top: 24px; }
.contacts-table { margin-top: 40px; display: grid; gap: 1px; background: rgba(26,26,26,.15); border: 1px solid rgba(26,26,26,.15); }
.contacts-row { background: #f7f5f0; padding: 20px 24px; display: grid; grid-template-columns: 120px 1fr; gap: 16px; }
.contacts-row-key { font-family: ui-monospace, "Geist Mono", monospace; font-size: 11px; letter-spacing: .1em; color: rgba(26,26,26,.5); padding-top: 4px; text-transform: uppercase; }
.contacts-row-val { font-size: 16px; font-weight: 500; }
.contacts-map {
  border: 1px solid rgba(26,26,26,.15);
  background: #dbd5c8;
  background-image: linear-gradient(rgba(26,26,26,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(26,26,26,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  position: relative; min-height: 380px;
}
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 14px;
  background: #c8553d; color: #fff;
  font-family: ui-monospace, "Geist Mono", monospace;
  font-size: 11px; white-space: nowrap;
}

/* ════════════════════════════════════════
   CONTACTS PAGE
════════════════════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero { padding: 64px 48px 48px; }
.page-hero-h1 {
  font-family: "PT Serif", Georgia, serif;
  font-size: clamp(80px, 10vw, 140px);
  line-height: .9; font-weight: 700; letter-spacing: -.04em; margin: 0;
}
.page-hero-h1 em { color: #c8553d; font-weight: 400; }
.page-hero-sub { font-size: 20px; color: rgba(26,26,26,.7); margin-top: 32px; max-width: 640px; line-height: 1.5; }

/* ─── CONTACT CARDS ─── */
.contact-cards { padding: 24px 48px 80px; }
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(26,26,26,.15);
  border: 1px solid rgba(26,26,26,.15);
}
.card-link {
  padding: 36px; text-decoration: none;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px; transition: opacity .15s;
}
.card-link:hover { opacity: .9; }
.card-link.featured { background: #1a1a1a; color: #f7f5f0; }
.card-link:not(.featured) { background: #f7f5f0; color: #1a1a1a; }
.card-top { display: flex; justify-content: space-between; align-items: baseline; }
.card-label { font-size: 11px; font-family: ui-monospace, monospace; letter-spacing: .12em; }
.card-link.featured .card-label { color: #c8553d; }
.card-link:not(.featured) .card-label { color: rgba(26,26,26,.5); }
.card-num { font-family: ui-monospace, monospace; font-size: 13px; opacity: .5; }
.card-big { font-family: "PT Serif", Georgia, serif; font-weight: 700; line-height: 1.05; letter-spacing: -.02em; margin-bottom: 12px; word-break: break-word; }
.card-sub { font-size: 13px; margin-bottom: 24px; }
.card-link.featured .card-sub { color: rgba(247,245,240,.6); }
.card-link:not(.featured) .card-sub { color: rgba(26,26,26,.6); }
.card-action { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #c8553d; border-bottom: 1px solid #c8553d; padding-bottom: 2px; }

/* ─── MAP SECTION ─── */
.map-section { padding: 0 48px 80px; }
.map-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; border: 1px solid rgba(26,26,26,.15); }
.map-aside { padding: 40px; border-right: 1px solid rgba(26,26,26,.15); background: #efeae0; }
.map-aside-h2 { font-family: "PT Serif", Georgia, serif; font-size: 36px; font-weight: 700; line-height: 1.1; letter-spacing: -.02em; margin: 0; }
.directions-table { display: grid; gap: 1px; margin-top: 32px; background: rgba(26,26,26,.12); border: 1px solid rgba(26,26,26,.12); }
.dir-row { background: #efeae0; padding: 16px 18px; display: grid; grid-template-columns: 110px 1fr; gap: 12px; }
.dir-key { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .08em; color: rgba(26,26,26,.55); padding-top: 2px; }
.dir-val { font-size: 14px; }
.map-note { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(26,26,26,.15); font-size: 13px; color: rgba(26,26,26,.7); line-height: 1.6; }
.map-canvas {
  position: relative; min-height: 500px;
  background: #dbd5c8;
  background-image: linear-gradient(rgba(26,26,26,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(26,26,26,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow: hidden;
}
.map-canvas svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin-block {
  position: absolute; top: 50%; left: 52%;
  transform: translate(-50%, -100%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.map-pin-label { padding: 10px 16px; background: #1a1a1a; color: #f7f5f0; font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .06em; white-space: nowrap; }
.map-pin-triangle { width: 0; height: 0; border-left: 8px solid transparent; border-right: 8px solid transparent; border-top: 8px solid #1a1a1a; margin-top: -2px; }
.map-pin-dot { width: 16px; height: 16px; border-radius: 50%; background: #c8553d; box-shadow: 0 0 0 6px rgba(200,85,61,.25), 0 0 0 16px rgba(200,85,61,.12); }
.map-controls { position: absolute; top: 16px; right: 16px; display: grid; gap: 6px; }
.map-btn { width: 32px; height: 32px; background: #f7f5f0; border: 1px solid rgba(26,26,26,.2); font-size: 16px; color: #1a1a1a; display: grid; place-items: center; }
.map-coords { position: absolute; bottom: 16px; left: 16px; font-family: ui-monospace, monospace; font-size: 11px; background: #f7f5f0; padding: 6px 10px; color: rgba(26,26,26,.6); border: 1px solid rgba(26,26,26,.15); }

/* ─── HOURS ─── */
.hours { padding: 0 48px 100px; }
.hours-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; padding-top: 56px; border-top: 1px solid rgba(26,26,26,.15); }
.hours-h2 { font-family: "PT Serif", Georgia, serif; font-size: clamp(40px, 4vw, 56px); line-height: .95; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.hours-h2 em { color: #c8553d; font-weight: 400; }
.hours-note { font-size: 16px; color: rgba(26,26,26,.7); margin-top: 24px; max-width: 380px; }
.schedule-row { display: grid; grid-template-columns: 120px 1fr auto; padding: 20px 0; border-top: 1px solid rgba(26,26,26,.12); align-items: baseline; }
.schedule-row:last-child { border-bottom: 1px solid rgba(26,26,26,.12); }
.schedule-row.off { opacity: .55; }
.sched-day { font-family: "PT Serif", Georgia, serif; font-size: 24px; font-weight: 700; }
.sched-time { font-family: ui-monospace, monospace; font-size: 18px; }
.sched-open { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .1em; color: #c8553d; }

/* ─── CTA SECTION (contacts page) ─── */
.cta-section { padding: 0 48px 100px; }
.cta-inner {
  background: #1a1a1a; color: #f7f5f0;
  padding: 72px 56px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: center;
}
.cta-tag { font-size: 11px; font-family: ui-monospace, monospace; letter-spacing: .12em; color: #c8553d; margin-bottom: 20px; }
.cta-h2 { font-family: "PT Serif", Georgia, serif; font-size: clamp(40px, 5vw, 64px); line-height: .95; font-weight: 700; letter-spacing: -.03em; margin: 0; }
.cta-sub { font-size: 17px; opacity: .75; margin-top: 24px; max-width: 480px; }
.cta-links { display: grid; gap: 12px; }
.cta-phone {
  padding: 24px 28px; background: #c8553d; color: #f7f5f0; text-decoration: none;
  font-family: "PT Serif", Georgia, serif; font-size: 30px; font-weight: 700;
  display: flex; justify-content: space-between; align-items: center; transition: background .2s;
}
.cta-phone:hover { background: #b5452d; }
.cta-email {
  padding: 20px 28px; border: 1px solid rgba(247,245,240,.3);
  color: #f7f5f0; text-decoration: none; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center; transition: border-color .2s;
}
.cta-email:hover { border-color: rgba(247,245,240,.6); }
.cta-email-text { font-family: ui-monospace, monospace; }

/* ════════════════════════════════════════
   ARTICLE PAGE
════════════════════════════════════════ */

/* ─── BREADCRUMB ─── */
.eyebrow { padding: 64px 48px 32px; }
.breadcrumb {
  font-size: 12px; font-family: ui-monospace, monospace;
  letter-spacing: .08em; color: rgba(26,26,26,.55);
  display: flex; align-items: center; gap: 0;
}
.breadcrumb a { text-decoration: none; color: inherit; }
.breadcrumb a:hover { color: #1a1a1a; }
.breadcrumb-sep { margin: 0 10px; opacity: .4; }
.breadcrumb-current { color: #c8553d; }

/* ─── ARTICLE HEADER ─── */
.article-header { padding: 0 48px 56px; }
.article-header-grid { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: end; }
.article-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 28px; font-size: 12px; font-family: ui-monospace, monospace; letter-spacing: .08em; color: rgba(26,26,26,.55); }
.meta-cat { background: #c8553d; color: #f7f5f0; padding: 4px 10px; }
.article-h1 {
  font-family: "PT Serif", Georgia, serif;
  font-size: clamp(56px, 7.5vw, 96px);
  line-height: .95; font-weight: 700; letter-spacing: -.03em; margin: 0;
  overflow-wrap: break-word; hyphens: auto; max-width: 900px;
}
.article-subtitle { font-family: "PT Serif", Georgia, serif; font-size: 30px; font-style: italic; color: rgba(26,26,26,.7); margin-top: 28px; line-height: 1.3; max-width: 720px; }
.author-card { padding: 24px; border: 1px solid rgba(26,26,26,.15); background: #efeae0; }
.author-label { font-size: 11px; font-family: ui-monospace, monospace; letter-spacing: .1em; color: rgba(26,26,26,.5); margin-bottom: 14px; }
.author-row { display: flex; gap: 14px; align-items: center; }
.author-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: #dad3c2; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: "PT Serif", Georgia, serif; font-size: 22px; font-weight: 700;
  border: 1px solid rgba(26,26,26,.12); color: #1a1a1a;
}
.author-name { font-family: "PT Serif", Georgia, serif; font-size: 18px; font-weight: 700; }
.author-role { font-size: 12px; color: rgba(26,26,26,.6); margin-top: 2px; }

/* ─── SPINE FIGURES ─── */
.spine-fig { padding: 0 48px 80px; }
.spine-fig-inner {
  height: 480px; position: relative; background: #efeae0;
  border: 1px solid rgba(26,26,26,.12);
  display: grid; grid-template-columns: 1fr 1fr;
}
.fig-panel { position: relative; padding: 56px 40px 32px; display: flex; justify-content: center; align-items: flex-start; overflow: hidden; }
.fig-panel + .fig-panel { border-left: 1px solid rgba(26,26,26,.12); }
.fig-label { position: absolute; top: 24px; left: 24px; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .1em; color: rgba(26,26,26,.5); }
.fig-panel svg { display: block; }
figcaption { margin-top: 16px; font-size: 13px; font-family: ui-monospace, monospace; color: rgba(26,26,26,.55); letter-spacing: .04em; }

/* ─── ARTICLE BODY ─── */
.article-body { padding: 0 48px; }
.body-grid { display: grid; grid-template-columns: 240px 1fr 240px; gap: 64px; }

/* TOC */
.toc { position: sticky; top: 84px; align-self: start; }
.aside-label { font-size: 11px; font-family: ui-monospace, monospace; letter-spacing: .1em; color: rgba(26,26,26,.5); margin-bottom: 18px; }
.toc-list { list-style: none; padding: 0; display: grid; gap: 12px; }
.toc-item { display: grid; grid-template-columns: 24px 1fr; gap: 8px; font-size: 13px; }
.toc-num { font-family: ui-monospace, monospace; color: rgba(26,26,26,.4); }
.toc-link { color: rgba(26,26,26,.85); line-height: 1.4; }
.toc-link:hover { color: #c8553d; }

/* Prose */
.prose { font-size: 19px; line-height: 1.7; color: rgba(26,26,26,.88); max-width: 720px; }
.prose p { margin: 0 0 1.2em; }
.prose p:first-child { margin-top: 0; }
.drop-cap-wrap { margin-bottom: 1.2em; }
.drop-cap { float: left; font-family: "PT Serif", Georgia, serif; font-size: 88px; line-height: .85; font-style: normal; color: #c8553d; margin-right: 14px; margin-top: 6px; }
.article-h2 {
  font-family: "PT Serif", Georgia, serif; font-size: 44px; font-weight: 700; line-height: 1.05;
  margin: 64px 0 24px; letter-spacing: -.02em;
  padding-top: 32px; border-top: 1px solid rgba(26,26,26,.12);
  display: flex; align-items: baseline; gap: 14px;
}
.section-mark { font-family: ui-monospace, monospace; font-size: 13px; color: #c8553d; font-weight: 400; flex-shrink: 0; }
.pull-quote {
  margin: 40px -32px;
  font-family: "PT Serif", Georgia, serif; font-size: 36px; font-style: italic;
  line-height: 1.3; font-weight: 400; color: #c8553d;
  padding: 28px 32px;
  border-top: 1px solid #c8553d; border-bottom: 1px solid #c8553d;
}
.prose-list { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 12px; }
.prose-list li { display: grid; grid-template-columns: 32px 1fr; gap: 8px; align-items: baseline; }
.list-dash { font-family: ui-monospace, monospace; font-size: 13px; color: #c8553d; }

/* Stats block */
.stats-block { margin: 48px 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(26,26,26,.15); border: 1px solid rgba(26,26,26,.15); }
.stat-cell { background: #f7f5f0; padding: 28px; }
.stat-cell-n { font-family: "PT Serif", Georgia, serif; font-size: 56px; font-weight: 700; line-height: 1; letter-spacing: -.02em; color: #c8553d; }
.stat-cell-l { font-size: 13px; color: rgba(26,26,26,.7); margin-top: 12px; }

/* Author note */
.author-note { margin-top: 64px; padding: 32px 36px; background: #efeae0; border-left: 3px solid #c8553d; }
.author-note-label { font-size: 11px; font-family: ui-monospace, monospace; letter-spacing: .1em; color: rgba(26,26,26,.5); margin-bottom: 14px; }
.author-note-text { font-family: "PT Serif", Georgia, serif; font-size: 22px; font-style: italic; line-height: 1.45; margin: 0; }
.author-note-sig { margin-top: 16px; font-size: 13px; color: rgba(26,26,26,.65); }

/* Share sidebar */
.share-sidebar { position: sticky; top: 84px; align-self: start; }
.share-btn { display: block; width: 100%; padding: 10px 14px; text-align: left; border: 1px solid rgba(26,26,26,.15); background: #f7f5f0; font-size: 13px; color: #1a1a1a; cursor: pointer; margin-bottom: 8px; transition: border-color .15s; }
.share-btn:hover { border-color: rgba(26,26,26,.4); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.tag { padding: 4px 10px; font-size: 12px; border: 1px solid rgba(26,26,26,.2); color: rgba(26,26,26,.7); }

/* ─── ARTICLE CTA ─── */
.article-cta { padding: 120px 48px 80px; }
.article-cta-inner {
  border-top: 1px solid rgba(26,26,26,.15); padding-top: 56px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 64px; align-items: end;
}
.article-cta-h2 { font-family: "PT Serif", Georgia, serif; font-size: clamp(48px, 5vw, 72px); line-height: .95; font-weight: 700; letter-spacing: -.03em; margin: 0; }
.article-cta-h2 em { color: #c8553d; font-weight: 400; }
.cta-phone-btn {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px; background: #1a1a1a; color: #f7f5f0; text-decoration: none;
  font-family: "PT Serif", Georgia, serif; font-size: 28px; font-weight: 700; transition: background .2s;
}
.cta-phone-btn:hover { background: #333; }
.cta-address { margin-top: 12px; font-size: 13px; color: rgba(26,26,26,.6); }

/* ─── RELATED ARTICLES ─── */
.related { padding: 56px 48px 100px; background: #efeae0; }
.related-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 36px; }
.related-h2 { font-family: "PT Serif", Georgia, serif; font-size: 44px; font-weight: 700; letter-spacing: -.02em; margin: 0; }
.related-all { font-size: 13px; color: #c8553d; text-decoration: none; border-bottom: 1px solid currentColor; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(26,26,26,.15); border: 1px solid rgba(26,26,26,.15); }
.related-card { background: #f7f5f0; padding: 28px; text-decoration: none; color: #1a1a1a; min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; transition: background .15s; }
.related-card:hover { background: #f0ece2; }
.related-cat { font-size: 11px; font-family: ui-monospace, monospace; letter-spacing: .1em; color: #c8553d; }
.related-title { font-family: "PT Serif", Georgia, serif; font-size: 22px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
.related-read { font-size: 12px; font-family: ui-monospace, monospace; color: rgba(26,26,26,.55); }

/* ════════════════════════════════════════
   DEFAULT PAGE
════════════════════════════════════════ */
.default-content { padding: 64px 48px; max-width: 860px; }
.default-content h1 { font-family: "PT Serif", Georgia, serif; font-size: clamp(40px, 5vw, 64px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 32px; }
.default-content h2 { font-family: "PT Serif", Georgia, serif; font-size: 32px; font-weight: 700; margin: 40px 0 16px; }
.default-content p { font-size: 18px; line-height: 1.7; margin-bottom: 1.4em; color: rgba(26,26,26,.85); }
.default-content ul, .default-content ol { padding-left: 24px; margin-bottom: 1.4em; font-size: 18px; line-height: 1.7; }
.default-content a { color: #c8553d; border-bottom: 1px solid currentColor; }

/* ════════════════════════════════════════
   ARTICLES LIST PAGE
════════════════════════════════════════ */

/* ─── HERO ─── */
.articles-hero { padding: 64px 48px 32px; }
.articles-hero-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: end; }
.articles-hero-h1 {
  font-family: "PT Serif", Georgia, serif;
  font-size: clamp(72px, 10vw, 140px);
  line-height: .9; font-weight: 700; letter-spacing: -.04em; margin: 0;
}
.articles-hero-h1 em { color: #c8553d; font-weight: 400; }
.articles-hero-sub { font-size: 18px; color: rgba(26,26,26,.7); line-height: 1.55; margin: 0; padding-bottom: 18px; }

/* ─── FILTER BAR ─── */
.articles-filter-bar { padding: 40px 48px 24px; border-bottom: 1px solid rgba(26,26,26,.15); }
.articles-filter-inner { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 24px; }
.articles-filter-buttons { display: flex; flex-wrap: wrap; gap: 6px; }
.articles-filter-btn {
  padding: 8px 16px; cursor: pointer;
  border: 1px solid rgba(26,26,26,.2);
  background: transparent; color: #1a1a1a;
  font-family: inherit; font-size: 13px; font-weight: 400;
  transition: background .15s, color .15s, border-color .15s;
}
.articles-filter-btn.active { background: #1a1a1a; color: #f7f5f0; border-color: #1a1a1a; font-weight: 500; }
.articles-filter-count { font-size: 12px; font-family: ui-monospace, monospace; letter-spacing: .1em; color: rgba(26,26,26,.55); white-space: nowrap; }

/* ─── GRID ─── */
.articles-grid-section { padding: 32px 48px 80px; }
.articles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(26,26,26,.15); border: 1px solid rgba(26,26,26,.15);
}

/* Featured card */
.art-card-featured {
  grid-column: span 2; display: block; text-decoration: none;
  background: #1a1a1a; color: #f7f5f0;
  padding: 48px; min-height: 380px; transition: opacity .15s;
}
.art-card-featured:hover { opacity: .92; }
.art-card-featured-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; }
.art-card-featured-label { font-size: 11px; font-family: ui-monospace, monospace; letter-spacing: .1em; color: #c8553d; }
.art-card-featured-meta { font-size: 12px; font-family: ui-monospace, monospace; opacity: .55; }
.art-card-featured-title { font-family: "PT Serif", Georgia, serif; font-size: 64px; line-height: .95; font-weight: 700; letter-spacing: -.03em; max-width: 900px; margin-bottom: 20px; }
.art-card-featured-sub { font-size: 19px; opacity: .75; max-width: 720px; font-family: "PT Serif", Georgia, serif; font-style: italic; line-height: 1.4; }
.art-card-featured-link { margin-top: 32px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: #c8553d; border-bottom: 1px solid #c8553d; padding-bottom: 2px; }

/* Regular card */
.art-card {
  display: flex; flex-direction: column; justify-content: space-between;
  background: #f7f5f0; padding: 32px; min-height: 280px;
  text-decoration: none; color: #1a1a1a; transition: background .15s;
}
.art-card:hover { background: #f0ece2; }
.art-card.art-card-stub { opacity: .65; }
.art-card-top { display: flex; justify-content: space-between; align-items: baseline; }
.art-card-cat { font-size: 11px; font-family: ui-monospace, monospace; letter-spacing: .1em; color: #c8553d; }
.art-card-num { font-family: ui-monospace, monospace; font-size: 12px; color: rgba(26,26,26,.4); }
.art-card-title { font-family: "PT Serif", Georgia, serif; font-size: 24px; font-weight: 700; line-height: 1.15; letter-spacing: -.01em; margin-bottom: 12px; }
.art-card-sub { margin: 0; font-size: 14px; color: rgba(26,26,26,.65); line-height: 1.5; }
.art-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid rgba(26,26,26,.12); margin-top: 18px; font-size: 12px; font-family: ui-monospace, monospace; color: rgba(26,26,26,.55); }

/* Empty state */
.articles-empty { padding: 80px 48px; text-align: center; display: none; }
.articles-empty.visible { display: block; }
.articles-empty-tag { font-size: 12px; font-family: ui-monospace, monospace; letter-spacing: .1em; color: rgba(26,26,26,.5); }
.articles-empty-title { font-family: "PT Serif", Georgia, serif; font-size: 36px; font-weight: 700; margin-top: 18px; letter-spacing: -.02em; }
.articles-empty-sub { font-size: 15px; color: rgba(26,26,26,.6); margin-top: 12px; }

/* ─── CTA ─── */
.articles-cta { padding: 80px 48px 100px; }
.articles-cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: end; padding-top: 56px; border-top: 1px solid rgba(26,26,26,.15); }
.articles-cta-tag { font-size: 11px; font-family: ui-monospace, monospace; letter-spacing: .12em; color: #c8553d; margin-bottom: 20px; }
.articles-cta-h2 { font-family: "PT Serif", Georgia, serif; font-size: clamp(48px, 5vw, 64px); line-height: .95; font-weight: 700; letter-spacing: -.03em; margin: 0; }
.articles-cta-h2 em { color: #c8553d; font-weight: 400; }
.articles-cta-sub { font-size: 16px; color: rgba(26,26,26,.7); margin-top: 24px; max-width: 480px; }
.articles-cta-phone { padding: 24px 28px; background: #1a1a1a; color: #f7f5f0; text-decoration: none; font-family: "PT Serif", Georgia, serif; font-size: 30px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; transition: background .2s; }
.articles-cta-phone:hover { background: #333; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1180px) {
  .nav-logo-est { display: none; }
  .body-grid { grid-template-columns: 200px 1fr 200px; gap: 40px; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .service-panel { display: none; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .body-grid { grid-template-columns: 1fr; }
  .toc { display: none; }
  .share-sidebar { display: none; }
  .article-header-grid { grid-template-columns: 1fr; }
  .spine-fig-inner { height: auto; grid-template-columns: 1fr; }
  .fig-panel + .fig-panel { border-left: none; border-top: 1px solid rgba(26,26,26,.12); }
  .fig-panel { height: 400px; }
  .article-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .page-hero { padding: 48px 24px 32px; }
  .contact-cards { padding: 16px 24px 48px; }
  .map-section { padding: 0 24px 48px; }
  .hours { padding: 0 24px 64px; }
  .cta-section { padding: 0 24px 64px; }
  .footer { padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 780px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; }
  .map-aside { border-right: none; border-bottom: 1px solid rgba(26,26,26,.15); }
  .hours-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { grid-template-columns: 1fr; padding: 48px 32px; }
  .eyebrow { padding: 40px 24px 24px; }
  .article-header { padding: 0 24px 40px; }
  .spine-fig { padding: 0 24px 48px; }
  .article-body { padding: 0 24px; }
  .pull-quote { margin: 32px 0; font-size: 26px; }
  .article-cta { padding: 64px 24px 48px; }
  .related { padding: 40px 24px 64px; }
  .related-grid { grid-template-columns: 1fr; }
  .stats-block { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .contacts-inner { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .hero { grid-template-columns: 1fr; padding: 32px 24px 48px; gap: 32px; }
  .method { padding: 64px 24px; }
  .reviews { padding: 64px 24px; }
  .faq { padding: 64px 24px; }
  .contacts { padding: 64px 24px; }
  .footer { padding: 40px 24px; }
  .stats-strip { grid-template-columns: 1fr 1fr; padding-inline: 24px; gap: 16px; }
  .stat-item + .stat-item { padding-left: 16px; }
  .stat-n { font-size: 40px; }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; gap: 12px; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cta-inner { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}
