@charset "UTF-8";
/* CSS Document */

/* =============================================
   RESET + TOKENS
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #d8a31e;
  --blue-mid: #f2cc8f;
  --blue-dark: #0a2e8a;
  --teal: #81b29a;
  --teal-light: #e4f7f5;
  --ink: #115a96;
  --ink-mid: #4a4f5c;
  --ink-light: #8a909f;
  --bg: #f4f1de;
  --white: #ffffff;
  --border: #e2e6ef;
}

/* =============================================
   BASE
   ============================================= */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: #000;
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
  text-decoration: none;
  border-radius: 6px;
}

.skip-link:focus { top: 1rem; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue-dark);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1,
.section-h,
.logo,
.vc-title,
.doc-stat-val,
.tb-num,
.svc h3,
.cta-wrap h2,
.footer-logo {
  font-family: 'Fraunces', serif;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

h1 span { color: var(--blue); }

.section-eye {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.section-h {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section-p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
}

/* =============================================
   NAV
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 64px;
  background: rgba(247, 249, 252, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo span {
  display: block;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.logo-accent { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-mid);
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-btn {
  background: var(--blue);
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 500 !important;
  font-size: 0.875rem !important;
  transition: background 0.15s !important;
}

.nav-btn:hover { background: var(--ink) !important; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-blue {
  background: var(--blue);
  color: white;
}

.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: white;
  color: var(--ink);
  border-color: var(--ink-light);
}

.btn-white {
  background: white;
  color: var(--blue);
  font-weight: 600;
}

.btn-white:hover { background: var(--blue-mid); }

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
}

.btn-outline-white:hover { background: rgba(255, 255, 255, 0.1); }

/* =============================================
   HERO
   ============================================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 4rem 80px;
}

.hero-left,
.hero-right {
  flex: 1 1 0;
}

.hero-right { text-align: right; }

.hero-right img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin-left: auto;
  border-radius: 16px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.hero-sub {
  font-size: 1rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2rem;
}

.trust-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--ink-mid);
}

.trust-check {
  width: 16px;
  height: 16px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-check svg {
  width: 9px;
  height: 9px;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

/* =============================================
   HERO PANEL
   ============================================= */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visit-card,
.doc-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

.vc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.vc-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  font-weight: 500;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.status-active {
  background: var(--teal-light);
  color: var(--teal);
}

.status-done {
  background: var(--blue-mid);
  color: var(--blue);
}

.vc-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.vc-sub {
  font-size: 0.78rem;
  color: var(--ink-mid);
  font-weight: 300;
}

.vc-divider {
  height: 1px;
  background: var(--border);
  margin: 0.75rem 0;
}

.vc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
}

.vc-key { color: var(--ink-light); }

.vc-val {
  color: var(--ink);
  font-weight: 500;
}

.vc-val.blue { color: var(--blue); }

.live-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
  margin-right: 0.3rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: 48.5% 48.5%;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.doc-stat {
  background: var(--bg);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
}

.doc-stat-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.doc-stat-lbl {
  font-size: 0.7rem;
  color: var(--ink-light);
  margin-top: 0.1rem;
}

/* =============================================
   TRUST BAND
   ============================================= */
.trust-band {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.tb-item { text-align: center; }

.tb-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
}

.tb-lbl {
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 0.1rem;
}

/* =============================================
   SECTIONS
   ============================================= */
section {
  padding: 5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* =============================================
   CONTACT
   ============================================= */
.contact-wrap {
  padding: 5rem 4rem;
  background: var(--bg);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-callout {
  background: var(--blue);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  margin-top: 1.75rem;
  margin-bottom: 2rem;
}

.contact-callout strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.contact-callout p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.7;
}

.contact-form { width: 100%; }

.form-grid {
  display: grid;
  grid-template-columns: 48.5% 48.5%;
  justify-content: space-between;
  gap: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.optional {
  color: var(--ink-light);
  font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  font: inherit;
  line-height: 1.5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

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

.contact-form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-light) 50%),
    linear-gradient(135deg, var(--ink-light) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.75rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(129, 178, 154, 0.18);
}

.contact-form button { margin-top: 0.5rem; }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-wrap {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 4rem;
}

.how-inner {
  display: grid;
  grid-template-columns: 300px calc(100% - 356px);
  gap: 40px 56px;
  align-items: start;
}

.how-left {
  grid-column: 1;
  grid-row: 1;
}

.how-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.how-right {
  grid-column: 2;
  grid-row: 1;
}

.steps {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 23.5% 23.5% 23.5% 23.5%;
  justify-content: space-between;
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
  width: 100%;
}

.steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: var(--border);
}

.step {
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  position: relative;
  z-index: 1;
}

.step-circle.active {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.step h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.step p {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.7;
  font-weight: 300;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: 33.333% 33.333% 33.333%;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}

.svc {
  background: white;
  padding: 1.75rem;
  transition: background 0.15s;
}

.svc:hover { background: var(--teal-light); }

.svc-type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.svc-type.auth { color: var(--blue); }
.svc-type.ancil { color: var(--teal); }

.svc h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.svc p {
  font-size: 0.82rem;
  color: var(--ink-mid);
  line-height: 1.7;
  font-weight: 300;
}

.services-image {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  border-radius: 18px;
  overflow: hidden;
}

.services-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   COMPLIANCE
   ============================================= */
.compliance-wrap {
  background: var(--ink);
  padding: 5rem 4rem;
}

.compliance-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.compliance-wrap .section-eye { color: #e07a5f; }
.compliance-wrap .section-h { color: white; }
.compliance-wrap .section-p { color: rgba(255, 255, 255, 0.55); }

.compliance-grid {
  display: grid;
  grid-template-columns: 33.333% 33.333% 33.333%;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 3rem;
}

.comp-item {
  background: var(--ink);
  padding: 1.75rem;
}

.comp-item h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
}

.comp-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  font-weight: 300;
}

.comp-icon {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

/* =============================================
   FAQ
   ============================================= */
#faq {
  padding: 5rem 4rem;
}

.faq-inner {
  display: grid;
  grid-template-columns: 360px calc(100% - 416px);
  gap: 48px 56px;
  align-items: start;
}

.faq-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  margin-top: 0.5rem;
}

