:root {
  color-scheme: light;
  --ink: #14211d;
  --muted: #586862;
  --paper: #f7f4ed;
  --surface: #fffdf8;
  --line: #d6ded8;
  --brand: #176b57;
  --brand-dark: #0d4d3e;
  --accent: #d7eadf;
  --shadow: 0 20px 60px rgba(20, 33, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #efb44d;
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 237, 0.96);
}

.header-inner,
.shell {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--brand);
}

.hero {
  padding: 6.5rem 0 5rem;
  background:
    radial-gradient(circle at 85% 20%, rgba(215, 234, 223, 0.95), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 7vw, 5.65rem);
  font-weight: 650;
}

.hero-copy {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 750;
  text-decoration: none;
  transition: background 150ms ease, transform 150ms ease;
}

.button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.text-link {
  color: var(--brand-dark);
  font-weight: 700;
  text-underline-offset: 0.22em;
}

.section {
  padding: 5rem 0;
}

.section--surface {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.card {
  padding: clamp(1.5rem, 4vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card-number {
  display: inline-grid;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.2rem;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand-dark);
  font-weight: 800;
}

.card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 1.4rem;
  border-top: 3px solid var(--brand);
  background: rgba(255, 253, 248, 0.75);
  font-weight: 750;
}

.company-panel {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  border-radius: 24px;
  background: var(--ink);
  color: #fff;
}

.company-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.company-details {
  margin: 0;
  color: #d9e3de;
}

.company-details strong {
  color: #fff;
}

.legal-hero {
  padding: 4.5rem 0 2.75rem;
}

.legal-hero h1 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.7rem, 6vw, 4.8rem);
}

.effective-date {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  width: min(800px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 5rem;
}

.legal-content section {
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 0.75rem;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.legal-content p,
.legal-content li {
  color: #34443e;
}

.legal-content p:last-child,
.legal-content ul:last-child {
  margin-bottom: 0;
}

.sms-notice {
  padding: 1.25rem;
  border-left: 4px solid var(--brand);
  background: var(--accent);
  color: var(--ink) !important;
}

.site-footer {
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  gap: 1.2rem;
}

.footer-identity {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.footer-links a {
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-underline-offset: 0.2em;
}

@media (max-width: 760px) {
  .header-inner {
    display: block;
    min-height: auto;
    padding-block: 1rem;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.55rem 0.9rem;
    margin-top: 0.85rem;
    font-size: 0.84rem;
  }

  .hero {
    padding: 4.5rem 0 3.75rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .card-grid,
  .steps,
  .company-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
