:root {
  --bg: #0a0a0a;
  --fg: #f2efe9;
  --muted: #8f8b85;
  --muted-2: #66625d;
  --line: #232322;
  --accent: #ff2d78;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

a {
  color: var(--fg);
  text-decoration: none;
}

::selection {
  background: var(--accent);
  color: #ffffff;
}

.page {
  min-height: 100vh;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px clamp(24px, 6vw, 88px) 36px;
  overflow-x: hidden;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.wordmark {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
}

.wordmark:hover {
  color: var(--fg);
}

.wordmark-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.contact-link {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: auto;
}

.contact-link:hover {
  color: var(--accent);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0;
  min-width: 0;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(44px, 9.2vw, 148px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: min(15ch, 100%);
  text-wrap: balance;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-lede {
  margin: 40px 0 0;
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 34ch;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cta {
  background: var(--accent);
  color: #ffffff;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 30px;
  border-radius: 100px;
  transition: background 0.15s ease, color 0.15s ease;
}

.cta:hover {
  background: var(--fg);
  color: var(--bg);
}

.cta-note {
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}

.site-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted-2);
}

.site-footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent);
}

.site-footer a[aria-current='page'] {
  color: var(--fg);
}

@media (max-width: 640px) {
  .hero {
    padding: 64px 0;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-footer nav {
    gap: 18px;
  }
}
