/* ============================================================
   MSV Marine — static rebuild of the React/Tailwind site
   Breakpoints: sm 640px, md 768px, lg 1024px
   ============================================================ */

@font-face {
  font-family: "Russo One";
  src: url("fonts/RussoOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --red-950: #450a0a;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
  --navy: #1b2b4d;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: var(--gray-900);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--red-600);
  color: #fff;
}

/* Headings use Russo One (single 400 weight; font-synthesis off so
   heavier weight declarations don't trigger faux-bold) */
h1, h2, h3, h4 {
  font-family: "Russo One", var(--font-sans);
  font-weight: 400;
  font-synthesis: none;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Icon sizing helpers */
svg.icon-12 { width: 12px; height: 12px; }
svg.icon-14 { width: 14px; height: 14px; }
svg.icon-16 { width: 16px; height: 16px; }
svg.icon-20 { width: 20px; height: 20px; }
svg.icon-12, svg.icon-14, svg.icon-16, svg.icon-20,
.stat-card__icon svg, .pillar__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
svg.red { color: var(--red-500); }

/* ============================================================
   MSV Logo (image lockup: shield + MARINE wordmark)
   ============================================================ */

.logo {
  display: block;
  width: auto;
  user-select: none;
}
.logo--md { height: 38px; }

/* ============================================================
   Navbar
   ============================================================ */

.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .navbar { padding: 12px 32px; }
}

.navbar__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Stack logo above links on phones so nothing overflows */
@media (max-width: 639px) {
  .navbar__inner {
    flex-direction: column;
    gap: 10px;
  }
  .navbar__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.15em;
  }
}

.navbar__logo { text-align: left; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-family: "Russo One", var(--font-sans);
  font-weight: 400;
  font-synthesis: none;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  .navbar__nav { gap: 32px; font-size: 12px; }
}
@media (min-width: 768px) {
  .navbar__nav { gap: 48px; }
}

.navbar__nav button {
  padding: 4px 0;
  transition: color 0.15s;
}
.navbar__nav button:hover { color: var(--red-500); }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
@media (min-width: 640px) { .hero { height: 500px; } }
@media (min-width: 768px) { .hero { height: 580px; } }

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero__bg.is-active { opacity: 1; }

.hero__vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent, rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  text-align: center;
  padding: 0 24px;
  color: #fff;
}

.hero__title {
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
}
@media (min-width: 640px) { .hero__title { font-size: 52px; letter-spacing: 0.2em; } }
@media (min-width: 768px) { .hero__title { font-size: 64px; } }

.hero__subtitle {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: var(--red-600);
  padding: 8px 14px 8px 16px;
}
@media (min-width: 640px) { .hero__subtitle { font-size: 15px; letter-spacing: 0.3em; padding: 8px 18px 8px 22px; } }
@media (min-width: 768px) { .hero__subtitle { font-size: 17px; } }

/* ============================================================
   About section
   ============================================================ */

.about {
  position: relative;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 80px 24px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) { .about { padding: 80px 48px; } }
@media (min-width: 768px) { .about { padding: 80px 80px; } }

