* {
  box-sizing: border-box;
}

:root {
  --bg: #ffffff;
  --text: #0f0f0f;
  --muted: #8a8a8a;
  --accent: #c4002b;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px 0 48px;
}

.logo-small {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--accent);
  text-decoration: underline;
  font-size: 15px;
  font-weight: 600;
}

.nav-sep {
  width: 1px;
  height: 24px;
  background: #cfc7c0;
  display: inline-block;
}

.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  color: #2b2b2b;
  padding: 0;
  cursor: default;
}

.menu-dots {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 1px;
}

.menu-text {
  font-size: 12px;
  color: #6e6e6e;
  letter-spacing: 0.4px;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 110px;
  gap: 60px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
}

.logo-large {
  width: min(520px, 80vw);
  height: auto;
}

.footer-line {
  height: 1px;
  background: #d9d2cc;
  margin: 40px 0 12px 0;
}

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

  .nav {
    gap: 12px;
  }

  .hero {
    padding-top: 80px;
    gap: 40px;
  }
}
