:root {
  --ink: #121417;
  --ink-2: #23211e;
  --paper: #f7f3ea;
  --paper-2: #eee7da;
  --nav-bg: #FCFAF6;
  --white: #ffffff;
  --gold: #b8995b;
  --gold-2: #d5bf85;
  --muted: #6d675e;
  --line: rgba(18, 20, 23, 0.12);
  --shadow: 0 28px 80px rgba(18, 20, 23, 0.14);
  --soft-shadow: 0 18px 60px rgba(18, 20, 23, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Optima", "Avenir Next", "Gill Sans", "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  font-weight: 400;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 88px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(18, 20, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 164px;
  height: auto;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 24px);
  font-family: "Optima", "Avenir Next", "Gill Sans", "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.main-nav a {
  color: rgba(18, 20, 23, 0.74);
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Optima", "Avenir Next", "Gill Sans", "Segoe UI", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(18, 20, 23, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.btn-primary {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(18, 20, 23, 0.18);
}

.header-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(18, 20, 23, 0.14);
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--gold-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(92px, 11vw, 160px) clamp(20px, 5vw, 72px) clamp(62px, 8vw, 98px);
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 11, 12, 0.78) 0%, rgba(10, 11, 12, 0.46) 46%, rgba(10, 11, 12, 0.18) 100%),
    linear-gradient(0deg, rgba(10, 11, 12, 0.74) 0%, rgba(10, 11, 12, 0.06) 48%);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy-block {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: none;
  font-size: clamp(3.05rem, 6.2vw, 5.9rem);
  line-height: 0.96;
}

h1 span,
h2 span {
  display: block;
}

h1 span {
  white-space: nowrap;
}

.section-heading h2 span,
.split-section h2 span,
.trust-section h2 span,
.final-inquiry h2 span {
  white-space: nowrap;
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.35rem);
  line-height: 1.03;
}

h3 {
  font-size: 1.55rem;
  line-height: 1.15;
}

.hero-copy-block p:not(.eyebrow),
.lead-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
  font-family: "Optima", "Avenir Next", "Gill Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
}

.hero-copy-block p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(22px, 4vw, 48px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(18, 20, 23, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.intro-strip {
  color: var(--ink);
  background: linear-gradient(90deg, #dac487, #b8995b 48%, #efe4bf);
  padding: clamp(30px, 4vw, 48px) clamp(20px, 5vw, 72px);
}

.intro-strip p {
  max-width: none;
  margin: 0 auto;
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.36;
  letter-spacing: 0.005em;
  text-align: center;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(78px, 9vw, 122px) 24px;
}

.section-heading {
  position: relative;
}

.section-heading::before {
  content: "";
  display: block;
  width: 74px;
  height: 1px;
  margin-bottom: 26px;
  background: linear-gradient(90deg, var(--gold), rgba(184, 153, 91, 0));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}

.detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.detail-card {
  position: relative;
  min-height: 360px;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 238, 226, 0.72));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.detail-card::after,
.info-card::after,
.fleet-grid article::after {
  content: "";
  position: absolute;
  right: -54px;
  top: -54px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(184, 153, 91, 0.28);
  border-radius: 999px;
}

.detail-card,
.info-card,
.fleet-grid article {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.detail-card:hover,
.info-card:hover,
.fleet-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 153, 91, 0.38);
  box-shadow: 0 28px 76px rgba(18, 20, 23, 0.14);
}

.detail-card ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.detail-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
}

