:root {
  --ink: #121214;
  --ink-soft: #303034;
  --muted: #6a696d;
  --paper: #f7f6f2;
  --white: #ffffff;
  --line: #e5e1d8;
  --gold: #c49d35;
  --gold-bright: #e6c94a;
  --max: 1180px;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.shell { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(229,225,216,.9);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo { display: block; width: 124px; height: auto; }
.brand-division {
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; }
.main-nav a { text-decoration: none; color: var(--ink-soft); }
.main-nav a:hover { color: var(--gold); }
.main-nav .nav-cta { padding: 10px 16px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); }
.main-nav .nav-cta:hover { background: var(--ink); color: var(--white); }

.hero {
  padding: 72px 0 68px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 12%, rgba(230,201,74,.16), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #faf9f5 60%, #f2eee1 100%);
}
.hero-inner { max-width: 910px; }
h1,h2,h3,p { text-wrap: pretty; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .18em;
}
h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(44px, 6.4vw, 70px);
  line-height: 1.04;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.effective-date {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  font-weight: 800;
}

.message-section {
  padding: 64px 0 112px;
  background: var(--paper);
}
.letter {
  max-width: 860px;
  padding: 54px 62px 88px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(44,37,21,.07);
}
.salutation {
  margin-top: 0;
  color: var(--ink) !important;
  font-weight: 750;
}
.letter p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 17px;
}
.letter p a {
  color: #8d6c18;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.signature {
  margin-top: 48px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.signature::before {
  content: "";
  width: 46px;
  height: 2px;
  margin-bottom: 20px;
  background: var(--gold);
}
.signature strong {
  margin-top: 10px;
  font-size: 18px;
}
.signature span {
  color: var(--muted);
  font-size: 14px;
}
.site-footer { padding: 34px 0; color: #aaa79f; background: #0d0d0f; }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-mark { width: 58px; height: auto; }
.footer-brand > div { display: flex; flex-direction: column; }
.footer-brand strong { color: #f1eee7; font-size: 13px; }
.footer-brand span { font-size: 12px; }
.footer-meta { display: flex; gap: 26px; font-size: 12px; }

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 68px; }
  .brand-logo { width: 106px; }
  .brand-division { padding-left: 10px; font-size: 9px; }
  .main-nav { gap: 10px; }
  .main-nav .nav-cta { padding: 8px 13px; font-size: 12px; }
  .hero { padding: 56px 0 54px; }
  h1 { font-size: clamp(40px, 12vw, 56px); }
  .effective-date { font-size: 17px; }
  .message-section { padding: 28px 0 72px; }
  .letter {
    width: min(calc(100% - 20px), 860px);
    padding: 34px 24px 64px;
  }
  .letter p { font-size: 16px; }
  .footer-grid, .footer-meta { align-items: flex-start; flex-direction: column; }
  .footer-meta { gap: 4px; }
}

/* Shared contact treatment, matching Anterior Solutions. */
.eyebrow-light { color: #f0dc7b; }
h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -.043em;
}
.contact-section {
  padding: 90px 0;
  color: var(--white);
  background: linear-gradient(135deg, #242426, #101012);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 90px;
}
.contact-grid h2 { max-width: 650px; }
.contact-grid > div:first-child > p:last-child {
  max-width: 620px;
  color: #e6e1d3;
  font-size: 17px;
}
.contact-card {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(0,0,0,.22);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.contact-row > span {
  color: #dccb94;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.contact-row a {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}
.contact-row address { font-style: normal; line-height: 1.55; }
.contact-row:last-child { border-bottom: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 680px) {
  .main-nav a:not(.nav-cta) { font-size: 12px; }
  .contact-section { padding: 72px 0; }
  .contact-row { grid-template-columns: 1fr; gap: 3px; }
}