.faq-right { max-width: 720px; }

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item {
  background: white;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.faq-a {
  font-size: 0.83rem;
  color: var(--ink-mid);
  font-weight: 300;
  line-height: 1.7;
}

/* =============================================
   CTA
   ============================================= */
.cta-wrap {
  position: relative;
  padding: 5rem 4rem;
  text-align: center;
  background: url('paw.jpg') center/cover no-repeat;
}

.cta-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 40, 0.50);
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: white;
}

.cta-wrap h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 0.75rem;
}

.cta-wrap p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.footer-logo-sub {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.7); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left > * { animation: fadeUp 0.6s ease both; }
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.12s; }
.hero-left > *:nth-child(3) { animation-delay: 0.2s; }
.hero-left > *:nth-child(4) { animation-delay: 0.28s; }
.hero-left > *:nth-child(5) { animation-delay: 0.36s; }

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* =============================================
   MEDIA QUERIES
   ============================================= */
@media (max-width: 1100px) {
  .services-grid,
  .compliance-grid {
    grid-template-columns: 48.5% 48.5%;
    justify-content: space-between;
  }
}

@media (max-width: 900px) {
  nav {
    position: static;
    height: auto;
    padding: 1rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .hero {
    flex-direction: column;
    padding: 3rem 1.25rem 4rem;
    gap: 2rem;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right { text-align: center; }

  .hero-right img {
    margin: 0 auto;
    max-width: 100%;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1.15;
  }

  .hero-sub,
  .section-p { max-width: none; }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-band {
    display: grid;
    grid-template-columns: 48.5% 48.5%;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
  }

  section,
  .how-wrap,
  .compliance-wrap,
  .cta-wrap,
  footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .services-grid,
  .compliance-grid,
  .doc-grid,
  .form-grid {
    grid-template-columns: 100%;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .contact-wrap { padding: 4rem 1.25rem; }
  .contact-inner { max-width: 100%; }

  .how-wrap { padding: 4rem 1.25rem; }

  .how-inner {
    grid-template-columns: 100%;
    gap: 1.75rem;
    width: 100%;
  }

  .how-left,
  .how-right,
  .steps {
    grid-column: 1;
  }

  .how-left {
    grid-row: 1;
    max-width: 100%;
    margin: 0;
  }

  .how-right {
    grid-row: 2;
    text-align: left;
    width: 100%;
    min-width: 0;
  }

  .how-right .section-h {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .how-right .section-p {
    max-width: 100%;
    font-size: 1rem;
  }

  .steps {
    grid-row: 3;
    grid-template-columns: 100%;
    gap: 2rem;
    margin-top: 1rem;
    width: 100%;
    min-width: 0;
  }

  .steps::before { display: none; }

  .step {
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
    padding: 0;
  }

  .step-circle { margin: 0 auto 1rem; }

  .step h3,
  .step p {
    max-width: 100%;
  }

  #faq { padding: 4rem 1.25rem; }

  .faq-inner {
    grid-template-columns: 100%;
    gap: 2rem;
  }

  .faq-left {
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .trust-band { grid-template-columns: 100%; }

  .section-h {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .tb-num { font-size: 1.2rem; }
}
/* LEGAL PAGES */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 4rem 5rem;
}

.legal-hero {
  margin-bottom: 2rem;
}

.legal-page h1 {
  margin-bottom: 0.75rem;
}

.legal-intro {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
}

.legal-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--ink-mid);
  font-weight: 300;
}

.legal-card ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 1rem;
}

.legal-card a {
  color: var(--ink);
}

@media (max-width: 900px) {
  .legal-page {
    padding: 3rem 1.25rem 4rem;
  }

  .legal-card {
    padding: 1.5rem;
  }
}
