:root {
  --ink: #25221e;
  --muted: #6d6258;
  --paper: #f7f1e7;
  --paper-2: #fffaf2;
  --line: #dfd3c2;
  --red: #a83224;
  --red-dark: #7b241b;
  --charcoal: #151413;
  --gold: #c89a4b;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.utility-strip {
  background: var(--charcoal);
  color: #f3eadb;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px max(18px, calc((100vw - var(--max)) / 2));
  font-size: 13px;
}
.utility-strip span, .utility-strip a { overflow-wrap: anywhere; }
.nav-shell {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  min-height: 74px;
  padding: 12px max(18px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr auto auto;
  gap: 18px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 26px);
  font-size: 15px;
}
.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
}
.desktop-nav a[aria-current="page"] { border-color: var(--red); }
.header-cta, .button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  font-weight: 700;
}
.mobile-nav { display: none; }

.home-hero,
.page-hero,
.blog-hero,
.contact-hero,
.scale-intro,
.resource-preview,
.standards,
.policy-wrap,
.sitemap-grid,
.quote-cta {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 34px;
  align-items: stretch;
  padding: 58px 0 36px;
}
.hero-copy {
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  margin-bottom: 20px;
  letter-spacing: 0;
}
h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: 0;
}
h3 { font-size: 21px; line-height: 1.18; margin-bottom: 12px; }
.hero-copy p, .page-hero p, .blog-hero p, .contact-copy p {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
}
.hero-media {
  min-height: 420px;
  background: var(--charcoal);
  border-left: 12px solid var(--red);
  position: relative;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.hero-actions, .cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.button.secondary {
  background: transparent;
  color: var(--red-dark);
}
.scale-intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}
.scale-cards,
.service-catalog,
.article-grid {
  width: min(var(--max), calc(100% - 36px));
  margin: 30px auto 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  min-height: 220px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.52);
}
.card-rule {
  width: 48px;
  height: 4px;
  background: var(--red);
  display: block;
  margin-bottom: 22px;
}
.service-card p { color: var(--muted); }
.fit-band {
  width: 100%;
  background: var(--charcoal);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  padding: 54px max(18px, calc((100vw - var(--max)) / 2));
  margin: 0 auto 58px;
}
.fit-band p { color: #eadfcf; }
.text-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.fit-list article {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
  padding: 18px;
}
.fit-list span {
  display: block;
  color: #f0b2a8;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}
.fit-list strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.fit-list p {
  color: #d8ccbd;
  margin: 0;
  font-size: 14px;
}
.section-head {
  margin: 0 auto 24px;
}
.section-head.narrow { max-width: 680px; text-align: left; }
.article-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  min-height: 100%;
}
.article-index .article-card:first-child,
.resource-preview .article-card:first-child {
  grid-column: span 2;
}
.article-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.article-copy { padding: 22px; }
.article-copy time {
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}
.article-copy p { color: var(--muted); }
.quote-cta {
  background: var(--red);
  color: #fff;
  padding: 38px;
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}
.quote-cta p { color: #ffe8df; max-width: 660px; }
.quote-cta .button.primary {
  background: #fff;
  color: var(--red);
  border-color: #fff;
}
.quote-cta .button.secondary {
  color: #fff;
  border-color: rgba(255,255,255,.7);
}

.page-hero, .blog-hero {
  padding: 54px 0 36px;
}
.page-hero.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
}
.page-hero.split img,
.profile-split img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  border-left: 10px solid var(--red);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.breadcrumbs a::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}
.service-catalog.compact .service-card { min-height: 180px; }
.service-catalog .service-card {
  background:
    linear-gradient(180deg, rgba(168,50,36,.04), rgba(255,250,242,0) 42%),
    var(--paper-2);
}
.service-catalog .service-card:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(200,154,75,.05), rgba(255,250,242,0) 42%),
    var(--paper-2);
}

.profile-split {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 54px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.profile-copy {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 28px;
}
.profile-copy p { color: var(--muted); }
.profile-mini-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.profile-mini-grid article {
  border-top: 3px solid var(--red);
  background: var(--paper);
  padding: 14px;
}
.profile-mini-grid strong {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
}
.profile-mini-grid span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  line-height: 1.55;
}
.standard-rows {
  border-top: 1px solid var(--line);
  margin-bottom: 58px;
}
.standard-rows article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.standard-rows span {
  color: var(--red);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}
