:root {
  --ink: #0d0d0d;
  --white: #f5f2ec;
  --muted: rgba(245, 242, 236, 0.6);
  --orange: #ff6a1a;
  --pad: clamp(1.5rem, 4vw, 4rem);
}

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

html, body { height: 100%; }

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--white);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: var(--pad);
  background:
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.25) 40%, rgba(13,13,13,0.8) 100%),
    url("assets/hero.jpg") center / cover no-repeat;
}

/* Centered title block — grows to fill space above the bottom row */
.hero__center {
  flex: 1;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero__center h1 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero__tagline {
  margin-top: 0.9rem;
  font-size: clamp(0.85rem, 1.8vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__tagline::before {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--orange);
  margin: 0 auto 1.1rem;
}

/* Bottom row: services left, contact right */
.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.services h2,
.contact h2 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.85rem;
}

.services ul { list-style: none; }

.services li {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  font-weight: 500;
  line-height: 1.8;
}

.contact { text-align: right; }

.contact__item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.contact__item:last-child { margin-bottom: 0; }

.contact__item:hover .contact__value { color: var(--orange); }

.contact__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact__value {
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 600;
  transition: color 0.15s ease;
}

/* Mobile: stack services above contact, left-aligned, with breathing room */
@media (max-width: 640px) {
  .hero { gap: 2.5rem; }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.25rem;
  }

  .contact { text-align: left; }
  .contact__item { align-items: flex-start; }
}
