:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #59645f;
  --paper: #f8f5ed;
  --panel: #fffdf7;
  --line: #d8d0bd;
  --accent-strong: #174b3e;
  --gold: #c88a2d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(47, 111, 94, 0.12), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(200, 138, 45, 0.16), transparent 28%),
    var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: 40px;
  align-items: end;
  min-height: 58vh;
  border-bottom: 1px solid var(--line);
  padding-bottom: 44px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.dns-panel {
  display: grid;
  gap: 16px;
}

.dns-panel > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel) 88%, white);
  box-shadow: 0 18px 50px rgba(24, 33, 31, 0.08);
  padding: 22px;
}

.record-type,
.steps span {
  color: var(--gold);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dns-panel strong {
  display: block;
  margin: 8px 0;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 1.25rem;
}

.dns-panel p,
.steps p {
  margin: 0;
  color: var(--muted);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr 1.05fr 0.9fr;
  gap: 18px;
  padding-top: 34px;
}

.steps article {
  min-height: 230px;
  border-left: 1px solid var(--line);
  padding: 18px 20px 0;
}

.steps h2 {
  margin: 28px 0 12px;
  font-size: 1.55rem;
  line-height: 1.05;
}

@media (max-width: 820px) {
  .page-shell {
    padding: 32px 0;
  }

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

  .hero {
    min-height: auto;
  }

  .steps article {
    min-height: 0;
    padding-bottom: 20px;
  }
}