.image-band {
  max-width: min(1440px, calc(100% - 48px));
  margin: 0 auto clamp(78px, 9vw, 122px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.image-band img {
  width: 100%;
  height: clamp(380px, 56vw, 720px);
  object-fit: cover;
}

.process-section {
  position: relative;
  padding-top: 0;
  isolation: isolate;
}

.process-section::before {
  content: "";
  position: absolute;
  right: clamp(20px, 8vw, 120px);
  top: 9%;
  z-index: -1;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  border: 1px solid rgba(184, 153, 91, 0.18);
  border-radius: 999px;
  opacity: 0.9;
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
}

.process-list::before {
  display: none;
}

.process-list article {
  position: relative;
  min-height: 214px;
  display: grid;
  grid-template-columns: clamp(118px, 12vw, 154px) 1fr;
  gap: clamp(20px, 3vw, 38px);
  align-items: center;
  padding: clamp(28px, 3.4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 243, 234, 0.82)),
    radial-gradient(circle at 100% 0%, rgba(213, 191, 133, 0.18), transparent 36%);
  border: 1px solid rgba(18, 20, 23, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(18, 20, 23, 0.08);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process-list article::before {
  content: "";
  position: absolute;
  left: calc(clamp(28px, 3.4vw, 42px) + clamp(118px, 12vw, 154px) + clamp(9px, 1.1vw, 14px));
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, rgba(184, 153, 91, 0), rgba(184, 153, 91, 0.32), rgba(184, 153, 91, 0));
}

.process-list article::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 92px;
  height: 92px;
  border-left: 1px solid rgba(184, 153, 91, 0.17);
  border-bottom: 1px solid rgba(184, 153, 91, 0.17);
  border-bottom-left-radius: 92px;
}

.process-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 153, 91, 0.34);
  box-shadow: 0 28px 72px rgba(18, 20, 23, 0.12);
}

.process-list span {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 5vw, 5.4rem);
  line-height: 1;
}

.process-list h3 {
  max-width: none;
  margin: 0 0 16px;
  font-size: clamp(1.18rem, 1.6vw, 1.45rem);
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.68;
}

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

.card-grid.wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 238, 226, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.info-card p {
  margin: 18px 0 28px;
  color: var(--muted);
  line-height: 1.72;
}

.info-card a {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-top: auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: var(--ink);
  background: rgba(184, 153, 91, 0.14);
  border: 1px solid rgba(184, 153, 91, 0.44);
  border-radius: 999px;
  font-family: "Optima", "Avenir Next", "Gill Sans", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  font-size: 0.82rem;
  box-shadow: 0 12px 28px rgba(18, 20, 23, 0.06);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.info-card a:hover,
.info-card a:focus-visible {
  transform: translateY(-1px);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 18px 38px rgba(18, 20, 23, 0.12);
}

.section-cta {
  margin-top: clamp(26px, 3vw, 40px);
}

.section-cta.center {
  display: flex;
  justify-content: center;
}

.section-cta.wide {
  grid-column: 1 / -1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

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

.image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(244, 238, 226, 0.7));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(18, 20, 23, 0.06);
}

.feature-list span {
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--gold);
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.editorial-section {
  position: relative;
  max-width: min(1440px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
  margin: 0 auto clamp(78px, 9vw, 122px);
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(184, 153, 91, 0.16), transparent 30%),
    linear-gradient(135deg, #08090a, #15110c 58%, #08090a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 34px 100px rgba(18, 20, 23, 0.24);
  isolation: isolate;
}

.editorial-section::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -140px;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(184, 153, 91, 0.18);
  border-radius: 999px;
}

.editorial-media {
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #050607;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
}

.editorial-copy {
  align-self: center;
  padding-block: clamp(10px, 2vw, 24px);
}

.editorial-copy h2 {
  max-width: 720px;
  font-size: clamp(2.25rem, 4.3vw, 4.45rem);
}

.editorial-copy h2 span {
  display: block;
  white-space: nowrap;
}

.editorial-copy > p:not(.eyebrow):not(.editorial-signature) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.75;
}

.editorial-grid {
  display: grid;
  gap: 1px;
  margin-top: clamp(32px, 4vw, 52px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.editorial-grid article {
  display: grid;
  grid-template-columns: 52px 0.58fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.editorial-grid article:last-child {
  border-bottom: 0;
}

.editorial-grid span {
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.editorial-grid h3 {
  color: var(--white);
  font-size: 1.22rem;
}

.editorial-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.68;
}

.editorial-signature {
  margin: 30px 0 0;
  color: var(--gold-2);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-actions {
  margin-top: 26px;
}

.section-dark,
.trust-section {
  color: var(--white);
  background: #08090a;
}

.trust-section {
  position: relative;
  max-width: none;
  overflow: hidden;
  padding: clamp(84px, 9vw, 132px) clamp(24px, 5vw, 72px);
  scroll-margin-top: 92px;
  isolation: isolate;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/moove-current/img-2988.jpg") center / cover no-repeat;
  opacity: 0.16;
  transform: scale(1.02);
}

.trust-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 20%, rgba(184, 153, 91, 0.16), transparent 30%),
    linear-gradient(90deg, rgba(8, 9, 10, 0.96), rgba(8, 9, 10, 0.9) 55%, rgba(8, 9, 10, 0.94));
}

.trust-section .section-heading,
.reference-row,
.trust-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.62fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: end;
  margin-bottom: 46px;
}

.trust-section .section-heading h2 {
  max-width: 650px;
  font-size: clamp(2.35rem, 3.4vw, 3.15rem);
  line-height: 1.08;
}

.trust-section .section-heading p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
}

