/* UNIQUE_STYLE: notary-ledger-grid */
*, *::before, *::after { box-sizing: border-box; }
:root {
  --page: #ebe3d5;
  --paper: #fffaf2;
  --paper-warm: #f6efe3;
  --paper-deep: #e8ddcb;
  --ink: #13233b;
  --ink-soft: #263d60;
  --blue-ink: #1f4f82;
  --red-stamp: #8b2f26;
  --gold: #b68b35;
  --muted: #657083;
  --line: rgba(19, 35, 59, .18);
  --strong-line: rgba(19, 35, 59, .36);
  --shadow: 0 28px 80px rgba(19, 35, 59, .14);
  --max: 1180px;
  --measure: 720px;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(31,79,130,.13), transparent 34rem),
    radial-gradient(circle at 86% 12%, rgba(139,47,38,.10), transparent 28rem),
    linear-gradient(180deg, #fffaf2 0%, var(--page) 48%, #ded1be 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .48;
  background-image:
    linear-gradient(rgba(19,35,59,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19,35,59,.026) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--blue-ink); outline-offset: 5px; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -.045em;
  text-wrap: balance;
}
h1 {
  margin-bottom: 18px;
  max-width: 10ch;
  font-size: clamp(3.6rem, 9vw, 7.6rem);
  line-height: .86;
}
h2 {
  margin-bottom: 16px;
  max-width: 14ch;
  font-size: clamp(2rem, 4.6vw, 4.1rem);
  line-height: .95;
}
h3 {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  letter-spacing: -.01em;
}
p { color: var(--muted); }
.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(var(--max), calc(100% - 36px));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px;
  background: rgba(255, 250, 242, .9);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(19, 35, 59, .10);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--strong-line);
  background: var(--ink);
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .95rem;
  letter-spacing: .05em;
}
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  letter-spacing: -.02em;
}
.brand-copy em {
  color: var(--muted);
  font-style: normal;
  font-size: .76rem;
}
nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  color: var(--ink-soft);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
}
nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid transparent;
}
nav a:hover { border-color: var(--line); background: rgba(31,79,130,.06); color: var(--blue-ink); }
.nav-call { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.nav-call:hover { background: var(--blue-ink); color: #fff; }
section, footer {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}
.ledger-hero {
  min-height: 740px;
  padding: clamp(58px, 8vw, 96px) 0 clamp(42px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, .78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}
.hero-copy { position: relative; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--blue-ink);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}
.hero-lede {
  max-width: 680px;
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2.2vw, 1.36rem);
  line-height: 1.55;
}
.micro-scope-note {
  max-width: 680px;
  padding: 14px 16px;
  color: #39485e;
  background: rgba(255,250,242,.82);
  border-left: 4px solid var(--blue-ink);
  box-shadow: inset 0 0 0 1px rgba(31,79,130,.12);
  font-size: .95rem;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.primary-action, .secondary-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font-size: .88rem;
  font-weight: 950;
  letter-spacing: .02em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.primary-action { background: var(--ink); color: var(--paper); }
.secondary-action { background: rgba(255,250,242,.76); color: var(--ink); }
.primary-action:hover, .secondary-action:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 rgba(31,79,130,.16);
}
.hero-stats {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255,250,242,.78);
}
.hero-stats div { padding: 13px 14px; border-left: 1px solid var(--line); }
.hero-stats div:first-child { border-left: 0; }
dt {
  color: var(--blue-ink);
  font-size: .64rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}
