:root {
  --bg: #fbf4ea;
  --ink: #14232a;
  --muted: #5f6767;
  --gold: #a77b35;
  --orange: #c94b20;
  --line: rgba(20, 35, 42, 0.12);
  --shadow: 0 24px 70px rgba(20, 35, 42, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.86), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #fff9f1 0%, var(--bg) 100%);
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

nav a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--gold);
}

.hero {
  width: min(900px, calc(100% - 36px));
  min-height: calc(100vh - 180px);
  margin: 0 auto;
  padding: 58px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  width: min(680px, 94vw);
  height: auto;
  display: block;
  margin: 0 auto 8px;
  filter: drop-shadow(0 18px 38px rgba(20, 35, 42, 0.10));
}

h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 850;
}

h1 span { color: var(--gold); }

.subtitle {
  margin: 18px 0 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
}

.subtitle span {
  color: var(--gold);
  padding: 0 8px;
}

.actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.button {
  min-width: 220px;
  padding: 18px 26px;
  border-radius: 7px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.primary {
  background: var(--orange);
  color: #fff8ef;
  border: 2px solid var(--orange);
}

.secondary {
  color: var(--gold);
  border: 2px solid var(--gold);
  background: rgba(255,255,255,0.18);
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 18px 34px;
  text-align: center;
  color: var(--muted);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.socials a {
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer p {
  margin: 0;
  font-size: 14px;
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 24px;
    flex-direction: column;
  }

  nav { gap: 20px; }

  nav a { font-size: 12px; }

  .hero {
    padding-top: 30px;
    min-height: auto;
  }

  .button {
    width: 100%;
    min-width: 0;
  }
}
