/* Treble 40 taxis - black / yellow / red */

:root {
  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --ink: #f4f4f1;
  --muted: #a8a8a0;
  --yellow: #ffcc00;
  --yellow-deep: #e6b800;
  --red: #c41e1e;
  --red-hot: #e02a2a;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 4px;
  --header-h: 72px;
  --font-display: "Oswald", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--yellow);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #ffe566;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 700;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
}

.btn-sm {
  padding: 0.55rem 0.85rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1rem 1.45rem;
  font-size: 1.05rem;
}

.btn-call {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 10px 30px rgba(196, 30, 30, 0.35);
}

.btn-call:hover {
  background: var(--red-hot);
  border-color: var(--red-hot);
  color: #fff;
}

.btn-whatsapp {
  background: #128c7e;
  color: #fff;
  border-color: #128c7e;
  box-shadow: 0 10px 30px rgba(18, 140, 126, 0.3);
}

.btn-whatsapp:hover {
  background: #0e7a6e;
  border-color: #0e7a6e;
  color: #fff;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-yellow:hover {
  background: var(--yellow-deep);
  border-color: var(--yellow-deep);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.text-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
}

.text-link:hover {
  color: #fff;
  border-color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  /* Solid background only - backdrop-filter creates a containing block
     that breaks position:fixed on the mobile nav */
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: #0a0a0a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-inner {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.logo:hover {
  color: inherit;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--black);
  border: 2px solid var(--yellow);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.logo-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: var(--red);
}

.logo-t40 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  position: relative;
  top: -2px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #fff;
}

.logo-text span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--yellow);
  margin-top: 0.2rem;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav ul {
  display: flex;
  gap: 0.15rem 1.15rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.35rem 0;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: none;
  gap: 0.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--black-2);
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--yellow);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: 5rem 0 3.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(0.9) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.78) 42%, rgba(10, 10, 10, 0.35) 70%, rgba(10, 10, 10, 0.55) 100%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.85) 0%, transparent 42%);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  width: min(100% - 2rem, var(--max));
  align-items: end;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  border-left: 3px solid var(--red);
  background: rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  margin: 0 0 0.35em;
  max-width: 10ch;
  color: #fff;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-lead {
  max-width: 34rem;
  color: #d7d7d0;
  font-size: 1.12rem;
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-alt-phone {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.hero-alt-phone a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-panel {
  background: linear-gradient(160deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.92));
  border: 1px solid rgba(255, 204, 0, 0.28);
  border-top: 3px solid var(--yellow);
  padding: 1.5rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  max-width: 360px;
  justify-self: end;
}

.panel-label {
  font-family: var(--font-display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-size: 0.75rem;
  margin: 0 0 0.5rem;
}

.hero-panel h2 {
  font-size: 1.55rem;
  margin-bottom: 0.9rem;
}

.hero-panel ul {
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.hero-panel li {
  position: relative;
  padding-left: 1.1rem;
  color: #cfcfc8;
  font-size: 0.98rem;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--yellow);
}

/* Service strip */
.service-strip {
  background: var(--yellow);
  color: var(--black);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--black);
}

.strip-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.strip-item {
  padding: 1.15rem 1rem;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.strip-item span {
  font-size: 0.88rem;
  opacity: 0.8;
}

.strip-area {
  background: rgba(0, 0, 0, 0.08);
}

/* Sections */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.6rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0;
  max-width: 14ch;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  align-items: end;
  margin-bottom: 2.75rem;
}

.section-intro {
  max-width: 28rem;
  color: var(--muted);
  margin: 0;
}

/* About */
.about {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(255, 204, 0, 0.06), transparent 40%),
    var(--black);
}

.about-layout {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.frame:hover img {
  transform: scale(1.04);
}

.frame-main {
  width: 100%;
  aspect-ratio: 4 / 3;
}

.fleet-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: var(--black);
  border-left: 4px solid var(--red);
  padding: 0.9rem 1rem;
  display: grid;
  gap: 0.15rem;
  max-width: 210px;
  box-shadow: var(--shadow);
}

.fleet-badge strong {
  font-family: var(--font-display);
  color: var(--yellow);
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.fleet-badge span {
  font-size: 0.86rem;
  color: #d0d0c8;
}

.about-copy .section-title {
  margin-bottom: 1.1rem;
}

.about-copy > p {
  color: #d2d2ca;
  max-width: 38rem;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}

.about-points article {
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 1rem 1rem 1.1rem;
  border-top: 2px solid var(--yellow);
}

.about-points h3 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Services */
.services {
  background: var(--black-2);
  border-block: 1px solid var(--line);
}

.services-stack {
  display: grid;
  gap: 1.5rem;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  background: var(--black);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 280px;
}

.service-card-flip {
  direction: rtl;
}

.service-card-flip > * {
  direction: ltr;
}

.service-media {
  overflow: hidden;
  min-height: 240px;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.4s ease;
  filter: saturate(0.95);
}

.service-card:hover .service-media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.service-body {
  padding: 1.75rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-index {
  font-family: var(--font-display);
  color: var(--red);
  letter-spacing: 0.16em;
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
}

.service-body h3 {
  font-size: 1.7rem;
  margin-bottom: 0.7rem;
}

.service-body p {
  color: var(--muted);
  margin-bottom: 1.2rem;
}

/* Portfolio */
.portfolio {
  background:
    linear-gradient(180deg, rgba(196, 30, 30, 0.08), transparent 28%),
    var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.port-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  grid-column: span 3;
  aspect-ratio: 1;
  background: var(--black-3);
}

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease), filter 0.35s ease;
  filter: brightness(0.92);
}

