: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: 36px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
}

.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;
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  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: repeat(auto-fit, minmax(240px, 1fr));
}

.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 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.fleet article img {
  width: 100%;
  height: 160px;
  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: 1.7rem;
  margin: 0.3rem 0 0.45rem;
}

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

.field {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
  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; }

.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; }
}

.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; }
}
