:root {
  --bg: #050505;
  --text: #ffffff;
  --muted: #a8a8a8;
  --line: #242424;
  --soft: #151515;
  --dark: #ffffff;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
}

.brand {
  display: inline-flex;
  width: 168px;
  height: 36px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--text);
  background: var(--soft);
}

.nav-contact {
  color: var(--text);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  align-items: center;
  max-width: var(--max);
  min-height: 68svh;
  margin: 0 auto;
  padding: 76px 24px 96px;
}

.hero-copy {
  max-width: 720px;
}

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

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.hero p {
  max-width: 560px;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid var(--dark);
  border-radius: 8px;
  color: #050505;
  background: var(--dark);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: #dcdcdc;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px;
  border-top: 1px solid var(--line);
}

.intro p {
  max-width: 720px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.focus {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding-bottom: 92px;
}

.focus article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 0;
}

.focus article:first-child {
  border-left: 1px solid var(--line);
}

.focus span {
  display: block;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.focus p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--text);
  font-weight: 700;
}

.contact-page {
  display: grid;
  place-items: start center;
  min-height: calc(100svh - 88px);
  padding: 72px 24px;
}

.contact-form {
  display: grid;
  width: min(100%, 480px);
  gap: 16px;
}

.contact-form h1 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--text);
  background: #0d0d0d;
  font: inherit;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--text);
  outline: 3px solid rgba(255, 255, 255, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .site-header {
    padding: 16px;
    gap: 14px;
  }

  .brand {
    width: 118px;
    height: 26px;
    flex: 0 0 auto;
  }

  .nav {
    gap: 2px;
    font-size: 0.78rem;
  }

  .nav a {
    padding: 8px 6px;
  }

  .hero {
    min-height: auto;
    padding: 58px 16px 76px;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }

  .section {
    padding: 48px 16px;
  }

  .focus {
    grid-template-columns: 1fr;
    padding-bottom: 70px;
  }

  .focus article,
  .focus article:first-child {
    min-height: auto;
    border-left: 1px solid var(--line);
  }

  .focus article + article {
    border-top: 0;
  }

  .focus span {
    margin-bottom: 28px;
  }

  .site-footer {
    padding: 22px 16px;
  }

  .contact-page {
    padding: 52px 16px;
  }
}
