@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #0a0c0e;
  --ink-soft: #101419;
  --panel: #14191f;
  --panel-raised: #191f26;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --paper: #f4f1e9;
  --paper-soft: #e7e3d9;
  --muted: #aeb6c1;
  --muted-dark: #5e6670;
  --gold: #d8ad4a;
  --gold-light: #efca70;
  --gold-dark: #8d6a21;
  --green: #147a49;
  --green-dark: #0f653b;
  --blue: #8ea8b8;
  --danger: #e06d5f;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
  --header-height: 82px;
  --radius: 6px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 5%, rgba(216, 173, 74, 0.09), transparent 35%),
    radial-gradient(ellipse at 85% 75%, rgba(31, 122, 90, 0.05), transparent 32%),
    var(--ink);
  content: "";
  pointer-events: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
}

h3 {
  line-height: 1.25;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 3px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-compact {
  padding: 78px 0;
}

.section-paper {
  background: var(--paper);
  color: var(--ink-soft);
}

.section-ink-soft {
  background: var(--ink-soft);
}

.section-line {
  border-top: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-paper .eyebrow {
  color: var(--gold-dark);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.45rem, 5vw, 4.9rem);
}

.section-heading p {
  max-width: 520px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-paper .section-heading p {
  color: var(--muted-dark);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.89rem;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn svg,
.text-link svg,
.vehicle-specs svg,
.contact-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(216, 173, 74, 0.16);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 18px 42px rgba(216, 173, 74, 0.23);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(10, 12, 14, 0.28);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.btn-whatsapp {
  background: var(--green);
  color: white;
}

.btn-whatsapp:hover {
  background: var(--green-dark);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(5, 7, 9, 0.78), rgba(5, 7, 9, 0));
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  height: 72px;
  border-bottom-color: var(--line);
  background: rgba(8, 10, 12, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(18px) saturate(1.2);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(216, 173, 74, 0.65);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 600;
}

.brand-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 600;
  line-height: 1.05;
}

.brand-copy small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.nav-panel {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 18px 0 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  display: block;
  padding: 10px 10px;
  color: #c3c9d1;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: white;
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions .btn {
  min-height: 43px;
  padding: 10px 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: transparent;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 19px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* Home hero */
.hero-home {
  position: relative;
  display: grid;
  min-height: min(900px, 92svh);
  align-items: end;
  overflow: hidden;
  background: #111820 url("../img/brand/hero-executivo.webp") center center / cover no-repeat;
  isolation: isolate;
}

.hero-home::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 8, 10, 0.96) 0%, rgba(6, 8, 10, 0.81) 32%, rgba(6, 8, 10, 0.2) 69%, rgba(6, 8, 10, 0.17) 100%),
    linear-gradient(0deg, rgba(6, 8, 10, 0.92) 0%, rgba(6, 8, 10, 0.02) 45%);
  content: "";
}

.hero-home::after {
  position: absolute;
  z-index: -1;
  top: -38%;
  left: -15%;
  width: 75%;
  height: 82%;
  transform: rotate(-8deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(239, 202, 112, 0.2), rgba(216, 173, 74, 0.05) 42%, transparent 70%);
  filter: blur(26px);
  content: "";
  animation: aurora 9s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aurora {
  from { transform: translate3d(-2%, 0, 0) rotate(-8deg) scale(0.96); opacity: 0.62; }
  to { transform: translate3d(8%, 9%, 0) rotate(-4deg) scale(1.08); opacity: 1; }
}

.hero-content {
  padding: calc(var(--header-height) + 48px) 0 34px;
}

.hero-copy {
  width: min(690px, 66%);
}

.hero-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  text-wrap: balance;
}

.hero-copy > p {
  max-width: 610px;
  margin-bottom: 32px;
  color: #d0d5db;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof-band {
  border-bottom: 1px solid var(--line);
  background: #0c0f12;
}

.hero-proof-band .hero-proof {
  margin-top: 0;
  border-top: 0;
}

.proof-item {
  min-height: 88px;
  padding: 20px 26px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-item + .proof-item {
  padding-left: 26px;
}

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

.proof-item strong {
  display: block;
  margin-bottom: 3px;
  color: white;
  font-size: 0.92rem;
}

.proof-item span {
  color: #aeb6bf;
  font-size: 0.78rem;
}

.scroll-note {
  position: absolute;
  right: 94px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-note::before {
  width: 1px;
  height: 54px;
  background: linear-gradient(var(--gold), transparent);
  content: "";
}

/* Narrative and services */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 92px;
  align-items: start;
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.intro-copy > p:first-child {
  color: #262c32;
  font-size: 1.22rem;
}

.intro-copy > p {
  max-width: 650px;
  color: var(--muted-dark);
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 50px 0 0;
  padding: 0;
  counter-reset: journey;
  list-style: none;
}

.journey-line li {
  position: relative;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 12, 14, 0.2);
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.journey-line li::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-dark);
  content: "";
}

.journey-line strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.88rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 6;
  min-height: 280px;
}

