:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --surface-line: rgba(28, 53, 86, 0.1);
  --text: #152033;
  --muted: #556274;
  --blue: #14365f;
  --blue-strong: #0d2848;
  --blue-soft: #dce9f7;
  --gold: #b88c4c;
  --shadow: 0 22px 52px rgba(20, 54, 95, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(220, 233, 247, 0.5) 0%, rgba(245, 248, 252, 0.95) 20%, #fff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 54, 95, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 54, 95, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 78%);
}

.page-shell {
  position: relative;
}

.site-header,
.hero-section,
.intro-section,
.features-section,
.customers-section,
.services-section,
.featured-notarial,
.founder-section,
.commitment-section,
.contact-section,
.site-footer {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--blue), #214d80);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: grid;
  gap: 4px;
}

.brand-text strong,
.section-heading h2,
.hero-copy h1,
.feature-card h3,
.service-card h3,
.featured-copy h2,
.founder-copy h2,
.pillar-card h3,
.contact-copy h2,
.site-footer h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 12px 18px;
  border: 1px solid var(--surface-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(20, 54, 95, 0.06);
}

.site-nav a,
.text-link,
.footer-links a,
.contact-list a {
  color: var(--muted);
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--blue);
  transform: translateY(-1px);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.header-cta,
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #1b4675);
  box-shadow: 0 14px 30px rgba(20, 54, 95, 0.18);
}

.header-cta:hover,
.header-cta:focus-visible,
.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--blue);
  background: transparent;
  border-color: rgba(20, 54, 95, 0.2);
}

.btn-light {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.blue-secondary {
  color: var(--blue);
  background: #fff;
  border-color: rgba(20, 54, 95, 0.14);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 48px 0 32px;
}

.hero-copy {
  padding: 42px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  max-width: 10.5ch;
}

.hero-text,
.intro-copy p,
.featured-copy p,
.founder-copy p,
.pillar-card p,
.contact-copy p,
.footer-contact p {
  line-height: 1.75;
}

.hero-text {
  max-width: 56ch;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-visual-card,
.panel,
.feature-card,
.service-card,
.featured-copy,
.featured-visual,
.founder-visual,
.founder-copy,
.pillar-card,
.contact-form {
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual-card,
.intro-visual,
.featured-visual,
.founder-visual {
  overflow: hidden;
}

.hero-visual-card {
  background:
    radial-gradient(circle at top right, rgba(20, 54, 95, 0.08), transparent 34%),
    linear-gradient(180deg, #fff, #edf3fa);
}

.hero-visual-card img,
.intro-visual img,
.featured-visual img,
.founder-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-section,
.features-section,
.customers-section,
.services-section,
.founder-section,
.commitment-section,
.legal-section {
  padding-top: 54px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
  max-width: 760px;
}

.compact-heading {
  max-width: 640px;
}

.center-heading {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.featured-copy h2,
.founder-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--blue-strong);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.intro-grid,
.founder-layout,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.panel,
.service-card,
.feature-card,
.featured-copy,
.founder-copy,
.contact-form {
  padding: 28px;
}

.intro-visual {
  background:
    radial-gradient(circle at top left, rgba(184, 140, 76, 0.12), transparent 38%),
    linear-gradient(180deg, #fff, #eff4fa);
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 700;
}

.feature-grid,
.pillar-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card {
  min-height: 168px;
}

.feature-badge,
.service-index {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.customer-card {
  padding: 28px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 246, 252, 0.92));
  box-shadow: var(--shadow);
}

.customer-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.customer-badge {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.customer-head h3,
.customer-copy h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-strong);
}

.customer-head h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.customer-head p,
.customer-copy p,
.customer-list li {
  color: var(--muted);
  line-height: 1.72;
}

.customer-head p,
.customer-copy p {
  margin: 0;
}

.customer-copy h4 {
  margin: 18px 0 10px;
  font-size: 1.05rem;
}

.customer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card h3,
.pillar-card h3,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--blue-strong);
  font-size: 1.32rem;
}

.service-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.55;
  color: var(--muted);
}

.service-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.featured-notarial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 54px;
}

