:root {
  --red: #9b1b1b;
  --red-hot: #c62828;
  --ink: #0c0b0a;
  --panel: #161311;
  --card: #1c1815;
  --line: rgba(255, 236, 210, 0.12);
  --cream: #f3e6d4;
  --muted: #b9a894;
  --gold: #e0b15a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  background: var(--ink);
  color: var(--cream);
  line-height: 1.55;
  min-height: 100vh;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.4rem;
  background: rgba(12, 11, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.brand-text em {
  font-style: normal;
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-cta {
  background: var(--red);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.nav-toggle {
  color: var(--red-hot);
}

.nav-toggle .compass {
  width: 30px;
  height: 30px;
  display: block;
  transition: transform .35s ease;
}

.nav-toggle.open .compass {
  transform: rotate(45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 3rem 6vw 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #120e0c;
}

.hero-bg .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  filter: saturate(0.85) contrast(1.05);
}

.hero-bg .slide.is-on {
  opacity: 1;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12,11,10,.55), rgba(12,11,10,.82));
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 180px;
  pointer-events: none;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 18px,
    rgba(243, 230, 212, 0.03) 18px,
    rgba(243, 230, 212, 0.03) 19px
  );
}

.hero-content, .hero-badge { position: relative; z-index: 1; }

.eyebrow {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

h1, h2, h3 {
  font-family: "Bebas Neue", "Oswald", sans-serif;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7rem);
  margin-bottom: 1rem;
}

h1 span { color: var(--red-hot); }

.lede {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 4px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover { background: var(--red-hot); }

.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.hero-stats strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-badge {
  display: flex;
  justify-content: center;
}

.hero-badge img {
  width: min(420px, 80%);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.55));
}

.strip {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 6vw;
  background: var(--red);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.section {
  padding: 5rem 6vw;
}

.section.alt { background: #100e0c; }

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 0.6rem;
}

.section-head p:last-child { color: var(--muted); }

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

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

#services .services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

#services .services .card {
  display: grid;
  grid-template-columns: 8.5rem 10rem minmax(14rem, 1fr) auto;
  grid-template-areas:
    "tag price desc list"
    "title price desc list";
  column-gap: 1.2rem;
  row-gap: 0.15rem;
  align-items: center;
  width: 100%;
  padding: 0.85rem 1.1rem;
  min-height: 0;
}

#services .services .tag { grid-area: tag; margin-bottom: 0; }
#services .services h3 { grid-area: title; font-size: 1.7rem; margin: 0; }
#services .services .price { grid-area: price; font-size: 2.1rem; margin: 0; }
#services .services .card > p:not(.price) { grid-area: desc; margin: 0; }
#services .services .card ul {
  grid-area: list;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  padding-left: 0;
  list-style: none;
  font-size: 0.88rem;
}
#services .services .card ul li { margin: 0; }
#services .services .card ul li::before {
  content: "▸ ";
  color: var(--gold);
}

@media (max-width: 980px) {
  #services .services .card {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "tag price"
      "title price"
      "desc desc"
      "list list";
  }
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 1.35rem 1.3rem 1.45rem;
  border-radius: 8px;
  min-height: 100%;
}

.card.featured {
  border-color: rgba(224, 177, 90, 0.45);
}

.card.license {
  background: linear-gradient(180deg, #221714, #1a1412);
}

.tag {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}

.card h3 {
  font-size: 1.85rem;
  margin-bottom: 0.2rem;
}

.price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 0.55rem;
}

.card p { color: var(--muted); }

.card ul {
  margin-top: 0.9rem;
  padding-left: 1.1rem;
  color: var(--cream);
  font-size: 0.92rem;
}

.card li + li { margin-top: 0.25rem; }

.fleet-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  min-width: 0;
}

.fleet-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  margin-top: 1rem;
  position: static;
  clear: both;
}

.fleet-viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
  order: 1;
}

.fleet {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.fleet::-webkit-scrollbar { display: none; }

.fleet article {
  flex: 0 0 calc((100% - 2.2rem) / 3);
  scroll-snap-align: start;
}

.fleet-nav {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 44px;
}

.fleet-nav:hover { background: var(--red); }

@media (max-width: 860px) {
  #fleet .fleet-wrap {
    display: flex;
    flex-direction: column;
  }

  .fleet article {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .fleet article img {
    height: 200px;
  }

  .fleet-controls {
    position: static;
    margin: 0 auto;
    padding-top: 0.2rem;
  }
}

.fleet article {
  border-top: 2px solid var(--red);
  padding-top: 0;
  overflow: hidden;
}

.fleet article img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.9rem;
  filter: saturate(0.9);
}

.fleet-mark {
  font-family: "Bebas Neue", sans-serif;
  color: var(--gold);
  font-size: 1.4rem;
}

