* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #f7f4ef;
  --text: #171717;
  --muted: #76716a;
  --border: #ded8cf;
  --accent: #b58a3c;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--text);
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo span {
  color: var(--accent);
}

.contact {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid transparent;
  transition: 0.2s ease;
}

.contact:hover {
  color: var(--text);
  border-color: var(--text);
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0;
  max-width: 760px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 22px;
}

h1 {
  font-size: clamp(54px, 11vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.08em;
  font-weight: 800;
  margin-bottom: 28px;
}

.subtitle {
  max-width: 620px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--muted);
}

.line {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 44px 0 24px;
}

.status {
  color: var(--muted);
  font-size: 15px;
}

.footer {
  height: 76px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .header {
    height: 76px;
  }

  .hero {
    padding: 45px 0;
  }

  h1 {
    letter-spacing: -0.06em;
  }
}