.featured-copy {
  background:
    linear-gradient(180deg, #fff, #f1f6fb);
}

.featured-copy p {
  color: var(--muted);
}

.featured-visual {
  background:
    radial-gradient(circle at top right, rgba(184, 140, 76, 0.13), transparent 34%),
    linear-gradient(180deg, #f4f8fc, #e8eef6);
}

.founder-visual {
  background:
    radial-gradient(circle at top left, rgba(20, 54, 95, 0.08), transparent 35%),
    linear-gradient(180deg, #fff, #edf3fa);
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-role {
  margin: 12px 0 18px;
  color: var(--blue);
  font-weight: 700;
}

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

.pillar-card {
  padding: 26px;
  text-align: center;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
}

.contact-section {
  margin-top: 56px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, var(--blue), #1d4774);
  color: #f4f8fd;
  box-shadow: 0 28px 60px rgba(20, 54, 95, 0.22);
}

.contact-section .eyebrow,
.contact-copy h2,
.contact-list a,
.contact-list p,
.contact-person strong,
.contact-person span {
  color: #fff;
}

.contact-copy h2 {
  max-width: 12ch;
}

.contact-person {
  display: grid;
  gap: 4px;
  margin: 24px 0 18px;
}

.contact-person strong {
  font-size: 1.1rem;
}

.contact-person span,
.contact-list span {
  color: rgba(255, 255, 255, 0.7);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.contact-list span,
.field span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  background: rgba(255, 255, 255, 0.95);
}

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--blue);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(20, 54, 95, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.field textarea {
  resize: vertical;
}

.btn-submit {
  justify-self: start;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.legal-grid {
  display: grid;
  gap: 22px;
}

.legal-shell {
  padding: 34px;
  border: 1px solid rgba(20, 54, 95, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(20, 54, 95, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 253, 0.94));
  box-shadow: 0 26px 60px rgba(20, 54, 95, 0.1);
}

.legal-heading {
  margin-bottom: 18px;
}

.legal-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.legal-overview-card {
  padding: 18px 20px;
  border: 1px solid rgba(20, 54, 95, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(240, 246, 252, 0.9));
  box-shadow: 0 12px 26px rgba(20, 54, 95, 0.06);
}

.legal-overview-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-strong);
}

.legal-overview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-card {
  padding: 0;
  border: 1px solid var(--surface-line);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #f7fafd);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.legal-card-privacy {
  background:
    radial-gradient(circle at top right, rgba(20, 54, 95, 0.06), transparent 24%),
    linear-gradient(180deg, #fff, #f4f8fc);
}

.legal-card-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: start;
  margin: 0;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
}

.legal-badge {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.legal-card h3,
.legal-block h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--blue-strong);
}

.legal-card h3 {
  margin: 0 0 6px;
  font-size: 1.42rem;
}

.legal-card-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-toggle summary::-webkit-details-marker {
  display: none;
}

.legal-toggle-label {
  align-self: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 54, 95, 0.08);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
}

.legal-toggle[open] .legal-toggle-label {
  background: rgba(184, 140, 76, 0.16);
  color: var(--blue-strong);
}

.legal-toggle[open] .legal-toggle-label::before {
  content: "Hide";
}

.legal-toggle:not([open]) .legal-toggle-label::before {
  content: "Read more";
}

.legal-toggle-body {
  padding: 0 28px 26px;
  border-top: 1px solid rgba(20, 54, 95, 0.08);
}

.legal-copy,
.legal-block p,
.legal-list li {
  color: var(--muted);
  line-height: 1.72;
}

.legal-copy p {
  margin: 0 0 14px;
}

.legal-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.legal-block h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.legal-block {
  padding: 18px 18px 16px;
  border: 1px solid rgba(20, 54, 95, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
  padding-left: 20px;
}

.site-footer {
  margin-top: 44px;
  padding: 28px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.footer-brand-lockup {
  align-items: flex-start;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 6px;
}

.footer-contact p {
  margin: 0;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-meta-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-meta-links a:hover,
.footer-meta-links a:focus-visible {
  color: var(--blue);
}

@media (max-width: 1100px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-section,
  .intro-grid,
  .customers-grid,
  .services-grid,
  .featured-notarial,
  .founder-layout,
  .contact-section,
  .footer-grid,
  .legal-subgrid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .legal-overview,
  .pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy h2,
  .hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
    padding-top: 18px;
  }

  .brand,
  .header-cta,
  .site-nav {
    width: 100%;
  }

  .brand {
    order: 1;
  }

  .site-nav {
    order: 2;
  }

  .header-cta {
    order: 3;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 14px;
    padding: 10px 14px;
  }

  .hero-section {
    padding-top: 26px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual-card {
    order: 2;
  }

  .intro-copy {
    order: 1;
  }

  .intro-visual {
    order: 2;
  }

  .featured-copy {
    order: 1;
  }

  .featured-visual {
    order: 2;
  }

  .founder-copy {
    order: 1;
  }

  .founder-visual {
    order: 2;
  }

  .contact-copy {
    order: 1;
  }

  .contact-form {
    order: 2;
  }

  .panel,
  .feature-card,
  .service-card,
  .featured-copy,
  .founder-copy,
  .contact-form,
  .footer-grid {
    padding: 22px;
  }

  .legal-shell {
    padding: 24px;
    border-radius: 26px;
  }

  .hero-visual-card,
  .contact-section {
    border-radius: 24px;
  }

  .feature-grid,
  .legal-overview,
  .pillar-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .legal-overview-card {
    padding: 22px;
  }

  .hero-copy {
    padding: 12px 0 4px;
  }

  .hero-actions,
  .contact-list {
    gap: 12px;
  }

  .btn-submit {
    width: 100%;
    justify-self: stretch;
  }

  .form-note {
    font-size: 0.88rem;
  }

  .legal-card-head {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .legal-toggle-body {
    padding: 0 22px 22px;
  }

  .legal-toggle-label {
    justify-self: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(1180px, calc(100vw - 24px));
  }

  body {
    font-size: 15px;
  }

  .site-header {
    gap: 14px;
    padding: 14px 0 6px;
  }

  .brand {
    gap: 12px;
    align-items: flex-start;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .brand-text strong {
    font-size: 1rem;
    line-height: 1.25;
  }

  .brand-text small {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .site-nav {
    gap: 12px;
    padding: 8px 12px;
    border-radius: 18px;
    font-size: 0.92rem;
    scroll-snap-type: x proximity;
  }

  .site-nav a {
    scroll-snap-align: start;
    white-space: nowrap;
  }

  .header-cta,
  .btn,
  .hero-actions .btn,
  .contact-copy .btn {
    width: 100%;
  }

  .hero-section,
  .intro-section,
  .features-section,
  .customers-section,
  .services-section,
  .featured-notarial,
  .founder-section,
  .commitment-section,
  .legal-section,
  .site-footer {
    padding-top: 34px;
  }

  .hero-section {
    gap: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .section-heading {
    gap: 10px;
    margin-bottom: 18px;
  }

  .section-heading h2,
  .featured-copy h2,
  .founder-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
    line-height: 1.06;
  }

  .feature-card,
  .service-card,
  .customer-card,
  .pillar-card,
  .featured-copy,
  .founder-copy,
  .contact-form,
  .footer-grid,
  .legal-overview-card {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-visual-card,
  .featured-visual,
  .founder-visual,
  .contact-section,
  .legal-shell,
  .legal-card {
    border-radius: 22px;
  }

  .customer-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .customer-head h3 {
    font-size: 1.2rem;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-badge,
  .service-index,
  .customer-badge,
  .legal-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .service-card h3,
  .pillar-card h3,
  .site-footer h3 {
    font-size: 1.18rem;
    margin-bottom: 10px;
  }

  .customer-copy h4,
  .legal-block h4 {
    font-size: 1rem;
  }

  .service-list,
  .customer-list,
  .legal-list {
    gap: 8px;
  }

  .featured-notarial,
  .founder-layout {
    gap: 18px;
  }

  .contact-section {
    margin-top: 40px;
    padding: 18px;
    gap: 18px;
  }

  .contact-copy h2 {
    max-width: none;
  }

  .contact-person {
    margin: 16px 0 14px;
  }

  .contact-form {
    gap: 12px;
  }

  .field input,
  .field textarea {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .legal-shell {
    padding: 18px;
  }

  .legal-overview {
    gap: 12px;
    margin-bottom: 14px;
  }

  .legal-card-head {
    gap: 12px;
    padding: 18px;
  }

  .legal-card h3 {
    font-size: 1.18rem;
  }

  .legal-card-head p {
    font-size: 0.95rem;
  }

  .legal-toggle-label {
    width: 100%;
    justify-self: stretch;
    text-align: center;
    padding: 9px 12px;
    font-size: 0.82rem;
  }

  .legal-toggle-body {
    padding: 0 18px 18px;
  }

  .legal-subgrid {
    gap: 12px;
  }

  .legal-block {
    padding: 14px;
    border-radius: 14px;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer-bottom {
    padding-top: 14px;
    font-size: 0.88rem;
  }
}

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

  .site-nav a,
  .text-link,
  .footer-links a,
  .contact-list a,
  .header-cta,
  .btn {
    transition: none;
  }
}