.port-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.02);
}

.port-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 0.85rem 0.75rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.port-lg {
  grid-column: span 6;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

.port-wide {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

/* Reviews */
.reviews {
  background: var(--black-2);
}

.review-card {
  margin: 0;
  max-width: 820px;
  background: var(--black);
  border: 1px solid var(--line);
  border-left: 5px solid var(--yellow);
  padding: 2.2rem 2rem 2rem;
  position: relative;
  box-shadow: var(--shadow);
}

.review-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.7;
  color: var(--red);
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  opacity: 0.7;
}

.review-text {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.35;
  color: #fff;
  margin: 0 0 1.5rem;
  max-width: 28ch;
  font-weight: 500;
}

.review-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.review-card cite {
  font-style: normal;
  color: var(--muted);
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

/* Contact */
.contact {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(255, 204, 0, 0.07), transparent 35%),
    var(--black);
  padding-bottom: 6rem;
}

.contact-layout {
  display: grid;
  gap: 2rem;
  align-items: stretch;
}

.contact-lead {
  color: var(--muted);
  max-width: 34rem;
}

.contact-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1.8rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin: 0;
}

.contact-details div {
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
}

.contact-details dt {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.3rem;
}

.contact-details dd {
  margin: 0;
  color: #fff;
  word-break: break-word;
}

.contact-details a {
  color: #fff;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--yellow);
}

.contact-map {
  min-height: 420px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  overflow: hidden;
  background: var(--black-3);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--muted);
  margin-top: 1rem;
  max-width: 28rem;
  font-size: 0.98rem;
}

.footer-col h3 {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--yellow);
  margin-bottom: 0.9rem;
}

.footer-col ul {
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: #cfcfc8;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-muted {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

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

.footer-bottom a:hover {
  color: var(--yellow);
}

.company-legal {
  margin: 0;
}

/* Floating contact */
.float-bar {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s var(--ease);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.04);
  color: #fff;
}

.float-btn.wa {
  background: #128c7e;
}

.float-btn.call {
  background: var(--red);
}

/* Privacy */
.page-hero {
  padding: 4.5rem 0 2rem;
  background:
    linear-gradient(90deg, rgba(255, 204, 0, 0.08), transparent 40%),
    var(--black-2);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 0.4rem;
}

.page-hero p:last-child {
  color: var(--muted);
  margin: 0;
}

.legal {
  padding: 3rem 0 5rem;
}

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2rem;
  color: var(--yellow);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 1rem;
  color: #d2d2ca;
}

.legal-content li {
  margin-bottom: 0.4rem;
}

.legal-content p {
  color: #d2d2ca;
}

/* Reveal - only when JS has marked the document */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.3fr 0.85fr;
  }

  .about-layout {
    grid-template-columns: 1.05fr 1fr;
    gap: 4rem;
  }

  .contact-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 980px) {
  .strip-track {
    grid-template-columns: 1fr 1fr;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .port-item {
    grid-column: span 4;
  }

  .port-lg,
  .port-wide {
    grid-column: span 8;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    background: rgba(8, 8, 8, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.5rem;
    overflow-y: auto;
    z-index: 120;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .site-nav a {
    font-size: 1.2rem;
    padding: 0.55rem 0;
  }

  .nav-cta {
    display: flex;
  }

  .header-call .hide-sm {
    display: none;
  }

  .service-card,
  .service-card-flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-media {
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding: 4.5rem 0 2.5rem;
    align-items: center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.88) 45%, rgba(10, 10, 10, 0.94) 100%),
      linear-gradient(90deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.55) 100%);
  }

  .hero-panel {
    justify-self: stretch;
    max-width: none;
  }

  .fleet-badge {
    position: static;
    margin-top: 0.85rem;
    max-width: none;
  }

  .about-points,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .strip-track {
    grid-template-columns: 1fr;
  }

  .port-item,
  .port-lg,
  .port-wide {
    grid-column: span 12;
    aspect-ratio: 16 / 10;
  }

  .port-lg {
    grid-row: auto;
  }

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

  .review-card {
    padding: 1.6rem 1.2rem;
  }

  .float-bar {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .float-btn:hover,
  .frame:hover img,
  .service-card:hover .service-media img,
  .port-item:hover img {
    transform: none;
  }
}
