:root {
  --ink: #17202a;
  --muted: #5a6470;
  --paper: #ffffff;
  --soft: #f4f6f4;
  --line: #d8ded8;
  --steel: #24566b;
  --safety: #f2b705;
  --green: #2f6f5e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0));
}

.brand {
  max-width: 100%;
  font-weight: 800;
  line-height: 1.2;
}

nav {
  display: flex;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding: 118px clamp(20px, 6vw, 84px) 72px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 15, 20, 0.78) 0%, rgba(9, 15, 20, 0.5) 43%, rgba(9, 15, 20, 0.12) 100%),
    url("./assets/hero-generator-dubai.png") center / cover no-repeat;
}

.hero__content {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--safety);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.hero__copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero__actions,
.contact-section {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button--primary {
  color: #121212;
  background: var(--safety);
}

.button--secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.summary-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.summary-band div {
  padding: 22px clamp(18px, 4vw, 48px);
  background: var(--paper);
}

.summary-band strong,
.summary-band span {
  display: block;
}

.summary-band span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  justify-content: space-between;
  padding: 48px clamp(20px, 6vw, 84px);
  color: #fff;
  background: var(--ink);
}

.contact-section div {
  max-width: 720px;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 18px clamp(20px, 6vw, 84px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

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

  .hero {
    min-height: 78vh;
    padding-top: 144px;
    background-position: 42% center;
  }

  .summary-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .button {
    width: 100%;
  }
}