.service-card::after {
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(216, 173, 74, 0.14);
  border-radius: 50%;
  content: "";
  transition: transform 400ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 173, 74, 0.35);
  background: linear-gradient(150deg, rgba(216, 173, 74, 0.09), rgba(255, 255, 255, 0.018));
}

.service-card:hover::after {
  transform: scale(1.14);
  border-color: rgba(216, 173, 74, 0.25);
}

.service-number {
  display: block;
  margin-bottom: 76px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.service-card h3 {
  max-width: 290px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.service-card p {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Fleet */
.fleet-preview,
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 173, 74, 0.32);
  box-shadow: var(--shadow);
}

.vehicle-media {
  position: relative;
  aspect-ratio: 4 / 3.25;
  overflow: hidden;
  background: #0b0f13;
}

.vehicle-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, opacity 140ms ease;
}

.vehicle-card:hover .vehicle-main-image {
  transform: scale(1.025);
}

.vehicle-main-image.is-changing {
  opacity: 0.35;
}

.vehicle-category {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(10, 12, 14, 0.18);
  border-radius: 999px;
  background: rgba(239, 202, 112, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.vehicle-category span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.7;
}

.vehicle-thumbs {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  background: rgba(5, 7, 9, 0.78);
  backdrop-filter: blur(12px);
}

.vehicle-thumb {
  width: 43px;
  height: 34px;
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  opacity: 0.72;
  transition: opacity 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.vehicle-thumb:hover,
.vehicle-thumb.is-active {
  transform: translateY(-1px);
  border-color: var(--gold-light);
  opacity: 1;
}

.vehicle-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.vehicle-use {
  margin-bottom: 9px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vehicle-body h2 {
  margin-bottom: 17px;
  font-size: 1.8rem;
}

.vehicle-body > p:not(.vehicle-use) {
  min-height: 74px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

.vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 18px;
  color: #d7dce1;
  font-size: 0.78rem;
  font-weight: 600;
}

.vehicle-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vehicle-specs svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 68px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.vehicle-body .text-link {
  margin-top: auto;
}

.vehicle-features li {
  align-self: flex-start;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: #c0c7ce;
  font-size: 0.68rem;
  line-height: 1.2;
}

.fleet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.fleet-footer p {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

/* Principles and CTA */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(10, 12, 14, 0.18);
  border-bottom: 1px solid rgba(10, 12, 14, 0.18);
}

.principle {
  min-height: 230px;
  padding: 36px 34px 34px 0;
  border-right: 1px solid rgba(10, 12, 14, 0.18);
}

.principle + .principle {
  padding-left: 34px;
}

.principle:last-child {
  border-right: 0;
}

.principle-index {
  display: block;
  margin-bottom: 48px;
  color: var(--gold-dark);
  font-family: var(--serif);
}

.principle h3 {
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.principle p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.86rem;
}

.quote-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(216, 173, 74, 0.12), transparent 42%),
    #0e1216;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  gap: 70px;
  align-items: end;
}

.quote-grid blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
  line-height: 1.12;
}

.quote-meta {
  padding-bottom: 10px;
}

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

.final-cta {
  background: var(--gold);
  color: var(--ink);
}

.final-cta .container {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 50px;
  align-items: center;
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.final-cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(10, 12, 14, 0.7);
}

.final-cta .btn {
  background: var(--ink);
  color: white;
  box-shadow: 0 16px 40px rgba(10, 12, 14, 0.2);
}

/* Inner page hero */
.page-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  padding: calc(var(--header-height) + 105px) 0 82px;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(216, 173, 74, 0.15), transparent 36%),
    radial-gradient(ellipse at 8% 80%, rgba(142, 168, 184, 0.08), transparent 35%),
    var(--ink-soft);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: 16%;
  right: -6%;
  width: min(43vw, 580px);
  height: min(43vw, 580px);
  border: 1px solid rgba(216, 173, 74, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(216, 173, 74, 0.02), 0 0 0 150px rgba(255, 255, 255, 0.012);
  content: "";
}

.page-hero-inner {
  display: grid;
  min-height: 415px;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.55fr);
  gap: 70px;
  align-items: end;
}

.page-hero-copy h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7vw, 7.3rem);
}

.page-hero-copy > p {
  max-width: 670px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero-aside {
  padding: 24px 0 5px 28px;
  border-left: 1px solid var(--line-strong);
}

.page-hero-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
}

.page-hero-aside p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Service page */
.service-list {
  border-top: 1px solid rgba(10, 12, 14, 0.18);
}

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(210px, 0.65fr) minmax(0, 1fr);
  gap: 40px;
  padding: 50px 0;
  border-bottom: 1px solid rgba(10, 12, 14, 0.18);
}

