:root {
  --bg: #ffffff;
  --ink: #000000;
  --muted: #5f6368;
  --line: rgba(0, 0, 0, 0.08);
  --shell: min(1310px, calc(100vw - 7.5rem));
  --content-width: 650px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
}

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  background: var(--bg);
}

.site-header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 12px 0 0;
}

.brand {
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.4;
}

.site-nav {
  display: flex;
  gap: 1.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  background: var(--ink);
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.site-footer {
  padding: 42px 0 0;
}

.footer-panel {
  display: block;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.legal-links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.legal-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 16px;
}

.legal-disclaimer {
  padding-top: 0;
}

.footer-copy,
.copyright {
  font-size: 16px;
  line-height: 1.4;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.copyright {
  margin: 18px 0 0;
  color: var(--muted);
}

.page-main {
  padding-bottom: 4rem;
}

.page-hero {
  padding: 3rem 0 0;
}

.page-hero .shell {
  max-width: var(--content-width);
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.prose,
.two-up {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section {
  padding: 1.2rem 0 0;
}

.prose p,
.two-up p {
  margin: 0 0 1.6rem;
  font-size: 16px;
  line-height: 1.6;
}

.card {
  margin-bottom: 2rem;
}

.card h2 {
  margin: 0 0 0.85rem;
  font-size: 28px;
  line-height: 1.2;
}

.text-link {
  color: var(--ink);
}

.home-main {
  padding-top: 20px;
}

.home-content {
  width: min(1220px, calc(100vw - 7.5rem));
  margin: 0 auto;
}

.home-image-wrap {
  width: 620px;
  max-width: 100%;
  margin: 34px auto 22px;
}

.home-image {
  width: 100%;
  height: auto;
}

.home-copy {
  width: var(--content-width);
  max-width: 100%;
  margin: 0 auto;
}

.home-copy p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  :root {
    --shell: min(100vw - 4.5rem, 1310px);
    --content-width: 620px;
  }

  .site-header-inner {
    gap: 1.5rem;
  }

  .site-nav {
    gap: 1.1rem;
  }

  .site-nav a,
  .legal-links a,
  .copyright,
  .home-copy p,
  .prose p,
  .two-up p {
    font-size: 15px;
  }

  .home-image-wrap {
    width: 580px;
    margin-top: 28px;
  }

  .site-footer {
    padding-top: 34px;
  }

  .footer-top {
    margin-bottom: 48px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100vw - 3.25rem, 1310px);
    --content-width: 100%;
  }

  .site-header-inner,
  .footer-top {
    flex-direction: column;
    gap: 1rem;
  }

  .site-header-inner {
    padding-top: 14px;
    position: relative;
  }

  .site-nav {
    justify-content: flex-start;
    gap: 0.9rem 1.15rem;
    width: 100%;
  }

  .home-content,
  .home-copy,
  .page-hero .shell,
  .prose,
  .two-up {
    width: var(--shell);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero {
    padding-top: 1.4rem;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .home-main {
    padding-top: 10px;
  }

  .home-image-wrap {
    width: 100%;
    margin: 18px auto 20px;
  }

  .home-copy {
    width: 100%;
  }

  .site-footer {
    padding-top: 24px;
  }

  .footer-top {
    margin-bottom: 36px;
  }

  .legal-links {
    justify-content: flex-start;
    gap: 0.75rem 1.15rem;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100vw - 4rem);
  }

  .brand,
  .site-nav a,
  .legal-links a {
    font-size: 15px;
  }

  .site-header-inner {
    padding-top: 10px;
    gap: 0.6rem;
    align-items: stretch;
  }

  .menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 6px;
    right: 0;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.55rem 0 0.15rem;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .home-content,
  .home-copy {
    width: var(--shell);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .page-main {
    padding-bottom: 3rem;
  }

  .page-hero {
    padding-top: 1rem;
  }

  .page-hero h1 {
    font-size: 32px;
  }

  .eyebrow {
    margin-bottom: 0.5rem;
    font-size: 11px;
  }

  .home-main {
    padding-top: 2px;
  }

  .home-copy p,
  .prose p,
  .two-up p,
  .copyright {
    font-size: 14px;
    line-height: 1.55;
  }

  .footer-copy {
    font-size: 13px;
    line-height: 1.5;
  }

  .home-copy p {
    margin-bottom: 18px;
  }

  .card h2 {
    font-size: 24px;
  }

  .site-footer {
    padding-top: 16px;
  }

  .footer-top {
    margin-bottom: 26px;
  }

  .copyright {
    margin-top: 14px;
  }
}

.tenant-shell {
  max-width: 710px;
  margin: 0 auto;
}

.tenant-hero {
  padding: 4.8rem 0 0;
}

.tenant-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4.5vw, 3.55rem);
  line-height: 1.06;
  font-weight: 400;
  text-align: center;
}

.tenant-divider {
  width: 150px;
  height: 1px;
  margin: 3rem auto 1.2rem;
  background: rgba(0, 0, 0, 0.6);
}

.tenant-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.tenant-contact-grid p {
  margin: 0 0 0.45rem;
  font-size: 16px;
  line-height: 1.4;
}

.tenant-contact-spacer {
  margin-top: 1.2rem;
}

.tenant-section {
  padding-top: 1.75rem;
}

.tenant-prose {
  font-size: 16px;
  line-height: 1.55;
}

.tenant-prose h2 {
  margin: 1.75rem 0 0.7rem;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.tenant-prose p {
  margin: 0 0 0.35rem;
  font-size: 16px;
  line-height: 1.55;
}

.tenant-prose ul {
  margin: 0 0 1rem 1.05rem;
  padding: 0;
}

.tenant-prose li {
  margin: 0 0 0.2rem;
  padding-left: 0.15rem;
}

.tenant-lead,
.tenant-sublead {
  font-weight: 700;
}

.tenant-sublead {
  margin-top: 1.6rem;
}

.about-shell {
  max-width: 600px;
  margin: 0 auto;
}

.about-hero {
  padding: 5.2rem 0 0;
}

.about-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.8vw, 3.75rem);
  line-height: 1.08;
  font-weight: 400;
  text-align: center;
}

.about-section {
  padding-top: 3rem;
}

.about-prose p {
  margin: 0 0 1.35rem;
  font-size: 16px;
  line-height: 1.55;
}

.shared-page-shell {
  max-width: 760px;
  margin: 0 auto;
}

.shared-page-hero {
  padding: 4.4rem 0 0;
}

.shared-page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.9rem, 4.8vw, 3.9rem);
  line-height: 1.08;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.contact-page .shared-page-hero h1 {
  text-transform: none;
}

