:root {
  --orange: #ff4a1f;
  --red: #ff120c;
  --ink: #202827;
  --soft: rgba(32, 40, 39, 0.72);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  color: var(--ink);
  background: linear-gradient(180deg, var(--orange) 0%, var(--red) 100%);
}

.page {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: clamp(32px, 6vw, 96px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 120px) 0 40px;
}

.hero { max-width: 680px; }

.eyebrow {
  margin: 0 0 28px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.86rem;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.84;
  letter-spacing: -0.07em;
  font-weight: 400;
  text-transform: uppercase;
}

.intro {
  max-width: 520px;
  margin: 36px 0 28px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--soft);
}

.contact {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid currentColor;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: transform 180ms ease, background 180ms ease;
}

.contact:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.identity {
  display: flex;
  justify-content: center;
}

.identity img {
  width: min(100%, 420px);
  height: auto;
  border: 1px solid rgba(32, 40, 39, 0.14);
  box-shadow: 0 24px 80px rgba(32, 40, 39, 0.14);
}

footer {
  min-height: 72px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  color: var(--soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

@media (max-width: 820px) {
  .page {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .identity { justify-content: flex-start; }
  .identity img { width: min(100%, 360px); }

  footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 24px;
  }
}
