:root {
  --ink: #171116;
  --muted: #695d66;
  --paper: #fffdf8;
  --line: #eadfe6;
  --red: #f2212a;
  --purple: #9a1b61;
}

* { box-sizing: border-box; }
html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(135deg, #fffdf8 0%, #fff8f5 48%, #f8eef4 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 0.08em; text-underline-offset: 0.18em; }
a:hover { color: var(--red); }

.site-header,
.site-footer,
.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header { min-height: 82px; }
.brand img { width: 176px; display: block; }
nav a,
.site-footer a { color: var(--muted); font-size: 0.95rem; font-weight: 700; text-decoration: none; }

.landing {
  flex: 1 0 auto;
  display: grid;
  align-items: center;
}

.hero {
  padding: 54px 0 72px;
  display: block;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.25rem, 9vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.line {
  max-width: 620px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover { background: var(--red); border-color: var(--red); color: #fff; }
.link { color: var(--muted); font-weight: 800; text-decoration: none; }

.site-footer {
  min-height: 74px;
  flex-shrink: 0;
  border-top: 1px solid rgba(234, 223, 230, 0.72);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 880px) {
  .site-header,
  .site-footer,
  .hero { width: min(100% - 24px, 1120px); }
  .site-header { align-items: flex-start; padding: 18px 0; flex-direction: column; }
  .hero { padding-top: 34px; }
}

@media (max-width: 560px) {
  .brand img { width: 154px; }
  h1 { font-size: clamp(2.65rem, 16vw, 4.6rem); }
  .button { width: 100%; }
}