.service-row-number {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.service-row h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.3rem);
}

.service-row-content > p {
  margin-bottom: 22px;
  color: var(--muted-dark);
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: #30363c;
  font-size: 0.8rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-dark);
  content: "";
}

.service-note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-note {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.025);
}

.service-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}

.service-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* About */
.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.08fr);
  gap: 96px;
}

.story-sticky {
  position: sticky;
  top: 110px;
  align-self: start;
}

.story-sticky h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.story-sticky p {
  color: var(--muted-dark);
}

.story-chapter {
  padding: 0 0 54px 42px;
  border-left: 1px solid rgba(10, 12, 14, 0.18);
}

.story-chapter:last-child {
  padding-bottom: 0;
}

.story-chapter span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-chapter h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
}

.story-chapter p {
  color: var(--muted-dark);
}

.coverage-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 80px;
  align-items: center;
}

.coverage-band h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
}

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

.coverage-map {
  position: relative;
  display: grid;
  aspect-ratio: 1.25;
  place-items: center;
}

.coverage-map::before,
.coverage-map::after {
  position: absolute;
  border: 1px solid rgba(216, 173, 74, 0.25);
  border-radius: 50%;
  content: "";
}

.coverage-map::before { inset: 12%; }
.coverage-map::after { inset: 27%; border-color: rgba(216, 173, 74, 0.42); }

.coverage-point {
  position: relative;
  z-index: 1;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 0 0 18px rgba(216, 173, 74, 0.08);
  font-family: var(--serif);
  font-weight: 600;
}

/* Forms */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.form-surface {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.form-section + .form-section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.form-section-heading {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 24px;
}

.form-section-heading span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(216, 173, 74, 0.4);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.form-section-heading h2,
.form-section-heading h3 {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.form-section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #d8dde2;
  font-size: 0.75rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  outline: none;
  background: #0e1216;
  color: var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6f7882;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #11161b;
  box-shadow: 0 0 0 3px rgba(216, 173, 74, 0.1);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.form-help {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-status {
  margin-top: 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--green);
  background: rgba(31, 171, 100, 0.08);
  color: #c8f0d8;
  font-size: 0.8rem;
}

.booking-aside,
.contact-aside {
  position: sticky;
  top: 105px;
}

.aside-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(216, 173, 74, 0.08), rgba(255, 255, 255, 0.02));
}

.aside-panel + .aside-panel {
  margin-top: 14px;
}

.aside-panel h2,
.aside-panel h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.aside-panel p,
.aside-panel li {
  color: var(--muted);
  font-size: 0.82rem;
}

.aside-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.aside-list li {
  position: relative;
  padding: 11px 0 11px 20px;
  border-top: 1px solid var(--line);
}