.about__inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about__heading {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
@media (min-width: 640px) { .about__heading { font-size: 36px; } }
@media (min-width: 768px) { .about__heading { font-size: 48px; } }

.about__subheading {
  font-size: 16px;
  font-weight: 500;
  color: var(--red-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .about__subheading { font-size: 18px; } }
@media (min-width: 768px) { .about__subheading { font-size: 20px; } }

.about__copy {
  font-size: 16px;
  color: var(--gray-200);
  line-height: 1.625;
  max-width: 56rem;
  margin-bottom: 48px;
}
@media (min-width: 640px) { .about__copy { font-size: 18px; } }
@media (min-width: 768px) { .about__copy { font-size: 20px; } }

/* Stat callouts */
.about__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 48rem;
  margin-bottom: 56px;
}
@media (min-width: 640px) { .about__stats { grid-template-columns: 1fr 1fr; } }

.stat-card {
  padding: 24px;
  background: linear-gradient(to bottom right, var(--gray-900), #000);
  border: 1px solid var(--gray-800);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.stat-card__icon {
  padding: 12px;
  background: rgba(69, 10, 10, 0.6);
  border: 1px solid rgba(153, 27, 27, 0.5);
  border-radius: 0.5rem;
  color: var(--red-500);
  display: flex;
}
.stat-card__icon svg { width: 32px; height: 32px; }

.stat-card__number {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}

.stat-card__label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) { .stat-card__label { font-size: 14px; } }

/* Service pillars */
.about__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  width: 100%;
  text-align: left;
  margin-bottom: 64px;
}
@media (min-width: 768px) { .about__pillars { grid-template-columns: repeat(3, 1fr); } }

.pillar {
  padding: 24px;
  background: rgba(3, 7, 18, 0.8);
  border: 1px solid var(--gray-800);
  border-radius: 0.75rem;
  transition: border-color 0.15s;
}
.pillar:hover { border-color: rgba(220, 38, 38, 0.5); }

.pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  background: rgba(69, 10, 10, 0.5);
  border: 1px solid rgba(153, 27, 27, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-500);
  margin-bottom: 20px;
  transition: transform 0.15s;
}
.pillar__icon svg { width: 24px; height: 24px; }
.pillar:hover .pillar__icon { transform: scale(1.1); }

.pillar h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pillar p {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 300;
  line-height: 1.625;
}
@media (min-width: 640px) { .pillar p { font-size: 14px; } }

/* Regulatory badges strip */
.about__badges {
  width: 100%;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about__badges-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.about__badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 640px) { .about__badges-row { gap: 12px; } }

.badge {
  padding: 6px 12px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-300);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ============================================================
   Feature section (fixed-background parallax window)
   ============================================================ */

.feature {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: inset(0 0 0 0);
}
@media (min-width: 640px) { .feature { height: 720px; } }
@media (min-width: 768px) { .feature { height: 840px; } }

.feature__bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/middle.jpg");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.feature__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.6) 65%,
    rgba(0, 0, 0, 0.92) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.feature__content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 48px 24px;
}
@media (min-width: 640px) { .feature__content { padding: 80px 48px; } }
@media (min-width: 768px) { .feature__content { padding: 112px 80px; } }
@media (min-width: 1024px) { .feature__content { padding-left: 128px; padding-right: 128px; } }

.feature__text {
  text-align: right;
  color: #fff;
  max-width: 42rem;
}

.feature__text h2 {
  font-size: 24px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 24px;
  text-shadow: 0 20px 13px rgba(0, 0, 0, 0.06), 0 8px 5px rgba(0, 0, 0, 0.32);
}
@media (min-width: 640px) { .feature__text h2 { font-size: 28px; } }
@media (min-width: 768px) { .feature__text h2 { font-size: 36px; } }

.feature__text p {
  font-size: 12px;
  color: var(--gray-200);
  max-width: 32rem;
  margin-left: auto;
  margin-bottom: 40px;
  line-height: 1.625;
  text-shadow: 0 4px 3px rgba(0, 0, 0, 0.24);
}
@media (min-width: 640px) { .feature__text p { font-size: 14px; } }
@media (min-width: 768px) { .feature__text p { font-size: 16px; } }

/* Underlined CTA link used in feature + products */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 6px;
  transition: color 0.15s, border-color 0.15s;
}
@media (min-width: 640px) { .link-underline { font-size: 14px; } }
.link-underline:hover {
  color: var(--red-400);
  border-color: var(--red-400);
}

/* ============================================================
   Quote section
   ============================================================ */

.quote {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) { .quote { padding: 96px 24px; } }
@media (min-width: 768px) { .quote { padding: 112px 24px; } }

.quote__inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote blockquote {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1.625;
  margin-bottom: 24px;
  color: var(--gray-100);
  user-select: none;
}
@media (min-width: 640px) { .quote blockquote { font-size: 24px; } }
@media (min-width: 768px) { .quote blockquote { font-size: 30px; } }
@media (min-width: 1024px) { .quote blockquote { font-size: 36px; } }

.quote__accent {
  color: var(--red-500);
  font-weight: 400;
}