.fleet h3 {
  font-size: 2.2rem;
  margin: 0.3rem 0 0.45rem;
}

.fleet p { color: var(--muted); }

.field {
  display: block;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(155, 27, 27, 0.18), transparent 40%),
    var(--ink);
}

.field h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
}

.field-copy > p { color: var(--muted); max-width: 36rem; }

.field h2 span { color: var(--red-hot); }

.ops-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.8rem 0 1.4rem;
}

.ops-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 0.9rem;
}

.ops-grid span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.ops-grid strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.15rem;
}

.ops-photo {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.staff-grid {
  display: grid;
  gap: 1.1rem;
}

.staff-grid.directors {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1.1rem;
}

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

.staff-grid.directors .staff-photo {
  max-width: none;
  aspect-ratio: 16 / 9;
}

.staff-grid.crew .staff-photo {
  max-width: none;
  aspect-ratio: 1;
}

.staff-card.vacant {
  opacity: 0.72;
}

.staff-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.4rem 1.35rem;
}

.staff-photo {
  width: 100%;
  aspect-ratio: 1;
  max-width: 180px;
  margin: 0 0 1rem;
  border-radius: 8px;
  border: 1px dashed rgba(255, 236, 210, 0.28);
  background:
    linear-gradient(180deg, rgba(155,27,27,.18), rgba(12,11,10,.4)),
    repeating-linear-gradient(-12deg, transparent, transparent 10px, rgba(243,230,212,.04) 10px, rgba(243,230,212,.04) 11px);
  display: grid;
  place-items: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

.staff-card h3 {
  font-size: 2.2rem;
  margin: 0.2rem 0 0.55rem;
}

.staff-phone {
  margin-top: 1rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  color: var(--gold);
}

@media (max-width: 860px) {
  .ops-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .staff-grid,
  .staff-grid.directors,
  .staff-grid.crew {
    grid-template-columns: 1fr;
    max-width: none;
  }
}

.facts {
  list-style: none;
  margin-top: 1.6rem;
}

.facts li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.facts strong {
  display: inline-block;
  min-width: 5.5rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
}

.field-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-radius: 8px;
}

.field-photo {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.panel-label {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}

.field-panel h3 {
  font-size: 2.2rem;
  margin: 0.3rem 0 1rem;
}

.field-panel dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}

.field-panel dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.field-panel dd {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
}

.fine {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.book { background: #100e0c; }

.book-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: start;
}

.book .section-head { margin-bottom: 0; max-width: none; }

.book strong { color: #fff; }

.steps {
  list-style: none;
  margin: 1.6rem 0 1.4rem;
}

.steps li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.65rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.steps span {
  font-family: "Bebas Neue", sans-serif;
  color: var(--gold);
  font-size: 1.3rem;
  min-width: 2rem;
}

.book-notes {
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.book-notes li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.4rem;
}

.book-notes li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--red-hot);
}

.phone { justify-self: center; }

.phone-bezel {
  width: min(320px, 100%);
  background: #070605;
  border-radius: 28px;
  padding: 12px 10px 16px;
  border: 1px solid rgba(255,236,210,0.18);
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}

.phone-notch {
  width: 92px;
  height: 8px;
  background: #1a1614;
  border-radius: 8px;
  margin: 4px auto 10px;
}

.phone-screen {
  background: #12100e;
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
}

.app-bar {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: #1a1412;
}

.app-bar strong { color: var(--cream); }

.app-brand {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.9rem 0.85rem;
  background: linear-gradient(90deg, rgba(155,27,27,.35), transparent);
  border-bottom: 1px solid var(--line);
}

.app-brand img { width: 42px; }

.app-brand p {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-brand small { color: var(--muted); font-size: 0.72rem; }

.app-list { list-style: none; }

.app-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.72rem 0.9rem;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 0.92rem;
}

.app-list li:hover,
.app-list li.hot {
  background: rgba(155, 27, 27, 0.22);
}

.app-list em {
  font-style: normal;
  font-family: "Oswald", sans-serif;
  color: var(--gold);
}

.app-foot {
  padding: 0.8rem 0.9rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.toast {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: #1f3a24;
  border: 1px solid #3d7a4a;
  border-radius: 4px;
}

@media (max-width: 860px) {
  .book-layout { grid-template-columns: 1fr; }
}

.map-frame {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.map-frame img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  object-position: center top;
}

.map-frame figcaption {
  padding: 0.75rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 2rem 6vw 2.6rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer img { width: 64px; }

.footer strong {
  display: block;
  color: var(--cream);
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
}

@media (max-width: 860px) {
  .hero, .field { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 2.2rem; }
  .hero-badge { order: -1; margin-bottom: 1rem; }
  .hero-badge img { width: 220px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #120f0d;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.4rem 1.2rem;
    gap: 0.9rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
}
