:root {
  --black: #050505;
  --yellow: #ffe500;
  --white: #ffffff;
  --off-white: #f5f5f2;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--off-white);
  color: var(--black);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  min-height: 88px;
  padding: 20px max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  max-width: 160px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

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

.site-header nav a {
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--yellow);
}

.hero {
  min-height: 580px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--yellow);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(32px, calc((100vw - var(--max-width)) / 2));
  padding-right: 64px;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero p {
  margin: 28px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.primary-button {
  align-self: flex-start;
  margin-top: 34px;
  padding: 15px 22px;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-2px);
}

.hero-visual {
  min-height: 420px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 229, 0, 0.25),
      rgba(0, 0, 0, 0.2)
    ),
    var(--white);
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px 32px;
}

.section + .section {
  border-top: 1px solid #d8d8d2;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section > p:last-child {
  max-width: 680px;
  margin-top: 22px;
  font-size: 1.1rem;
}

#businesses {
  background: var(--off-white);
}

#areas {
  background: var(--white);
}

#about {
  background: var(--yellow);
}

footer {
  padding: 32px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

footer p {
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    gap: 14px 20px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 72px 24px;
  }

  .hero-visual {
    min-height: 240px;
  }

  .section {
    padding: 72px 24px;
  }
}