.quote__citation {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
@media (min-width: 640px) { .quote__citation { font-size: 14px; } }

/* ============================================================
   Products banner
   ============================================================ */

.products {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) { .products { height: 540px; } }
@media (min-width: 768px) { .products { height: 640px; } }

.products__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
}

.products__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
  z-index: 0;
}

.products__content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
}
@media (min-width: 640px) { .products__content { padding: 0 48px; } }
@media (min-width: 768px) { .products__content { padding: 0 80px; } }
@media (min-width: 1024px) { .products__content { padding: 0 128px; } }

.products__text {
  color: #fff;
  max-width: 36rem;
}

.products__text h2 {
  font-size: 24px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 16px;
  text-shadow: 0 10px 8px rgba(0, 0, 0, 0.04), 0 4px 3px rgba(0, 0, 0, 0.4);
}
@media (min-width: 640px) { .products__text h2 { font-size: 28px; } }
@media (min-width: 768px) { .products__text h2 { font-size: 36px; } }

.products__text p {
  font-size: 12px;
  color: var(--gray-300);
  max-width: 28rem;
  margin-bottom: 24px;
  line-height: 1.625;
}
@media (min-width: 640px) { .products__text p { font-size: 14px; } }

/* ============================================================
   Contact section
   ============================================================ */

.contact {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 80px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 640px) { .contact { padding: 96px 48px; } }

.contact__inner {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.contact__heading {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 12px;
}
@media (min-width: 640px) { .contact__heading { font-size: 30px; } }
@media (min-width: 768px) { .contact__heading { font-size: 36px; } }

.contact__subheading {
  font-size: 13px;
  font-weight: 500;
  color: var(--red-500);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .contact__subheading { font-size: 15px; } }

.contact .contact-tiles {
  grid-template-columns: 1fr;
  max-width: 20rem;
  width: 100%;
  margin: 0 auto 24px;
}
.contact .inquiry { text-align: left; }

/* ============================================================
   Footer
   ============================================================ */

.footer {
  width: 100%;
  background: #000;
  color: var(--gray-300);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 64px 24px 40px;
}
@media (min-width: 640px) { .footer { padding: 64px 48px 40px; } }
@media (min-width: 768px) { .footer { padding: 64px 80px 40px; } }

.footer__inner {
  max-width: 80rem;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); } }

.footer__col > * + * { margin-top: 12px; }
.footer__brand > * + * { margin-top: 16px; }

.footer__brand p {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 300;
  line-height: 1.625;
}

.footer__highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--red-500);
  font-weight: 500;
  padding-top: 4px;
}

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
}

.footer__links {
  list-style: none;
  font-size: 12px;
  color: var(--gray-400);
}
.footer__links li + li { margin-top: 8px; }

.footer__links button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}
.footer__links button:hover { color: var(--red-400); }
.footer__links svg { color: var(--red-500); }

.footer__note {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.625;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
}

.footer__badges span {
  padding: 4px 8px;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: 0.25rem;
  font-size: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 500;
  color: var(--gray-300);
}

.footer__contact {
  list-style: none;
  font-size: 12px;
  color: var(--gray-400);
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__contact li + li { margin-top: 10px; }
.footer__contact svg { color: var(--red-500); margin-top: 1px; }

.btn-red {
  width: 100%;
  padding: 8px;
  background: var(--red-600);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0.25rem;
  transition: background-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.btn-red:hover { background: var(--red-700); }

.footer__bottom {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 300;
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; } }

.footer__bottom p { font-size: 11px; }
@media (min-width: 640px) { .footer__bottom p { font-size: 12px; } }

.footer__legal {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 11px;
}
.footer__legal button { transition: color 0.15s; }
.footer__legal button:hover { color: var(--gray-300); }

/* ============================================================
   Modals
   ============================================================ */

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fade-in 0.2s ease-out;
}
.modal-backdrop[hidden] { display: none; }

.modal {
  position: relative;
  width: 100%;
  max-width: 42rem;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-800);
  background: rgba(0, 0, 0, 0.4);
}

.modal__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: none;
}
.modal-backdrop[data-active="about"] [data-modal-title="about"],
.modal-backdrop[data-active="products"] [data-modal-title="products"],
.modal-backdrop[data-active="contact"] [data-modal-title="contact"] {
  display: block;
}

