:root {
  --bg: #1a1d21;
  --bg-elevated: #22262c;
  --steel: #8a929c;
  --steel-bright: #c5ccd4;
  --ink: #f2f4f6;
  --muted: #a8b0ba;
  --amber: #c47a2c;
  --amber-hover: #d4893a;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 68rem;
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--amber);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--amber-hover);
}

/* —— Header —— */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 2.75rem);
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}

.wordmark:hover {
  color: var(--steel-bright);
}

.header-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 122, 44, 0.85);
  padding-bottom: 0.15rem;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.header-cta:hover {
  color: var(--amber-hover);
  border-color: var(--amber-hover);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("assets/hero-steel-reels.png") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-drift 18s ease-out forwards;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(14, 16, 19, 0.88) 0%,
      rgba(14, 16, 19, 0.72) 42%,
      rgba(14, 16, 19, 0.35) 70%,
      rgba(14, 16, 19, 0.55) 100%
    ),
    linear-gradient(to top, rgba(14, 16, 19, 0.9) 0%, transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  padding:
    calc(var(--header-h) + 2rem)
    clamp(1.25rem, 4vw, 2.75rem)
    clamp(3.5rem, 10vh, 6rem);
  opacity: 0;
  transform: translateY(1.25rem);
  animation: rise-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--steel-bright);
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.btn-primary {
  background: var(--amber);
  color: #1a1208;
}

.btn-primary:hover {
  background: var(--amber-hover);
  color: #1a1208;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(197, 204, 212, 0.35);
}

.btn-ghost:hover {
  border-color: var(--steel-bright);
  color: var(--ink);
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 9vw, 5.5rem) clamp(1.25rem, 4vw, 2.75rem);
}

.section-inner {
  width: min(100%, 40rem);
  margin: 0 auto;
}

.offer {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(196, 122, 44, 0.08), transparent 55%),
    var(--bg-elevated);
}

.contact {
  background: var(--bg);
}

.section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.section p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.section p:last-child {
  margin-bottom: 0;
}

.contact .btn {
  margin-top: 0.25rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Footer —— */
.site-footer {
  padding: 2rem clamp(1.25rem, 4vw, 2.75rem) 2.5rem;
  border-top: 1px solid rgba(138, 146, 156, 0.22);
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-bright);
}

.footer-meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--steel);
}

/* —— Motion —— */
@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-content,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .btn-primary:hover {
    transform: none;
  }
}

@media (max-width: 560px) {
  .header-cta {
    font-size: 0.85rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