.trust-stats {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-stats article {
  padding: 24px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
}

.trust-stats strong {
  display: block;
  color: var(--gold-2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.trust-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.reference-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reference-row article {
  min-height: 148px;
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(252, 250, 246, 0.98), rgba(238, 231, 218, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.reference-row article.logo-dark {
  background:
    linear-gradient(145deg, rgba(252, 250, 246, 0.98), rgba(238, 231, 218, 0.92));
}

.reference-row img {
  width: min(220px, 78%);
  height: 96px;
  object-fit: contain;
}

.reference-row .logo-dark img {
  width: min(230px, 82%);
  height: 96px;
  padding: 18px 24px;
  background: #090a0b;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.trust-actions {
  max-width: var(--max);
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
}

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

.fleet-grid article {
  position: relative;
  min-height: 330px;
  padding: 32px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(244, 238, 226, 0.72));
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.fleet-grid span {
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--gold);
  font-weight: 850;
  letter-spacing: 0.12em;
}

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

.fleet-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.fleet-card {
  position: relative;
  display: grid;
  grid-template-rows: 252px 1fr;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(252, 250, 246, 0.76);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 153, 91, 0.4);
  box-shadow: 0 30px 82px rgba(18, 20, 23, 0.16);
}

.fleet-card::after {
  content: "";
  position: absolute;
  right: -76px;
  top: 174px;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(184, 153, 91, 0.22);
  border-radius: 999px;
  pointer-events: none;
}

.fleet-card-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 24%, rgba(213, 191, 133, 0.18), transparent 34%),
    linear-gradient(145deg, #08090a, #1f1c17);
  border-color: rgba(255, 255, 255, 0.12);
}

.fleet-card-light {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 235, 222, 0.88)),
    radial-gradient(circle at 92% 22%, rgba(184, 153, 91, 0.14), transparent 36%);
}

.fleet-card-lounge {
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(18, 20, 23, 0.08), rgba(18, 20, 23, 0)),
    linear-gradient(145deg, #181818, #2a241b 58%, #0a0b0c);
  border-color: rgba(255, 255, 255, 0.12);
}

.fleet-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.fleet-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.52), rgba(8, 9, 10, 0.02) 62%);
}

.fleet-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.fleet-card:hover .fleet-media img {
  transform: scale(1.035);
}

.fleet-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
}

.fleet-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(184, 153, 91, 0.28);
}

.fleet-topline span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1;
}

