:root {
  --oxblood: #6B1F2A;
  --oxblood-deep: #4A1019;
  --oxblood-soft: #8C2F3B;
  --cream: #F4EFE6;
  --cream-soft: #EAE3D5;
  --charcoal: #1C1A18;
  --charcoal-soft: #3A3631;
  --brass: #B8956A;
  --brass-deep: #8E6E48;
  --line: #D8CFBE;
  --white: #FFFFFF;
  --font-serif: Fraunces, Georgia, serif;
  --font-sans: Manrope, -apple-system, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-size: 16px;
  line-height: 1.6;
  background:
    radial-gradient(circle at 16% 22%, rgba(28, 26, 24, .035) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 78% 14%, rgba(107, 31, 42, .03) 0 1px, transparent 1px 100%),
    var(--cream);
  background-size: 24px 24px, 36px 36px, auto;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--cream);
  color: var(--charcoal);
  padding: 10px 14px;
  border: 1px solid var(--brass-deep);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.container.narrow {
  max-width: 920px;
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 90;
  background: rgba(244, 239, 230, .92);
  color: var(--charcoal);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--brass-deep);
  background: rgba(244, 239, 230, .86);
  backdrop-filter: blur(10px) saturate(120%);
  box-shadow: 0 10px 30px rgba(28, 26, 24, .08);
}

.header-inner {
  width: min(1180px, calc(100% - 28px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
}

.brand-mark {
  color: var(--brass-deep);
  flex: 0 0 auto;
}

.brand-word {
  display: block;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 25px;
  line-height: 1;
  font-variation-settings: "opsz" 72;
}

.brand-sub {
  display: block;
  margin-top: 4px;
  color: var(--brass-deep);
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav {
  justify-self: center;
  display: none;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.footer-grid a {
  position: relative;
  font-family: var(--font-serif);
  font-feature-settings: "smcp" 1;
  font-size: 15px;
  color: var(--charcoal);
}

.desktop-nav a::after,
.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--oxblood);
  transition: right .2s ease;
}

.desktop-nav a:hover::after,
.footer-grid a:hover::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone,
.header-cta {
  display: none;
}

.header-phone {
  font-weight: 700;
  color: var(--charcoal);
}

.mobile-phone,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--oxblood);
  background: rgba(255, 255, 255, .32);
}

.menu-toggle {
  border-color: var(--oxblood);
  cursor: pointer;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  margin: 0;
  background: currentColor;
  transform: translateX(-50%);
  transition: top .2s ease, transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  display: block;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  background: var(--cream);
  border-top: 1px solid transparent;
  transition: max-height .24s ease, border-color .24s ease, visibility .24s ease;
}

.mobile-menu.is-open {
  max-height: 360px;
  visibility: visible;
  border-color: var(--line);
}

.mobile-menu a {
  display: block;
  min-height: 54px;
  padding: 16px 20px 16px 42px;
  border-bottom: 1px solid var(--line);
  color: var(--oxblood);
  font-family: var(--font-serif);
  font-size: 20px;
  position: relative;
}

.mobile-menu a:first-child {
  margin-top: 10px;
}

.mobile-menu a::before {
  content: "▪";
  position: absolute;
  left: 20px;
  color: var(--brass-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid currentColor;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--oxblood);
  color: var(--cream);
  border-color: var(--oxblood);
}

.btn-primary:hover {
  background: var(--oxblood-deep);
  border-color: var(--oxblood-deep);
}

.btn-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 239, 230, .78);
}

.btn-light:hover {
  background: rgba(244, 239, 230, .1);
}

.btn-cream {
  background: var(--cream);
  color: var(--oxblood);
  border-color: var(--cream);
}

.btn-cream:hover {
  background: var(--cream-soft);
  border-color: var(--cream-soft);
}

.btn-large {
  min-height: 56px;
  padding-inline: 28px;
  gap: 12px;
}

.header-actions .header-phone,
.header-actions .header-cta {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-rule,
.footer-rule {
  width: min(620px, 100%);
  height: 7px;
  margin: 42px 0 28px;
  border-top: 2px solid var(--brass);
  border-bottom: 1px solid rgba(184, 149, 106, .72);
}

.credential-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(112px, 1fr));
  gap: 14px;
  max-width: 620px;
}

