:root {
  --ink: #24332d;
  --muted: #526158;
  --line: #e2ded3;
  --paper: #f6f5f0;
  --paper-strong: #fffdf7;
  --mist: #edeae1;
  --sage: #a8cdb7;
  --sage-dark: #6e947d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Work Sans", Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 46px);
  background: rgba(246, 245, 240, .95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .14em; }
.brand svg { width: 38px; height: 28px; fill: currentColor; }
.site-nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 13px; font-weight: 700; }
.site-nav a:hover { color: var(--sage-dark); }
.header-cta, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.breadcrumbs { padding-top: 34px; color: var(--muted); font-size: 13px; }
.breadcrumbs a { text-decoration: underline; text-underline-offset: 3px; }
.online-strip {
  padding: 11px 24px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}
.online-strip strong { color: var(--sage); }
.hero { padding: 58px 0 82px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 8vw, 90px); align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--sage-dark); font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-weight: 400; line-height: 1.02; }
h1 { font-size: clamp(45px, 6vw, 76px); }
h2 { font-size: clamp(34px, 4vw, 52px); }
h3 { margin: 0 0 8px; font-size: 20px; }
.hero-copy { margin: 24px 0 30px; color: var(--muted); font-size: 18px; }
.professional {
  padding: 32px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 24px 70px rgba(36, 51, 45, .18);
}
.professional-label { margin: 0 0 22px; color: var(--sage); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.professional h2 { font-size: 38px; }
.professional p { margin: 10px 0 0; color: #d6d1c6; }
.professional .license { color: var(--sage); font-size: 13px; font-weight: 700; }

.section { padding: 78px 0; }
.section-mist { background: var(--mist); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.lead { color: var(--muted); font-size: 17px; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { padding: 28px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper-strong); }
.benefit-card span { color: var(--sage-dark); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.benefit-card p { margin: 0; color: var(--muted); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-grid article { padding-left: 18px; border-left: 2px solid var(--sage); }
.process-grid span { color: var(--sage-dark); font-size: 12px; font-weight: 800; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.notice { margin-top: 36px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); font-size: 13px; background: rgba(255,255,255,.45); }
.cta { padding: 72px 0; background: var(--sage); text-align: center; }
.cta p { max-width: 630px; margin: 18px auto 28px; color: #32443b; }
.site-footer { padding: 38px 0; background: var(--ink); color: #d6d1c6; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; font-size: 13px; }
.footer-row a { color: var(--sage); font-weight: 700; }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .container { width: min(100% - 32px, 1120px); }
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .header-cta { min-height: 42px; padding: 0 14px; font-size: 10px; }
  .hero { padding: 42px 0 60px; }
  h1 { font-size: 46px; }
  .professional { padding: 26px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; }
}