.fleet-topline p {
  margin: 0;
  color: inherit;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fleet-card h2 {
  font-size: clamp(1.55rem, 2.35vw, 2.15rem);
  line-height: 1.08;
}

.fleet-copy > p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.fleet-card-dark .fleet-copy > p,
.fleet-card-lounge .fleet-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.fleet-details {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.fleet-details div {
  padding: 17px 0 0;
  border-top: 1px solid rgba(18, 20, 23, 0.1);
}

.fleet-card-dark .fleet-details div,
.fleet-card-lounge .fleet-details div {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.fleet-details strong,
.fleet-details span {
  display: block;
}

.fleet-details strong {
  color: var(--gold);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-details span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.fleet-card-dark .fleet-details span,
.fleet-card-lounge .fleet-details span {
  color: rgba(255, 255, 255, 0.68);
}

.contact-teaser {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: clamp(78px, 9vw, 120px) 24px;
  text-align: center;
  background: var(--paper-2);
}

.contact-teaser h2 {
  max-width: 760px;
}

.final-inquiry {
  max-width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  margin: clamp(70px, 9vw, 120px) auto;
  padding: clamp(32px, 5vw, 62px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(18, 20, 23, 0.98), rgba(31, 29, 25, 0.94)),
    url("assets/moove-current/img-3038.jpg") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 34px 100px rgba(18, 20, 23, 0.24);
  scroll-margin-top: 108px;
}

.final-inquiry-copy {
  max-width: 860px;
}

.final-inquiry-copy h2 {
  max-width: 860px;
}

.final-inquiry-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.contact-section {
  max-width: 940px;
}

.request-panel {
  padding: clamp(24px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.final-inquiry .request-panel {
  max-width: none;
  width: 100%;
}

.final-inquiry .request-form {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.final-inquiry .request-form label:nth-child(9) {
  grid-column: 1 / -1;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 20, 23, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: none;
  padding: 15px 16px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(35, 33, 30, 0.42);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
}

.request-form .btn {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 34px;
  padding: 58px clamp(24px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: #0f1113;
}

.site-footer img {
  width: 174px;
  height: auto;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font: 750 0.78rem/1.2 "Optima", "Avenir Next", "Gill Sans", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.site-footer p {
  max-width: 460px;
  margin: 18px 0 0;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    width: auto;
    justify-self: stretch;
    align-items: stretch;
    display: grid;
    gap: 0;
    padding: 14px;
    background: var(--nav-bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
  }

  .split-section,
  .editorial-section,
  .detail-intro,
  .trust-inner,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .editorial-media {
    min-height: 420px;
  }

  .final-inquiry .request-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 760px;
  }

  .card-grid,
  .card-grid.wide,
  .fleet-grid,
  .fleet-showcase,
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-card-lounge {
    grid-column: 1 / -1;
  }

  .fleet-card {
    min-height: 620px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 74px;
    padding: 12px 16px;
  }

  .brand img {
    width: 138px;
  }

  .hero {
    min-height: 720px;
    padding: 64px 18px 118px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(10, 11, 12, 0.84) 0%, rgba(10, 11, 12, 0.58) 100%),
      linear-gradient(0deg, rgba(10, 11, 12, 0.82) 0%, rgba(10, 11, 12, 0.12) 56%);
  }

  h1 {
    font-size: clamp(2.15rem, 9.5vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.7rem, 7.6vw, 2.55rem);
  }

  .section-heading h2 span,
  .split-section h2 span,
  .trust-section h2 span,
  .final-inquiry h2 span {
    white-space: normal;
  }

  .intro-strip + .section .section-heading h2 span {
    white-space: nowrap;
  }

  .intro-strip + .section .section-heading h2 {
    font-size: 1.55rem;
  }

  .intro-strip p {
    max-width: 330px;
    font-size: 1.02rem;
    white-space: normal;
  }

  .hero-card {
    left: 18px;
    right: 18px;
    bottom: 20px;
    display: grid;
    border-radius: var(--radius);
  }

  .section,
  .trust-section,
  .contact-teaser {
    padding: 72px 18px;
  }

  .editorial-section {
    max-width: calc(100% - 36px);
    margin-bottom: 72px;
    padding: 22px;
  }

  .editorial-media {
    min-height: 320px;
  }

  .editorial-copy h2 span {
    white-space: normal;
  }

  .editorial-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .editorial-grid span {
    font-size: 1.25rem;
  }

  .final-inquiry {
    max-width: calc(100% - 36px);
    margin: 72px auto;
    padding: 28px 18px;
  }

  .card-grid,
  .card-grid.wide,
  .fleet-grid,
  .fleet-showcase,
  .detail-grid,
  .reference-row,
  .trust-stats,
  .request-form,
  .final-inquiry .request-form {
    grid-template-columns: 1fr;
  }

  .fleet-card-lounge {
    grid-column: auto;
  }

  .fleet-card {
    grid-template-rows: 230px auto;
    min-height: auto;
  }

  .fleet-copy {
    padding: 24px;
  }

  .reference-row article {
    min-height: 118px;
  }

  .detail-card {
    min-height: auto;
  }

  .process-section::before {
    display: none;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-list article {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .process-list article::before {
    display: none;
  }

  .process-list span {
    font-size: 2.6rem;
  }

  .process-list h3 {
    max-width: none;
  }

  .image-frame img {
    height: 320px;
  }

  .image-band {
    max-width: calc(100% - 36px);
  }

  .image-band img {
    height: 320px;
  }
}