.credential-row span {
  min-height: 92px;
  aspect-ratio: 1 / 1;
  max-width: 118px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.25;
  font-feature-settings: "smcp" 1;
  background: rgba(184, 149, 106, .08);
}

.trust-band {
  background: var(--cream-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  min-height: 64px;
  width: min(1140px, calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 18px 0;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 13px;
  font-feature-settings: "smcp" 1;
  text-align: center;
}

.trust-inner span[aria-hidden="true"] {
  display: none;
  color: var(--brass-deep);
}

.section {
  padding: 74px 0;
}

.section-cream {
  background:
    radial-gradient(circle at 10% 18%, rgba(107, 31, 42, .025) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 78% 32%, rgba(28, 26, 24, .03) 0 1px, transparent 1px 100%),
    var(--cream);
  background-size: 28px 28px, 40px 40px, auto;
}

.section-soft {
  background:
    radial-gradient(circle at 22% 14%, rgba(28, 26, 24, .035) 0 1px, transparent 1px 100%),
    var(--cream-soft);
  background-size: 30px 30px, auto;
}

.section-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--brass-deep);
  font-family: var(--font-serif);
  font-size: 13px;
  font-feature-settings: "smcp" 1;
}

.section-dark .section-kicker {
  color: var(--brass);
}

h2,
h3,
blockquote {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 72;
  letter-spacing: 0;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 600;
}

.section-intro {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--charcoal-soft);
  font-size: 17px;
}

.section-dark .section-intro {
  color: var(--cream-soft);
}

.workbench {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 46px 0 22px;
  border: 1px solid var(--line);
  background: var(--line);
}

.workbench figure {
  margin: 0;
  min-width: 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.workbench img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
  transition: transform .5s ease;
}

.workbench figure:hover img {
  transform: scale(1.035);
}

.workbench figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(28, 26, 24, .76);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 13px;
  font-feature-settings: "smcp" 1;
}

.ledger-list {
  margin-top: 34px;
  border-top: 1px solid var(--brass-deep);
}

.ledger-entry {
  display: grid;
  grid-template-columns: 24px 1fr 34px;
  gap: 14px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(142, 110, 72, .48);
}

.ledger-dot {
  color: var(--brass-deep);
  font-size: 18px;
  align-self: start;
  margin-top: 3px;
}

.ledger-entry h3 {
  display: inline;
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--charcoal);
  background-image: linear-gradient(var(--oxblood), var(--oxblood));
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .22s ease;
}

.ledger-entry p {
  margin: 8px 0 0;
  color: var(--charcoal-soft);
  font-size: 16px;
}

.ledger-arrow {
  justify-self: end;
  color: var(--brass-deep);
  font-size: 34px;
  transition: transform .22s ease;
}

.coverage-list {
  margin-top: 42px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.coverage-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border-left: 4px solid var(--oxblood);
  background: var(--cream);
  padding: 22px 22px;
}

.coverage-row:nth-child(even) {
  background: rgba(244, 239, 230, .5);
}

.coverage-row strong {
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
}

.coverage-row code {
  color: var(--brass-deep);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-variant: small-caps;
  white-space: normal;
}

.coverage-row span {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--oxblood);
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  margin-top: 46px;
}

.standards-grid article {
  border-top: 1px solid rgba(184, 149, 106, .48);
  padding-top: 24px;
}

.standards-grid img {
  margin-bottom: 18px;
}

.standards-grid h3 {
  margin: 0;
  color: var(--cream);
  font-size: 20px;
  font-weight: 600;
}

.standards-grid p {
  margin: 10px 0 0;
  color: var(--cream-soft);
  font-size: 15px;
}

.review-stack {
  margin-top: 40px;
}

.review {
  position: relative;
  margin: 0;
  padding: 36px 0;
}

.review + .review {
  border-top: 2px solid var(--brass);
}

.review + .review::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  border-top: 1px solid rgba(184, 149, 106, .72);
}

.review span {
  position: absolute;
  left: 0;
  top: 28px;
  color: var(--oxblood);
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: .5;
}