dd {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-weight: 800;
}
.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
.desk-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #d9cab5;
  border: 1px solid rgba(19,35,59,.20);
  box-shadow: var(--shadow);
}
.desk-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(.92) contrast(1.03);
}
.hero-photo { min-height: 520px; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(19,35,59,.64));
  pointer-events: none;
}
.desk-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  padding: 7px 10px;
  color: #fffaf2;
  background: rgba(19,35,59,.72);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.seal-stack {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: min(330px, calc(100% - 36px));
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(19,35,59,.040) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19,35,59,.040) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid var(--strong-line);
  box-shadow: 0 20px 50px rgba(19,35,59,.22);
}
.seal-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red-stamp);
  font-size: .62rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.seal-face {
  width: 154px;
  height: 154px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border-radius: 50%;
  color: var(--red-stamp);
  border: 2px solid rgba(139,47,38,.65);
  box-shadow: inset 0 0 0 8px rgba(139,47,38,.08), inset 0 0 0 15px rgba(139,47,38,.045);
  text-align: center;
  text-transform: uppercase;
}
.seal-face span, .seal-face small {
  font-size: .58rem;
  font-weight: 950;
  letter-spacing: .15em;
}
.seal-face strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: .03em;
}
.instrument-id {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-align: center;
}
.seal-details {
  margin: 0;
  display: grid;
  border-top: 1px solid var(--line);
}
.seal-details div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}
.proof-banner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 6px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 0 18px 60px rgba(19,35,59,.12);
}
.proof-banner div {
  min-height: 108px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  border-left: 1px solid rgba(255,250,242,.18);
}
.proof-banner div:first-child { border-left: 0; }
.proof-banner span {
  color: rgba(255,250,242,.68);
  font-size: .65rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.proof-banner strong { color: #fff; font-size: 1rem; line-height: 1.35; }
.office-proof, .readiness-packet, .clause-list, .document-ledger, .visit-protocol, .boundary-table, .north-contact, .micro-boundary {
  margin-top: 62px;
  padding: clamp(28px, 5vw, 54px);
  background: rgba(255,250,242,.84);
  border: 1px solid var(--line);
  box-shadow: 0 16px 50px rgba(19,35,59,.075);
}
.office-proof {
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(360px, .84fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}
.section-copy p:not(.eyebrow), .wide-heading p, .north-contact p, .micro-boundary p {
  max-width: var(--measure);
  font-size: 1.03rem;
}
.photo-duo {
  display: grid;
  grid-template-columns: 1fr .74fr;
  align-items: end;
  gap: 14px;
}
.photo-duo .desk-photo { min-height: 350px; box-shadow: 0 18px 55px rgba(19,35,59,.13); }
.photo-duo .compact-photo { min-height: 270px; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}
.section-heading .eyebrow { margin-bottom: 10px; }
.section-heading h2 { margin-bottom: 0; }
.wide-heading {
  display: block;
  max-width: 850px;
}
.wide-heading h2 { max-width: 16ch; }
.packet-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.packet-grid article {
  min-height: 250px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(246,239,227,.82), rgba(255,250,242,.78));
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.packet-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--red-stamp);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 950;
}
.packet-grid p { margin-bottom: 0; font-size: .94rem; }
.clause-list ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 1px solid var(--line);
}
.clause-list li {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clause-list li > span {
  color: var(--blue-ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.clause-list strong { display: block; margin-bottom: 6px; color: var(--ink); }
.clause-list p { margin-bottom: 0; }
.ledger-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--strong-line);
  background: var(--paper);
}
table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: .94rem;
}
th, td {
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
th:first-child, td:first-child { border-left: 0; }
th {
  background: var(--ink);
  color: var(--paper);
  font-size: .66rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
tbody tr:nth-child(even) { background: rgba(246,239,227,.72); }
td:first-child {
  color: var(--red-stamp);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 900;
}
td:nth-child(2) { color: var(--ink); font-weight: 850; }
.protocol-rail {
  display: grid;
  border-top: 2px solid var(--ink);
}
.protocol-rail article {
  display: grid;
  grid-template-columns: 84px minmax(180px, .42fr) 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.protocol-rail span {
  color: var(--red-stamp);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 950;
}
.protocol-rail strong { color: var(--ink); }
.protocol-rail p { margin-bottom: 0; }
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.boundary-grid article {
  padding: 24px;
  background: linear-gradient(180deg, rgba(31,79,130,.08), rgba(255,250,242,.74));
  border: 1px solid rgba(31,79,130,.18);
}
.boundary-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
}
.boundary-grid li {
  padding: 11px 0 11px 24px;
  color: var(--muted);
  border-top: 1px solid rgba(31,79,130,.14);
  position: relative;
}
.boundary-grid li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1.35em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.contact-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.north-contact h2 { margin-left: auto; margin-right: auto; max-width: 13ch; }
.contact-actions { justify-content: center; }
address {
  margin-top: 24px;
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 750;
}
.micro-boundary { margin-bottom: 62px; }
.micro-boundary h2 { max-width: 15ch; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}
footer p { margin-bottom: 0; max-width: 820px; }
footer a { color: var(--blue-ink); font-weight: 950; }
footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 1040px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  nav { justify-content: flex-start; }
  .ledger-hero, .office-proof, .boundary-grid { grid-template-columns: 1fr; }
  .ledger-hero { min-height: auto; }
  .hero-media { max-width: 760px; }
  .proof-banner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .packet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .packet-grid article:last-child { grid-column: span 2; min-height: 190px; }
}
@media (max-width: 740px) {
  html { scroll-padding-top: 18px; }
  .site-header, section, footer { width: min(var(--max), calc(100% - 24px)); }
  .site-header { position: static; }
  .brand { min-width: 0; }
  nav, nav a { width: 100%; }
  nav a { justify-content: center; }
  h1 { font-size: clamp(3.2rem, 16vw, 5.1rem); }
  h2 { font-size: clamp(1.85rem, 10vw, 3rem); }
  .hero-stats, .proof-banner, .packet-grid, .clause-list ol, .photo-duo { grid-template-columns: 1fr; }
  .hero-stats div, .proof-banner div { border-left: 0; border-top: 1px solid var(--line); }
  .hero-stats div:first-child, .proof-banner div:first-child { border-top: 0; }
  .hero-photo { min-height: 390px; }
  .seal-stack { position: relative; right: auto; bottom: auto; width: 100%; }
  .seal-details div, .clause-list li, .protocol-rail article { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .packet-grid article, .packet-grid article:last-child { grid-column: auto; min-height: auto; }
  .packet-grid span { margin-bottom: 18px; }
  .ledger-table-wrap { overflow: visible; }
  table, thead, tbody, tr, th, td { display: block; min-width: 0; width: 100%; }
  thead { display: none; }
  tbody tr { padding: 12px 0; border-bottom: 1px solid var(--strong-line); }
  tbody tr:last-child { border-bottom: 0; }
  td {
    display: grid;
    grid-template-columns: 122px 1fr;
    gap: 12px;
    padding: 9px 14px;
    border: 0;
  }
  td::before {
    content: attr(data-label);
    color: var(--blue-ink);
    font-size: .62rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .primary-action, .secondary-action, .hero-actions, .contact-actions { width: 100%; }
  .office-proof, .readiness-packet, .clause-list, .document-ledger, .visit-protocol, .boundary-table, .north-contact, .micro-boundary { margin-top: 38px; padding: 24px; }
  footer { display: block; }
  footer a { display: inline-flex; margin-top: 14px; }
}
@media (max-width: 420px) {
  .brand-mark { width: 40px; height: 40px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy em { font-size: .68rem; }
  .desk-photo figcaption { position: static; background: var(--ink); }
  td { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Design vocabulary: notaryledgergrid professionalnotarydesk realdocumentphotography officeproof signingdesk appointmentreadiness sealstack notarypublic commissionrecord identityreview witnessplan acknowledgmentjurat oathcopycertification signerpresence ledgerproof directcontact regulatedservice microstaticpage noformscope */


/* Shared demo navigation back to the Website Development page. */
.wd-back-link {
  position: sticky;
  top: 12px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 12px 0 0 max(12px, calc((100vw - var(--max, 1120px)) / 2));
  padding: 0.58rem 0.86rem;
  border: 1px solid rgba(30, 40, 34, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: inherit;
  font: 800 0.86rem/1.1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(30, 40, 34, 0.12);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.wd-back-link:hover,
.wd-back-link:focus-visible,
.footer-back-to-web-development:hover,
.footer-back-to-web-development:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}

.footer-back-to-web-development {
  display: inline-flex;
  margin-left: 1rem;
  font-weight: 900;
}

@media (max-width: 660px) {
  .wd-back-link {
    margin-left: 11px;
    max-width: calc(100vw - 22px);
  }

  .footer-back-to-web-development {
    display: inline-flex;
    margin-left: 0;
    margin-top: 0.7rem;
  }
}
