
:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: #171717;
  --panel-light: #202020;
  --text: #f5f5f5;
  --muted: #b6b6b6;
  --muted-2: #858585;
  --orange: #f26a13;
  --orange-dark: #b8490d;
  --tan: #b99a6d;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(242, 106, 19, 0.16), transparent 34rem),
    linear-gradient(180deg, #080808 0%, #111111 48%, #080808 100%);
  line-height: 1.55;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--orange);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(9, 9, 9, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid var(--orange);
  background: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--panel);
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 46px;
  padding: 0.72rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: 0.015em;
  cursor: pointer;
}

.btn-primary {
  color: #111;
  background: var(--orange);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: #ff7a22;
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.34) 42%, rgba(0,0,0,0.80) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.82) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12rem;
  background: linear-gradient(180deg, transparent, var(--bg));
  z-index: -1;
}

.hero-content {
  width: min(760px, 100%);
  padding-block: 4rem;
}

.kicker {
  color: var(--orange);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  margin: 0 0 0.9rem;
}

h1, h2, h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 10vw, 7.6rem);
  letter-spacing: -0.06em;
  text-transform: uppercase;
  text-shadow: 0 12px 34px rgba(0,0,0,0.68);
}

h1 span,
.orange {
  color: var(--orange);
}

.hero-text {
  margin: 1.15rem 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: #e8e8e8;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.ship-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(242, 106, 19, 0.42);
  background: rgba(242, 106, 19, 0.12);
  border-radius: 16px;
  color: #fff;
  font-weight: 800;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.2rem 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 1rem 0 0;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.card p {
  color: var(--muted);
  margin: 0.7rem 0 0;
}

.card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--orange);
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 1rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.logo-panel {
  text-align: center;
}

.logo-panel img {
  width: min(420px, 100%);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.timeline {
  counter-reset: item;
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  counter-increment: item;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
}

.timeline-item::before {
  content: counter(item);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #111;
  font-weight: 900;
}

.timeline-item strong {
  display: block;
}

.timeline-item span {
  color: var(--muted);
}

.cta {
  background:
    radial-gradient(circle at top left, rgba(242, 106, 19, 0.22), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    var(--panel);
  border: 1px solid rgba(242, 106, 19, 0.28);
  border-radius: 30px;
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.cta p {
  max-width: 720px;
}

.page-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(242,106,19,0.12), transparent),
    var(--bg);
}

.page-hero h1 {
  font-size: clamp(3rem, 9vw, 6rem);
}

.content-prose {
  max-width: 820px;
}

.content-prose p,
.content-prose li {
  color: var(--muted);
  font-size: 1.06rem;
}

.content-prose ul {
  padding-left: 1.3rem;
}

.contact-box {
  max-width: 720px;
  margin-inline: auto;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}

.contact-row span {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--muted);
  background: #070707;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--orange);
}

@media (max-width: 920px) {
  .grid-4,
  .grid-3,
  .grid-2,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 5rem;
  }

  .logo-panel {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(18,18,18,0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 3.4rem 0;
  }

  .contact-row {
    flex-direction: column;
  }
}


.error-hero {
  min-height: calc(100svh - 74px);
}

.error-hero h1 {
  font-size: clamp(3.6rem, 12vw, 8.6rem);
}