.review blockquote {
  margin: 0;
  padding-left: 44px;
  max-width: 780px;
  color: var(--charcoal);
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.38;
  font-weight: 500;
  font-style: italic;
}

.review figcaption {
  margin-top: 18px;
  padding-left: 44px;
  color: var(--brass-deep);
  font-family: var(--font-serif);
  font-feature-settings: "smcp" 1;
  font-size: 14px;
}

.process-list {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list article > span {
  color: var(--brass-deep);
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: .95;
}

.process-list h3 {
  margin: 0;
  color: var(--charcoal);
  font-size: 20px;
  font-weight: 600;
}

.process-list p {
  margin: 7px 0 0;
  color: var(--charcoal-soft);
  font-size: 15px;
}

.cta-band {
  background: var(--oxblood);
  color: var(--cream);
  padding: 82px 0;
}

.cta-band h2 {
  max-width: 830px;
  font-weight: 500;
}

.cta-band p {
  margin: 18px 0 28px;
  color: var(--cream-soft);
  font-size: 17px;
}

.contact-grid {
  display: grid;
  gap: 38px;
  margin-top: 44px;
}

.contact-details {
  display: grid;
  gap: 24px;
  align-content: start;
}

.contact-details div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.contact-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--brass-deep);
  font-family: var(--font-serif);
  font-feature-settings: "smcp" 1;
  font-size: 13px;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 17px;
}

.contact-details a:hover {
  color: var(--oxblood);
}

.map-wrap {
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--cream-soft);
}

.map-wrap iframe {
  display: block;
}

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 64px 0 92px;
}

.site-footer .brand,
.site-footer .brand-sub,
.site-footer .brand-mark {
  color: var(--brass);
}

.site-footer .brand-word {
  color: var(--cream);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-grid p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--cream-soft);
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 18px;
  font-feature-settings: "smcp" 1;
}

.footer-grid a {
  display: block;
  width: max-content;
  color: var(--cream);
  margin: 10px 0;
}

.footer-grid a::after {
  background: var(--brass);
}

.footer-rule {
  width: 100%;
  margin: 44px 0 22px;
}

.footer-bottom {
  display: grid;
  gap: 10px;
  color: var(--cream-soft);
  font-family: var(--font-serif);
  font-feature-settings: "smcp" 1;
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: block;
  background: var(--oxblood);
  color: var(--cream);
  box-shadow: 0 -12px 28px rgba(28, 26, 24, .24);
  padding-bottom: env(safe-area-inset-bottom);
}

.mobile-call-bar a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 600;
}

.mobile-call-bar svg {
  color: var(--brass);
}

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .ledger-entry:hover h3 {
    background-size: 100% 2px;
  }

  .ledger-entry:hover .ledger-arrow {
    transform: translateX(4px);
  }
}

@media (min-width: 620px) {
  .credential-row {
    grid-template-columns: repeat(4, minmax(96px, 1fr));
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }

  .workbench {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .coverage-row {
    grid-template-columns: minmax(150px, 1fr) minmax(210px, 1.4fr) auto;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
  }

  .coverage-row span {
    justify-self: end;
  }

  .process-list article {
    grid-template-columns: 96px 1fr;
  }
}

@media (min-width: 760px) {
  .section {
    padding: 96px 0;
  }

  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 900px) {
  .mobile-call-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 64px;
  }
}

@media (min-width: 980px) {
  .desktop-nav {
    display: flex;
  }

  .header-phone,
  .header-cta {
    display: inline-flex;
  }

  .mobile-phone,
  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .trust-inner {
    grid-template-columns: auto auto auto auto auto auto auto auto auto;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
    white-space: nowrap;
  }

  .trust-inner span[aria-hidden="true"] {
    display: inline;
  }

  .standards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 70px;
    width: min(100% - 20px, 1180px);
    gap: 10px;
  }

  .brand-word {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .mobile-phone,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .credential-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .credential-row span {
    max-width: none;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .ledger-entry {
    grid-template-columns: 18px 1fr 24px;
    gap: 10px;
  }

  .ledger-entry h3 {
    font-size: 22px;
  }

  .workbench {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .process-list article > span {
    font-size: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .001ms;
    animation-duration: .001ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-call-bar,
  .hero-media,
  .map-wrap {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
