:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --muted: #686868;
  --line: #dddddd;
  --soft: #f5f5f3;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.contact-link {
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--ink);
}

main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 72px 0 88px;
}

.hero-logo-wrap {
  width: min(430px, 80vw);
  margin-bottom: 34px;
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1, h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.1rem, 9vw, 6.8rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.intro {
  max-width: 720px;
  margin: 28px auto 34px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-weight: 800;
  transition: 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.about > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.status {
  margin-bottom: 100px;
  padding: 34px;
  background: var(--soft);
  text-align: center;
  font-weight: 800;
}

.status p { margin: 0; }

footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

footer p { margin: 0; }

footer a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 700px) {
  .site-header {
    min-height: 72px;
  }

  .brand span {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 82px;
  }

  .hero-logo-wrap {
    width: min(330px, 84vw);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 82px 0;
  }

  footer {
    flex-direction: column;
  }
}
