:root {
  --orange: #f46522;
  --ink: #202020;
  --muted: #77736f;
  --paper: #f8f7f4;
  --line: #dedbd6;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 8% 84%, transparent 0 48px, #ebe8e3 49px 51px, transparent 52px),
    radial-gradient(circle at 91% 13%, transparent 0 74px, #ebe8e3 75px 77px, transparent 78px),
    var(--paper);
  border-top: 6px solid var(--orange);
}

.page {
  width: min(1180px, calc(100% - 48px));
  min-height: calc(100vh - 6px);
  margin: 0 auto;
  padding: 48px 0 34px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.brand {
  position: relative;
  width: max-content;
  padding: 16px 0 0 20px;
  line-height: 1;
}

.brand-mark {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--orange);
}

.brand-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-name span {
  color: var(--orange);
}

.brand-subtitle {
  margin: 5px 0 0 54px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  align-self: center;
  max-width: 840px;
  padding: 64px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(5.25rem, 14vw, 11.5rem);
  font-stretch: condensed;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.76;
  text-transform: uppercase;
}

h1 span {
  color: var(--orange);
}

.intro {
  max-width: 520px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.contact {
  padding-top: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact p {
  margin: 0;
}

.contact-name {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 28px;
}

.contact a {
  color: var(--ink);
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--orange);
  text-decoration-color: currentColor;
}

@media (max-width: 680px) {
  .page {
    width: min(100% - 32px, 1180px);
    padding-top: 28px;
  }

  .hero {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(4.5rem, 25vw, 7.5rem);
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-links {
    justify-content: flex-start;
    gap: 8px 20px;
  }
}