:root {
  --cream: #f2ede6;
  --parchment: #e8e1d6;
  --ink: #0f0f0d;
  --ink-mid: #2a2a26;
  --ink-soft: #5a5a52;
  --red: #c8281e;
  --red-dark: #9e1f17;
  --red-pale: #f5e8e7;
  --rule: rgba(15, 15, 13, 0.12);
  --rule-bold: rgba(15, 15, 13, 0.25);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
/* Prevent page scroll when mobile menu open */
body.menu-open {
  overflow: hidden;
}

/* ── CURSOR ─────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
/* Hide custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
  .cursor-dot {
    display: none;
  }
}

/* ── TICKER ─────────────────────────────────────────── */
.ticker {
  background: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-bottom: 2px solid var(--red);
  position: relative;
  z-index: 300;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-inner span {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0 36px;
  color: rgba(242, 237, 230, 0.7);
}
.ticker-inner span.accent {
  color: var(--red);
  font-weight: 500;
  opacity: 1;
}
.ticker-inner span.loc {
  color: rgba(242, 237, 230, 0.95);
}
@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── NAV (floats over video) ────────────────────────── */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 52px;
  height: 72px;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.75) 0%,
    transparent 100%
  );
  transition:
    position 0.3s,
    background 0.3s;
}
nav.stuck {
  position: fixed;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(200, 40, 30, 0.3);
  backdrop-filter: blur(14px);
}
.nav-left {
  display: flex;
  gap: 32px;
}
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.nav-left a,
.nav-right a {
  font-family: "DM Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-left a:hover,
.nav-right a:hover {
  color: var(--red);
}
.nav-center {
  text-align: center;
}
.nav-logo-text {
  font-family: "Anton", sans-serif;
  font-size: 23px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
}
.nav-logo-text span {
  color: var(--red);
}
.nav-sub {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.4);
  margin-top: 3px;
}
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* ── HAMBURGER TOGGLE (hidden on desktop) ───────────── */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(242, 237, 230, 0.25);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  position: relative;
  z-index: 270;
  transition: border-color 0.2s;
}
.nav-toggle:hover {
  border-color: var(--red);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  transition:
    transform 0.3s ease,
    opacity 0.25s ease;
}
.nav-toggle.open {
  border-color: var(--red);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── MOBILE DRAWER MENU ─────────────────────────────── */
.mobile-close {
  position: absolute;
  top: 50px;
  right: 22px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(242, 237, 230, 0.22);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.mobile-close:hover {
  border-color: var(--red);
  transform: rotate(90deg);
}
.mobile-close span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #fff;
}
.mobile-close span:nth-child(1) {
  transform: rotate(45deg);
}
.mobile-close span:nth-child(2) {
  transform: rotate(-45deg);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid rgba(200, 40, 30, 0.35);
  transform: translateX(110%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 265;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu::before {
  content: "ROMEO";
  position: absolute;
  right: -50px;
  bottom: -30px;
  font-family: "Anton", sans-serif;
  font-size: 180px;
  color: rgba(200, 40, 30, 0.06);
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}
.mobile-menu-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 100px 36px 40px;
  width: 100%;
}
.mobile-menu-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}
.mobile-menu-inner a {
  font-family: "Anton", sans-serif;
  font-size: 30px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.9);
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid rgba(242, 237, 230, 0.08);
  transition:
    color 0.2s,
    padding-left 0.25s;
  position: relative;
}
.mobile-menu-inner a:hover,
.mobile-menu-inner a:active {
  color: var(--red);
  padding-left: 10px;
}
.mobile-menu-inner a.mobile-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 18px 24px;
  text-align: center;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 500;
  margin-top: 24px;
  transition: background 0.2s;
}
.mobile-menu-inner a.mobile-cta:hover,
.mobile-menu-inner a.mobile-cta:active {
  background: var(--red-dark);
  color: #fff;
  padding-left: 24px;
}
.mobile-menu-foot {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 237, 230, 0.08);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.35);
  line-height: 2;
}