.standard-rows strong {
  display: block;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 8px;
}
.standard-rows p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 26px;
}
.blog-hero aside {
  background: var(--charcoal);
  color: #fff;
  padding: 26px;
  border-left: 8px solid var(--red);
}
.blog-hero aside p { color: #eadfcf; }
.article-hero {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 24px;
}
.article-hero h1 { font-size: clamp(34px, 4.2vw, 58px); }
.article-hero time { color: var(--red); font-weight: 800; }
.article-layout {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 34px;
  align-items: start;
}
.article-body {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 34px;
}
.article-body p { color: var(--muted); }
.article-side {
  background: var(--charcoal);
  color: #fff;
  padding: 20px;
  position: sticky;
  top: 20px;
}
.article-side img {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  margin-bottom: 18px;
}
.article-side p { color: #eadfcf; }
.article-aux {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.article-aux section {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 22px;
}
.article-aux a,
.article-aux-block a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}
.article-points {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px;
  margin-bottom: 26px;
}
.article-points h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
.article-points a,
.article-points span {
  display: block;
  padding: 8px 0;
  border-top: 1px solid var(--line);
}
.article-points a { color: var(--red-dark); font-weight: 700; }

.contact-hero {
  padding: 54px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1fr);
  gap: 28px;
}
.contact-copy {
  background: var(--charcoal);
  color: #fff;
  padding: 34px;
  border-left: 10px solid var(--red);
}
.contact-copy p { color: #eadfcf; }
.contact-facts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.contact-facts a, .contact-facts span {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.22);
  overflow-wrap: anywhere;
}
.quote-panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 34px;
}
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
}
.quote-form label {
  display: grid;
  gap: 7px;
}
.quote-form label > span {
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 800;
}
.quote-form input,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
  resize: vertical;
}
.quote-form textarea { min-height: 112px; }
.quote-form input:focus,
.quote-form textarea:focus {
  border-color: var(--red);
  outline: 2px solid rgba(168,50,36,.16);
}
.quote-form .wide,
.quote-form button {
  grid-column: 1 / -1;
}
.quote-form button {
  width: fit-content;
  cursor: default;
}

.plain-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 24px;
}
.policy-wrap {
  display: grid;
  gap: 16px;
  padding-bottom: 64px;
}
.policy-panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 24px;
}
.policy-panel span {
  color: var(--red);
  font-weight: 800;
}
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 64px;
}
.sitemap-grid > div {
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 24px;
}
.sitemap-grid a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.site-footer {
  background: var(--charcoal);
  color: #f8ecdc;
  padding: 48px max(18px, calc((100vw - var(--max)) / 2)) 22px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.footer-grid h2 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
}
.footer-grid a, .footer-grid span {
  display: block;
  color: #d9cbbb;
  padding: 5px 0;
  overflow-wrap: anywhere;
}
.footer-brand img { width: 52px; height: 52px; }
.footer-brand p { color: #d9cbbb; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.16);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: #d9cbbb;
}

@media (max-width: 900px) {
  .utility-strip { flex-direction: column; gap: 4px; }
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .desktop-nav, .header-cta { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav summary {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--line);
    cursor: pointer;
  }
  .mobile-nav div {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 128px;
    z-index: 10;
    background: var(--paper-2);
    border: 1px solid var(--line);
    padding: 12px;
    box-shadow: 0 14px 28px rgba(0,0,0,.16);
  }
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a:last-child { border-bottom: 0; }
  .home-hero,
  .page-hero.split,
  .scale-intro,
  .fit-band,
  .profile-split,
  .blog-hero,
  .article-layout,
  .contact-hero,
  .quote-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .home-hero { padding-top: 36px; }
  .hero-media, .hero-media img { min-height: 280px; }
  .scale-cards,
  .service-catalog,
  .article-grid,
  .article-aux,
  .sitemap-grid,
  .profile-mini-grid,
  .fit-list {
    grid-template-columns: 1fr;
  }
  .article-index .article-card:first-child,
  .resource-preview .article-card:first-child {
    grid-column: span 1;
  }
  .quote-cta { padding: 28px; }
  .article-side { position: static; }
}

@media (max-width: 520px) {
  .home-hero,
  .page-hero,
  .blog-hero,
  .contact-hero,
  .scale-intro,
  .resource-preview,
  .standards,
  .policy-wrap,
  .sitemap-grid,
  .quote-cta,
  .profile-split,
  .scale-cards,
  .service-catalog,
  .article-grid,
  .article-layout,
  .article-aux,
  .plain-hero {
    width: min(100% - 28px, var(--max));
  }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero-copy { padding: 18px 0; }
  .standard-rows article {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .quote-form { grid-template-columns: 1fr; }
  .contact-copy, .quote-panel, .article-body { padding: 24px; }
}
