:root {
  color-scheme: light;
  --ink: #151515;
  --muted: #626262;
  --line: #dedad2;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --gold: #b88a3d;
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 48px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.95);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 800;
  letter-spacing: 0;
}

nav,
footer {
  display: flex;
  align-items: center;
  gap: 22px;
}

nav a,
footer a {
  color: var(--muted);
  font-size: 15px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 72px 48px;
}

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

h1 {
  max-width: 860px;
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.15;
}

h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.field-label {
  display: block;
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.text-input {
  width: min(100%, 420px);
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.caption-editor {
  min-height: 150px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 1.5;
  resize: vertical;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: white;
  font-weight: 700;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
}

.workflow {
  display: grid;
  gap: 14px;
}

.workflow div,
.details-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(27, 23, 18, 0.06);
}

.workflow div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 20px;
}

.workflow span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #e6f4f1;
  color: var(--accent-dark);
  font-weight: 800;
}

.workflow p,
.details-grid p {
  margin: 0;
  font-size: 16px;
}

.content-band {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 80px 48px;
}

.section-copy,
.details-grid,
.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.details-grid article {
  padding: 24px;
}

.legal-page {
  padding: 72px 48px;
}

.legal-page h1 {
  margin-bottom: 28px;
}

.legal-page h2 {
  margin-top: 42px;
}

.callback-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.callback-card {
  max-width: 620px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  text-align: center;
}

.callback-card .brand-mark {
  margin: 0 auto 24px;
}

.callback-card h1 {
  font-size: 38px;
}

footer {
  justify-content: center;
  padding: 34px 48px;
  border-top: 1px solid var(--line);
}

footer span {
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 22px;
  }

  .hero,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .content-band,
  .legal-page {
    padding-right: 22px;
    padding-left: 22px;
  }

  h1 {
    font-size: 40px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px 22px;
  }
}