/* ── HERO VIDEO ─────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-bottom: 3px solid var(--ink);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(10, 10, 10, 0.93) 0%,
      rgba(10, 10, 10, 0.42) 45%,
      rgba(10, 10, 10, 0.08) 100%
    ),
    linear-gradient(to right, rgba(10, 10, 10, 0.6) 0%, transparent 65%);
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 52px 80px;
  max-width: 860px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.58);
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease both;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.hero-headline {
  font-family: "Anton", sans-serif;
  font-size: clamp(60px, 9.5vw, 110px);
  line-height: 0.92;
  letter-spacing: -1px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 32px;
  animation: fadeUp 0.9s 0.08s ease both;
}
.hero-headline .stroke-text {
  -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.85);
  color: transparent;
}
.hero-headline .red {
  color: var(--red);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(242, 237, 230, 0.6);
  max-width: 500px;
  margin-bottom: 40px;
  animation: fadeUp 0.9s 0.16s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.24s ease both;
}
.btn-red {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 16px 32px;
  text-decoration: none;
  display: inline-block;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}
.btn-outline-light {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.78);
  border: 1.5px solid rgba(242, 237, 230, 0.3);
  padding: 15px 32px;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.btn-outline-light:hover {
  border-color: var(--red);
  color: var(--red);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1.2s 0.6s ease both;
}
.scroll-cue span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.28);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(242, 237, 230, 0.3), transparent);
  animation: scroll-drop 1.8s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── STATS ROW ──────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 2px solid var(--ink);
}
.stat-cell {
  padding: 36px 40px;
  border-right: 1px solid var(--rule-bold);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-cell:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Anton", sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--ink);
}
.stat-num .red {
  color: var(--red);
}
.stat-num sup {
  font-family: "DM Mono", monospace;
  font-size: 15px;
  color: var(--ink-soft);
  vertical-align: super;
}
.stat-desc {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── SECTION LABELS ─────────────────────────────────── */
.section-eyebrow {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--ink);
}
.section-title .outline {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}
.btn-outline {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 14px 32px;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ── SERVICES ───────────────────────────────────────── */
.services-section {
  border-bottom: 2px solid var(--ink);
}
.services-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 48px 48px;
  border-bottom: 1px solid var(--rule-bold);
  gap: 48px;
}
.services-intro-text {
  max-width: 400px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.srv-card {
  padding: 48px 40px;
  border-right: 1px solid var(--rule-bold);
  border-bottom: 1px solid var(--rule-bold);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.srv-card:nth-child(3n) {
  border-right: none;
}
.srv-card:nth-child(n + 4) {
  border-bottom: none;
}
.srv-card:hover {
  background: var(--red-pale);
}
.srv-card:hover .srv-arrow {
  opacity: 1;
  transform: translateX(0);
}
.srv-num {
  font-family: "Anton", sans-serif;
  font-size: 88px;
  line-height: 1;
  color: rgba(15, 15, 13, 0.05);
  position: absolute;
  top: -12px;
  right: 16px;
  pointer-events: none;
  transition: color 0.25s;
}
.srv-card:hover .srv-num {
  color: rgba(200, 40, 30, 0.08);
}

/* ── SERVICE IMAGE FIX ──────────────────────────────── */
.srv-img {
  width: 100%;
  height: 160px;
  background: var(--parchment);
  border: 1px dashed rgba(15, 15, 13, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  overflow: hidden;
}
.srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fm-cell-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.srv-img svg {
  width: 24px;
  height: 24px;
  stroke: rgba(15, 15, 13, 0.2);
  fill: none;
  stroke-width: 1.5;
}
.srv-img span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(15, 15, 13, 0.25);
}

.srv-title {
  font-family: "Anton", sans-serif;
  font-size: 26px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.srv-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.srv-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 24px;
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}

/* ── SPLIT ──────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--ink);
  min-height: 640px;
}
.split-visual {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border-right: 2px solid var(--ink);
}
.split-visual .big-bg-word {
  position: absolute;
  font-family: "Anton", sans-serif;
  font-size: 200px;
  color: rgba(242, 237, 230, 0.03);
  bottom: -30px;
  left: -20px;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.split-visual .ph-icon {
  width: 64px;
  height: 64px;
  border: 1.5px solid rgba(242, 237, 230, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.split-visual .ph-icon svg {
  width: 28px;
  height: 28px;
  stroke: rgba(242, 237, 230, 0.2);
  fill: none;
  stroke-width: 1.5;
}
.split-visual .ph-label {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.2);
  position: relative;
  z-index: 2;
}
.split-accent-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--red);
  padding: 28px 32px;
}
.split-accent-box .a-num {
  font-family: "Anton", sans-serif;
  font-size: 56px;
  line-height: 1;
  color: #fff;
}
.split-accent-box .a-txt {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}
.split-content {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}
.feat-row {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}
.feat-row:first-child {
  border-top: 1px solid var(--rule);
}
.feat-idx {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 1px;
  min-width: 28px;
  margin-top: 3px;
}
.feat-body h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}
.feat-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── PROCESS ────────────────────────────────────────── */
.process-section {
  border-bottom: 2px solid var(--ink);
  padding: 80px 48px;
}
.process-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 48px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--ink) 0,
    var(--ink) 8px,
    transparent 8px,
    transparent 20px
  );
  opacity: 0.2;
}
.step-card {
  padding: 0 28px;
  text-align: center;
}
.step-circle {
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  background: var(--cream);
  position: relative;
  z-index: 2;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.step-card:hover .step-circle {
  background: var(--red);
  border-color: var(--red);
}
.step-circle span {
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
.step-card:hover .step-circle span {
  color: #fff;
}
.step-card h4 {
  font-family: "Anton", sans-serif;
  font-size: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ── FLEET MOSAIC ───────────────────────────────────── */
.fleet-section {
  border-bottom: 2px solid var(--ink);
}
.fleet-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 48px 40px;
  border-bottom: 1px solid var(--rule-bold);
  gap: 48px;
}
.fleet-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
}
.fm-cell {
  background: var(--parchment);
  border-right: 1px solid var(--rule-bold);
  border-bottom: 1px solid var(--rule-bold);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.fm-cell-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.fm-cell-inner svg {
  width: 26px;
  height: 26px;
  stroke: rgba(15, 15, 13, 0.18);
  fill: none;
  stroke-width: 1.5;
}
.fm-cell-inner span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(15, 15, 13, 0.2);
}
.fm-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to top, rgba(15, 15, 13, 0.8), transparent);
  width: 100%;
  padding: 20px 24px;
}
.fm-overlay h4 {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--cream);
}
.fm-overlay p {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.5);
  margin-top: 3px;
}
.fm-cell-a {
  grid-column: span 5;
}
.fm-cell-b {
  grid-column: span 4;
}
.fm-cell-c {
  grid-column: span 3;
}
.fm-cell-d {
  grid-column: span 3;
}
.fm-cell-e {
  grid-column: span 5;
}
.fm-cell-f {
  grid-column: span 4;
}
.fm-label-cell {
  grid-column: span 3;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.fm-label-cell h3 {
  font-family: "Anton", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.fm-label-cell p {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

/* ── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section {
  border-bottom: 2px solid var(--ink);
  padding: 80px 48px;
}
.test-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  border: 1px solid var(--rule-bold);
  padding: 36px 32px;
  position: relative;
  background: var(--cream);
  transition:
    border-color 0.25s,
    transform 0.2s;
}
.test-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.test-card .quote-mark {
  font-family: "Anton", sans-serif;
  font-size: 72px;
  line-height: 0.7;
  color: var(--red);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  left: 24px;
  pointer-events: none;
}
.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star {
  width: 13px;
  height: 13px;
  background: var(--red);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
.test-text {
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-init {
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--cream);
  font-family: "Anton", sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.author-role {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ── LOCATION SECTION ───────────────────────────────── */
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--ink);
  min-height: 420px;
}
.location-map {
  background: var(--parchment);
  border-right: 2px solid var(--ink);
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}
.location-content {
  padding: 64px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.location-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.loc-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--rule-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.loc-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
}
.loc-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.loc-text span {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.loc-text a {
  color: var(--red);
  text-decoration: none;
  font-family: "DM Mono", monospace;
  font-size: 13px;
  letter-spacing: 1px;
}
.loc-text a:hover {
  text-decoration: underline;
}
.loc-highlight {
  color: var(--red);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 1px;
}

/* ── CTA STRIP ──────────────────────────────────────── */
.cta-strip {
  background: var(--ink);
  padding: 96px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  border-bottom: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "ROMEO";
  position: absolute;
  right: -60px;
  top: -60px;
  font-family: "Anton", sans-serif;
  font-size: 280px;
  color: rgba(242, 237, 230, 0.02);
  pointer-events: none;
  line-height: 1;
}
.cta-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(40px, 5.5vw, 72px);
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.95;
}
.cta-title span {
  color: var(--red);
}
.cta-sub {
  margin-top: 16px;
  font-size: 15px;
  color: rgba(242, 237, 230, 0.45);
  font-weight: 300;
  line-height: 1.75;
}
.cta-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cta-phone {
  font-family: "Anton", sans-serif;
  font-size: 52px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
  line-height: 1;
  white-space: nowrap;
}
.cta-phone:hover {
  color: var(--red);
}
.cta-avail {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.35);
}
.cta-detail {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(242, 237, 230, 0.28);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-detail::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--cream);
  border-top: 2px solid var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--rule-bold);
}
.footer-col-block {
  padding: 56px 40px;
  border-right: 1px solid var(--rule-bold);
}
.footer-col-block:last-child {
  border-right: none;
}
.footer-brand-name {
  font-family: "Anton", sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--ink);
}
.footer-brand-name span {
  color: var(--red);
}
.footer-tagline {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}
.footer-brand-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 260px;
}
.footer-address-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.footer-address-block p {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.9;
}
.footer-address-block p strong {
  color: var(--ink);
}
.footer-col-title {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-bold);
}
.footer-col-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col-block ul li a {
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-block ul li a:hover {
  color: var(--red);
}
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}
.footer-bottom-bar p {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(15, 15, 13, 0.3);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(15, 15, 13, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--red);
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1100px) {
  nav {
    padding: 0 24px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
  /* Hide desktop nav links + right block — show hamburger instead */
  .nav-left,
  .nav-right {
    display: none;
  }
  .nav-center {
    text-align: left;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-content {
    padding: 0 28px 64px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .srv-card:nth-child(2n) {
    border-right: none;
  }
  .srv-card:nth-child(3n) {
    border-right: 1px solid var(--rule-bold);
  }
  .services-header-bar,
  .fleet-top-bar,
  .test-header,
  .process-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .split-visual {
    height: 380px;
    border-right: none;
    border-bottom: 2px solid var(--ink);
  }
  .split-content {
    padding: 56px 28px;
  }
  .process-section {
    padding: 64px 28px;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
  .process-steps::before {
    display: none;
  }
  .fleet-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .fm-cell-a,
  .fm-cell-b,
  .fm-cell-c,
  .fm-cell-d,
  .fm-cell-e,
  .fm-cell-f {
    grid-column: span 1;
    height: 220px;
  }
  .fm-label-cell {
    grid-column: span 1;
    min-height: 160px;
  }
  .test-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .location-section {
    grid-template-columns: 1fr;
  }
  .location-map {
    border-right: none;
    border-bottom: 2px solid var(--ink);
  }
  .location-map iframe {
    min-height: 320px;
  }
  .location-content {
    padding: 48px 28px;
  }
  .cta-strip {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 72px 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-block:nth-child(2n) {
    border-right: none;
  }
}

/* ── TABLET / MOBILE ─ Stats go to 2-column grid ──── */
@media (max-width: 900px) {
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  /* Reset borders for 2-col layout */
  .stat-cell {
    border-right: 1px solid var(--rule-bold);
    border-bottom: 1px solid var(--rule-bold);
  }
  .stat-cell:nth-child(2n) {
    border-right: none;
  }
  .stat-cell:nth-child(n + 3) {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .srv-card:nth-child(n) {
    border-right: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-col-block {
    border-right: none;
    padding: 36px 24px;
  }
  .hero-headline {
    font-size: 64px;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }

  /* Keep stats at 2 columns on mobile — user requested this */
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .stat-cell {
    padding: 28px 24px;
    border-right: 1px solid var(--rule-bold);
    border-bottom: 1px solid var(--rule-bold);
  }
  .stat-cell:nth-child(2n) {
    border-right: none;
  }
  .stat-cell:nth-child(n + 3) {
    border-bottom: none;
  }
  .stat-num {
    font-size: 42px;
  }

  /* Tighten nav on very small screens */
  nav {
    padding: 0 18px;
  }
  .nav-logo-text {
    font-size: 19px;
    letter-spacing: 2px;
  }
  .nav-sub {
    font-size: 8px;
    letter-spacing: 2px;
  }

  /* Tighten mobile drawer */
  .mobile-menu-inner {
    padding: 90px 28px 32px;
  }
  .mobile-menu-inner a {
    font-size: 26px;
  }
}