.modal__close {
  padding: 6px;
  border-radius: 0.5rem;
  color: var(--gray-400);
  transition: color 0.15s, background-color 0.15s;
  display: flex;
}
.modal__close:hover {
  color: #fff;
  background: var(--gray-800);
}

.modal__body {
  padding: 24px;
  overflow-y: auto;
  font-size: 14px;
  color: var(--gray-300);
}

.modal__pane { display: none; }
.modal__pane > * + * { margin-top: 16px; }
.modal-backdrop[data-active="about"] [data-modal-pane="about"],
.modal-backdrop[data-active="products"] [data-modal-pane="products"],
.modal-backdrop[data-active="contact"] [data-modal-pane="contact"] {
  display: block;
}

.modal__pane p { line-height: 1.625; }

.callout {
  padding: 16px;
  border-radius: 0.5rem;
  background: rgba(69, 10, 10, 0.3);
  border: 1px solid rgba(153, 27, 27, 0.4);
  color: #fecaca;
}
.callout h4 {
  font-weight: 700;
  font-size: 16px;
  color: var(--red-400);
  margin-bottom: 4px;
}
.callout p {
  font-size: 12px;
  color: rgba(254, 202, 202, 0.9);
  line-height: 1.625;
}

.modal__subhead {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.modal__standards-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 8px;
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) { .standards-grid { grid-template-columns: 1fr 1fr; } }

.standards-grid > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(31, 41, 55, 0.5);
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 0.25rem;
  font-size: 12px;
  color: var(--gray-200);
}
.standards-grid svg { color: var(--red-500); }

/* Fleet cards */
.fleet > * + * { margin-top: 12px; }

.fleet__card {
  padding: 16px;
  border-radius: 0.5rem;
  background: rgba(31, 41, 55, 0.6);
  border: 1px solid rgba(55, 65, 81, 0.6);
  transition: border-color 0.15s;
}
.fleet__card:hover { border-color: rgba(239, 68, 68, 0.5); }

.fleet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.fleet__name {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fleet__name svg { color: var(--red-500); }
.fleet__name h4 {
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.fleet__length {
  font-size: 12px;
  background: rgba(127, 29, 29, 0.6);
  color: #fecaca;
  padding: 2px 8px;
  border-radius: 0.25rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.fleet__meta {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.fleet__card p {
  font-size: 12px;
  color: var(--gray-300);
}

/* Contact modal */
.contact-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 640px) { .contact-tiles { grid-template-columns: repeat(3, 1fr); } }

.contact-tile {
  padding: 12px;
  background: rgba(31, 41, 55, 0.6);
  border-radius: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-tile svg { margin-bottom: 4px; }

.contact-tile__label {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.contact-tile__value {
  font-size: 11px;
  color: var(--gray-400);
}

.inquiry {
  padding: 16px;
  background: rgba(31, 41, 55, 0.4);
  border-radius: 0.5rem;
  border: 1px solid rgba(55, 65, 81, 0.5);
}
.inquiry > * + * { margin-top: 12px; }

.inquiry h4 {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}

.inquiry__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.inquiry input,
.inquiry textarea {
  width: 100%;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: 0.25rem;
  padding: 6px 12px;
  font-size: 12px;
  color: #fff;
  font-family: inherit;
  outline: none;
}
.inquiry textarea { padding: 8px; resize: vertical; }
.inquiry input:focus,
.inquiry textarea:focus { border-color: var(--red-500); }
.inquiry input::placeholder,
.inquiry textarea::placeholder { color: var(--gray-500); }

.btn-red--full { margin-top: 12px; }

.modal__footer {
  padding: 12px 24px;
  border-top: 1px solid var(--gray-800);
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: flex-end;
}

.modal__dismiss {
  padding: 6px 16px;
  background: var(--gray-800);
  color: var(--gray-200);
  font-size: 12px;
  font-weight: 600;
  border-radius: 0.25rem;
  transition: background-color 0.15s;
}
.modal__dismiss:hover { background: var(--gray-700); }