.aside-list li::before {
  position: absolute;
  top: 19px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.contact-options {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-link {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-link svg {
  margin-top: 2px;
  color: var(--gold);
}

.contact-link span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-link strong {
  display: block;
  margin-top: 2px;
  color: var(--paper);
  font-size: 0.88rem;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin-inline: auto;
}

.faq-list details {
  border-bottom: 1px solid rgba(10, 12, 14, 0.18);
}

.faq-list summary {
  position: relative;
  padding: 26px 50px 26px 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 27px;
  right: 4px;
  content: "+";
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  max-width: 740px;
  padding: 0 0 26px;
  color: var(--muted-dark);
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: #07090b;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) repeat(2, minmax(150px, 0.55fr));
  gap: 70px;
  padding-bottom: 55px;
}

.footer-brand .brand {
  margin-bottom: 22px;
}

.footer-brand > p {
  max-width: 410px;
  color: var(--muted);
  font-size: 0.83rem;
}

.footer-column h2 {
  margin-bottom: 17px;
  color: white;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-column li + li { margin-top: 9px; }
.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 0.8rem;
  transition: color 160ms ease;
}

.footer-column a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: #79818a;
  font-size: 0.7rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: var(--green);
  color: white;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3), 0 0 0 7px rgba(31, 171, 100, 0.09);
  transition: transform 180ms ease, background 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  background: var(--green-dark);
}

.floating-whatsapp svg { width: 24px; height: 24px; }

/* Motion */
body {
  animation: page-in 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1), opacity 560ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes page-in {
  from { opacity: 0; }
}

/* Responsive */
@media (max-width: 1080px) {
  :root { --header-height: 74px; }
  .header-actions .btn-secondary { display: none; }
  .nav-links { margin-right: 8px; }
  .nav-links a { padding-inline: 8px; }
  .hero-copy { width: min(670px, 72%); }
  .fleet-preview,
  .fleet-grid { gap: 12px; }
  .vehicle-body { padding: 22px; }
  .vehicle-body h2 { font-size: 1.55rem; }
  .service-card { padding: 28px; }
}

@media (max-width: 860px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 88px 0; }
  .section-heading,
  .intro-grid,
  .page-hero-inner,
  .quote-grid,
  .coverage-band,
  .story-grid,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section-heading { margin-bottom: 42px; }
  .section-heading p { max-width: 680px; }
  .nav-toggle { display: grid; justify-self: end; }
  .header-inner { grid-template-columns: auto 1fr; }
  .nav-panel {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    display: flex;
    width: min(88vw, 420px);
    height: 100dvh;
    padding: 104px 28px 30px;
    transform: translateX(105%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-left: 1px solid var(--line);
    background: rgba(8, 10, 12, 0.98);
    box-shadow: -20px 0 55px rgba(0, 0, 0, 0.35);
    transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav-panel.is-open { transform: translateX(0); }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    margin: 0;
  }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 500;
  }
  .nav-links a::after { display: none; }
  .header-actions { margin-top: 22px; flex-direction: column; align-items: stretch; }
  .header-actions .btn-secondary { display: inline-flex; }
  body.menu-open { overflow: hidden; }
  .hero-home { min-height: 92svh; background-position: 62% center; }
  .hero-home::before {
    background:
      linear-gradient(90deg, rgba(6, 8, 10, 0.94), rgba(6, 8, 10, 0.68) 62%, rgba(6, 8, 10, 0.3)),
      linear-gradient(0deg, rgba(6, 8, 10, 0.96), rgba(6, 8, 10, 0.1) 55%);
  }
  .hero-copy { width: min(650px, 87%); }
  .hero-proof { max-width: 650px; margin-top: 52px; }
  .scroll-note { display: none; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 6; min-height: 285px; }
  .service-card:last-child { grid-column: 1 / -1; }
  .fleet-preview,
  .fleet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vehicle-card:last-child { grid-column: 1 / -1; width: calc(50% - 6px); }
  .final-cta .container { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { min-height: 560px; }
  .page-hero-inner { min-height: 360px; }
  .page-hero-aside { max-width: 470px; }
  .service-row { grid-template-columns: 60px minmax(200px, 0.7fr) minmax(0, 1fr); gap: 22px; }
  .story-sticky,
  .booking-aside,
  .contact-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 72px 0; }
  .brand-copy strong { font-size: 1.1rem; }
  .brand-mark { width: 36px; height: 36px; }
  .site-header,
  .site-header.is-scrolled,
  .site-header.header-solid { height: 68px; }
  .hero-home {
    min-height: 92svh;
    background-position: 68% center;
  }
  .hero-content { padding: 128px 0 24px; }
  .hero-copy { width: 100%; }
  .hero-copy h1 { max-width: 560px; font-size: clamp(3.15rem, 15vw, 5rem); }
  .hero-copy > p { max-width: 490px; }
  .button-row .btn { flex: 1 1 180px; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 42px; }
  .proof-item,
  .proof-item + .proof-item {
    min-height: auto;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .proof-item:last-child { border-bottom: 0; }
  .intro-grid { gap: 30px; }
  .journey-line { grid-template-columns: 1fr; gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:last-child { grid-column: 1; min-height: 260px; }
  .service-number { margin-bottom: 50px; }
  .fleet-preview,
  .fleet-grid { grid-template-columns: 1fr; }
  .vehicle-card:last-child { grid-column: auto; width: auto; }
  .vehicle-media { aspect-ratio: 4 / 3.35; }
  .vehicle-body > p:not(.vehicle-use),
  .vehicle-features { min-height: 0; }
  .fleet-footer { align-items: stretch; flex-direction: column; }
  .principles { grid-template-columns: 1fr; }
  .principle,
  .principle + .principle {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 12, 14, 0.18);
  }
  .principle:last-child { border-bottom: 0; }
  .principle-index { margin-bottom: 28px; }
  .page-hero { min-height: 540px; padding-top: 120px; }
  .page-hero-copy h1 { font-size: clamp(3.1rem, 15vw, 5.2rem); overflow-wrap: anywhere; }
  .page-hero-aside { padding: 20px 0 0; border-top: 1px solid var(--line-strong); border-left: 0; }
  .service-row { grid-template-columns: 1fr; gap: 14px; padding: 38px 0; }
  .service-row-number { margin-bottom: 3px; }
  .service-note-grid { grid-template-columns: 1fr; }
  .story-chapter { padding-left: 24px; }
  .form-surface { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .floating-whatsapp { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { transform: none; opacity: 1; }
}

@media print {
  .site-header,
  .floating-whatsapp,
  .nav-toggle,
  .final-cta { display: none !important; }
  body { background: white; color: black; }
  .page-hero { min-height: auto; padding: 30px 0; background: white; color: black; }
}