.shared-page-section {
  padding-top: 2rem;
}

.shared-page-prose p {
  margin: 0 0 1.35rem;
  font-size: 16px;
  line-height: 1.55;
}

.notary-intro-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  align-items: center;
  justify-content: center;
  gap: 1.65rem;
  margin: 2.2rem auto 0.8rem;
  max-width: 540px;
}

.notary-logo-wrap {
  display: flex;
  justify-content: center;
}

.notary-logo {
  width: 176px;
  height: auto;
  margin: 0 auto;
}

.notary-contact p {
  margin: 0 0 0.35rem;
  font-size: 16px;
  line-height: 1.45;
}

.notary-tagline {
  margin: 0.9rem 0 1rem;
  font-size: 16px;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
}

.notary-section-block {
  margin-top: 1.1rem;
}

.notary-section-block h2,
.shared-contact-section h2 {
  margin: 0 0 0.75rem;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  text-align: center;
}

.notary-list {
  margin: 0 0 0 1.15rem;
  padding: 0;
}

.notary-list li {
  margin: 0 0 0.2rem;
  font-size: 16px;
  line-height: 1.45;
}

.shared-contact-section {
  margin-top: 1.6rem;
}

.shared-contact-note {
  margin: 0 0 0.45rem;
  font-size: 16px;
  line-height: 1.45;
}

.shared-contact-form {
  display: grid;
  gap: 0.8rem;
}

.shared-contact-form label {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}

.shared-contact-form label span {
  color: #d71920;
}

.shared-contact-form input,
.shared-contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(0, 0, 0, 0.38);
  border-radius: 0;
  font: inherit;
  color: inherit;
  background: #fff;
}

.shared-contact-form textarea {
  min-height: 200px;
  resize: vertical;
}

.shared-contact-submit {
  width: fit-content;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.45);
  background: #fff;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.shared-contact-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.shared-contact-status {
  min-height: 1.4em;
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.shared-contact-status[data-state="success"] {
  color: #0d6b3d;
}

.shared-contact-status[data-state="error"] {
  color: #b42318;
}

.legal-content h2,
.legal-content h3 {
  margin: 1.6rem 0 0.7rem;
  line-height: 1.35;
}

.legal-content h2 {
  font-size: 1.1rem;
}

.legal-content h3 {
  font-size: 1rem;
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.58;
}

.legal-content p {
  margin: 0 0 1rem;
}

.legal-content ol,
.legal-content ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-content li {
  margin: 0 0 0.45rem;
}

@media (max-width: 900px) {
  .shared-page-hero {
    padding-top: 3rem;
  }

  .shared-page-section {
    padding-top: 2rem;
  }

  .notary-intro-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.8rem;
  }

  .notary-contact {
    text-align: center;
  }

  .about-hero {
    padding-top: 3.35rem;
  }

  .about-section {
    padding-top: 2.4rem;
  }

  .tenant-hero {
    padding-top: 3rem;
  }

  .tenant-divider {
    margin-top: 2.2rem;
  }
}

@media (max-width: 640px) {
  .shared-page-hero {
    padding-top: 1.35rem;
  }

  .shared-page-hero h1 {
    font-size: 2.15rem;
  }

  .shared-page-section {
    padding-top: 1.6rem;
  }

  .shared-page-prose p,
  .notary-contact p,
  .notary-tagline,
  .notary-list li,
  .shared-contact-note,
  .shared-contact-form label {
    font-size: 14px;
    line-height: 1.55;
  }

  .notary-logo {
    width: 150px;
  }

  .shared-contact-form textarea {
    min-height: 160px;
  }

  .legal-content h2 {
    font-size: 1rem;
  }

  .legal-content h3,
  .legal-content p,
  .legal-content li {
    font-size: 14px;
    line-height: 1.55;
  }

  .about-hero {
    padding-top: 1.4rem;
  }

  .about-hero h1 {
    font-size: 2.15rem;
  }

  .about-section {
    padding-top: 1.8rem;
  }

  .about-prose p {
    font-size: 14px;
    line-height: 1.55;
  }

  .tenant-hero {
    padding-top: 1.25rem;
  }

  .tenant-hero h1 {
    font-size: 2rem;
  }

  .tenant-divider {
    width: 120px;
    margin: 1.9rem auto 1rem;
  }

  .tenant-contact-grid {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .tenant-contact-grid p,
  .tenant-prose p,
  .tenant-prose li,
  .tenant-prose h2 {
    font-size: 14px;
    line-height: 1.55;
  }

  .tenant-prose ul {
    margin-left: 0.95rem;
  }
}
