:root {
  --bg: #0e0e10;
  --bg-elevated: #17181c;
  --surface: rgba(23, 24, 28, 0.82);
  --surface-strong: rgba(14, 14, 16, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(198, 165, 107, 0.28);
  --text: #f3f3f1;
  --muted: #b8b8b2;
  --accent: #c6a56b;
  --accent-soft: rgba(198, 165, 107, 0.14);
  --accent-cool: #5ca9ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1240px, calc(100vw - 48px));
  --hero-safe-inline: clamp(1.25rem, 4vw, 4.5rem);
  --section-space: clamp(6rem, 10vw, 8.5rem);
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 18%, rgba(92, 169, 255, 0.08), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(198, 165, 107, 0.14), transparent 20%),
    linear-gradient(180deg, #0a0a0b 0%, #0f1013 42%, #0b0b0d 100%);
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
  cursor: pointer;
  background: none;
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1rem 1.05rem;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

select {
  appearance: none;
  padding-right: 3rem;
  background-color: rgba(12, 12, 14, 0.9);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(243, 243, 241, 0.72) 50%),
    linear-gradient(135deg, rgba(243, 243, 241, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 23px) calc(50% - 2px),
    calc(100% - 17px) calc(50% - 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

select option {
  color: #101114;
  background: #f3f3f1;
}

input:hover,
select:hover,
textarea:hover,
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(92, 169, 255, 0.55);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  box-shadow: 0 0 0 4px rgba(92, 169, 255, 0.12);
}

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

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.9;
}

::selection {
  color: #121212;
  background: var(--accent);
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 180px 180px;
  mask-image: radial-gradient(circle at center, black 56%, transparent 100%);
  z-index: 1;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--section-space) 0;
  scroll-margin-top: 100px;
  z-index: 2;
}

.section-kicker {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  margin: 0;
  max-width: 11ch;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.section-text {
  margin: 0;
  max-width: 33rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
}

.section-heading {
  margin-bottom: 3.5rem;
}

.section-heading-row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  padding: 1rem 0;
  transition: padding var(--transition), background-color var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  padding: 0.8rem 0;
  background: rgba(11, 11, 13, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  color: #111;
  background: linear-gradient(135deg, #e5c991 0%, #b8904a 100%);
  box-shadow: 0 18px 36px rgba(198, 165, 107, 0.22);
}

.brand-text {
  color: var(--text);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  gap: 1.55rem;
  align-items: center;
}

.site-nav a {
  position: relative;
  color: rgba(243, 243, 241, 0.86);
  font-size: 0.94rem;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.lang-btn {
  padding: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 243, 241, 0.58);
  transition: color var(--transition);
}

.lang-btn.is-active {
  color: var(--text);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.26);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  width: 1rem;
  height: 1px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  padding-top: 8.5rem;
  padding-bottom: 2rem;
  display: flex;
  align-items: stretch;
  overflow: clip;
}

.hero-media,
.hero-gradient,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.92) contrast(1.06) brightness(0.68);
  transform: scale(1.05);
}

.hero-gradient {
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.58) 42%, rgba(8, 8, 10, 0.26) 68%, rgba(8, 8, 10, 0.62) 100%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.22) 0%, rgba(8, 8, 10, 0.08) 38%, rgba(8, 8, 10, 0.92) 100%);
}

.hero-vignette {
  background:
    radial-gradient(circle at 70% 22%, rgba(198, 165, 107, 0.22), transparent 20%),
    radial-gradient(circle at 10% 20%, rgba(92, 169, 255, 0.09), transparent 22%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 2.5rem;
  align-items: center;
  min-height: calc(100svh - 180px);
  width: 100%;
  padding-inline: var(--hero-safe-inline);
}

.hero-copy {
  max-width: 620px;
  justify-self: start;
}

.hero-title {
  margin: 0;
  max-width: 7.2ch;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 8.7vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
  text-wrap: balance;
}

.hero-title span {
  color: var(--accent);
}

.hero-text {
  margin: 1.35rem 0 0;
  max-width: 34rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.85;
  color: rgba(243, 243, 241, 0.82);
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition), box-shadow var(--transition), color var(--transition);
}

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

.btn-primary {
  color: #0f1013;
  background: linear-gradient(135deg, #e4cc9c 0%, #c6a56b 58%, #a47d3f 100%);
  box-shadow: 0 18px 40px rgba(198, 165, 107, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 44px rgba(198, 165, 107, 0.28);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(92, 169, 255, 0.46);
  box-shadow: 0 0 0 4px rgba(92, 169, 255, 0.08);
}

.hero-panel {
  display: grid;
  gap: 1.3rem;
  align-self: center;
  justify-self: end;
  max-width: 390px;
  width: 100%;
}

.hero-panel-copy {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  background: rgba(17, 18, 22, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-panel-label,
.contact-panel-label,
.footer-title {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-panel-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
}

.hero-points {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
  color: var(--muted);
}

.hero-points li {
  position: relative;
  padding-left: 1.2rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(198, 165, 107, 0.1);
}

.hero-stack {
  position: relative;
  min-height: 320px;
}

.stack-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.stack-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-card-main {
  inset: 1.8rem 0 0 4.2rem;
  border-radius: 28px 28px 120px 28px;
}

.stack-card-secondary {
  inset: 0 7.5rem 9rem 0;
  border-radius: 28px 120px 28px 28px;
}

.fleet::before,
.gallery::before,
.inquiry::before {
  content: "";
  position: absolute;
  inset: 10% auto auto 50%;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(198, 165, 107, 0.09), transparent 62%);
  transform: translateX(-50%);
  pointer-events: none;
}

.fleet,
.gallery,
.inquiry {
  overflow: clip;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.fleet-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.fleet-card-main {
  grid-column: span 6;
  min-height: 560px;
}

.fleet-card-vertical {
  grid-column: span 4;
  min-height: 440px;
}

.fleet-card-wide {
  grid-column: span 6;
  min-height: 360px;
}

.fleet-card-compact {
  grid-column: span 4;
  min-height: 440px;
}

.fleet-card-media,
.fleet-card-inset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease, filter 700ms ease;
}

.fleet-card-media {
  filter: saturate(0.94) brightness(0.66);
}

.fleet-card-inset {
  inset: 1.25rem 1.25rem auto auto;
  width: 214px;
  height: 140px;
  object-position: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.34);
  z-index: 2;
}

.fleet-card-inset-landscape {
  width: 214px;
  height: 140px;
}

.fleet-card-inset-small {
  width: 180px;
  height: 118px;
}

.fleet-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 14, 16, 0.08) 0%, rgba(14, 14, 16, 0.16) 30%, rgba(14, 14, 16, 0.86) 100%),
    linear-gradient(90deg, rgba(14, 14, 16, 0.56) 0%, rgba(14, 14, 16, 0.16) 45%, rgba(14, 14, 16, 0.4) 100%);
}

.fleet-card-content {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 29rem;
  z-index: 1;
}

.fleet-card-wide .fleet-card-content {
  max-width: 24rem;
}

.fleet-card-compact .fleet-card-content {
  max-width: 20rem;
}

.fleet-card-tag,
.text-link,
.why-number,
.process-index {
  color: var(--accent);
}

.fleet-card-tag {
  margin: 0 0 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fleet-card h3,
.why-card h3,
.process-step h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  line-height: 1.15;
}

.fleet-card p:not(.fleet-card-tag),
.why-card p,
.process-step p,
.contact-panel-note,
.footer-brand p,
.footer-links a,
.footer-button,
.legal-dialog-body p {
  color: var(--muted);
}

.fleet-card p:not(.fleet-card-tag) {
  margin: 0.85rem 0 0;
  max-width: 28rem;
  line-height: 1.75;
}

.text-link {
  margin-top: 1.4rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color var(--transition), transform var(--transition);
}

.text-link::after {
  content: "";
  width: 2.3rem;
  height: 1px;
  background: currentColor;
  transition: width var(--transition), background-color var(--transition);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-cool);
  transform: translateX(4px);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  width: 3rem;
}

.fleet-card:hover,
.fleet-card:focus-within,
.gallery-trigger:hover,
.gallery-trigger:focus-visible {
  border-color: var(--line-strong);
}

.fleet-card:hover .fleet-card-media,
.fleet-card:focus-within .fleet-card-media,
.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1) brightness(0.72);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: start;
}

.why-copy {
  position: sticky;
  top: 120px;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.why-card,
.process-step,
.inquiry-form,
.contact-panel,
.legal-dialog {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(23, 24, 28, 0.92) 0%, rgba(14, 14, 16, 0.92) 100%);
  box-shadow: var(--shadow);
}

.why-card {
  padding: 1.55rem;
  min-height: 250px;
  border-radius: var(--radius-lg);
}

.why-number,
.process-index {
  display: block;
  margin-bottom: 2.4rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.1em;
}

.why-card p {
  margin: 0.9rem 0 0;
  line-height: 1.75;
}

.process {
  overflow: clip;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 3.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 165, 107, 0.36), transparent);
}

.process-step {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
}

.process-step p {
  margin: 0.85rem 0 0;
  line-height: 1.75;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 96px;
  gap: 1rem;
}

.gallery-item {
  grid-column: span 3;
  grid-row: span 3;
  margin: 0;
}

.gallery-item-featured {
  grid-column: span 6;
  grid-row: span 5;
}

.gallery-item-wide {
  grid-column: span 6;
  grid-row: span 3;
}

.gallery-item-tall {
  grid-column: span 3;
  grid-row: span 5;
}

.gallery-trigger {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.gallery-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) brightness(0.8);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-trigger::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.03) 0%, rgba(8, 8, 10, 0.14) 48%, rgba(8, 8, 10, 0.86) 100%);
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-panel {
  margin-top: 2rem;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
}

.contact-line {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
}

.contact-line:hover,
.contact-line:focus-visible {
  color: var(--accent);
}

.contact-panel-note {
  margin: 1rem 0 0;
  line-height: 1.75;
}

.inquiry-form {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
}

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

.field {
  display: grid;
  gap: 0.65rem;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(243, 243, 241, 0.94);
}

.field em {
  color: var(--accent);
  font-style: normal;
}

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

.form-footer {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-status {
  margin-top: 1rem;
  min-height: 1.7em;
}

.site-footer {
  position: relative;
  z-index: 2;
  padding: 2rem 0 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr 0.8fr;
  gap: 1rem;
}

.footer-brand p,
.footer-links a,
.footer-button {
  line-height: 1.8;
}

.footer-links {
  display: grid;
  align-content: start;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-button:hover,
.footer-button:focus-visible {
  color: var(--accent);
}

.footer-button {
  padding: 0;
  text-align: left;
}

.footer-lang {
  margin-top: 0.8rem;
  width: fit-content;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  margin: 0;
  color: rgba(243, 243, 241, 0.52);
}

.legal-dialog {
  width: min(700px, calc(100vw - 32px));
  padding: 0;
  color: var(--text);
  border-radius: 26px;
}

.legal-dialog::backdrop {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.legal-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-dialog-header h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.dialog-close,
.lightbox-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(243, 243, 241, 0.7);
  font-size: 1.4rem;
  line-height: 1;
}

.dialog-close:hover,
.dialog-close:focus-visible,
.lightbox-close:hover,
.lightbox-close:focus-visible {
  border-color: rgba(92, 169, 255, 0.46);
  color: var(--text);
}

.legal-dialog-body {
  padding: 1.4rem 1.5rem 1.7rem;
}

.legal-dialog-body p {
  margin: 0 0 1rem;
  line-height: 1.85;
}

.legal-dialog-body p:last-child {
  margin-bottom: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(4, 4, 6, 0.9);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-shell {
  width: min(1100px, 100%);
}

.lightbox-image {
  max-height: calc(100vh - 9rem);
  width: 100%;
  object-fit: contain;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.lightbox-caption {
  margin: 1rem auto 0;
  max-width: 50rem;
  color: var(--muted);
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
}

@media (max-width: 1100px) {
  .hero-grid,
  .why-grid,
  .inquiry-grid,
  .footer-grid,
  .section-heading-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .section-heading-row {
    align-items: flex-start;
    gap: 1.25rem;
  }

  .why-copy {
    position: static;
  }

  .gallery-item,
  .gallery-item-featured,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: span 6;
  }

  .header-inner {
    gap: 0.8rem;
  }

  .hero-grid {
    padding-inline: clamp(0.5rem, 2vw, 1.25rem);
  }
}

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

  .site-nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: grid;
    gap: 0.9rem;
    padding: 1rem 1.1rem 1.2rem;
    border-radius: 26px;
    background: rgba(11, 11, 13, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-copy {
    padding-bottom: 0;
  }

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

  .hero-stack {
    min-height: 250px;
  }

  .why-cards,
  .form-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 28px, 1240px);
  }

  .section {
    padding: 5.2rem 0;
  }

  .lang-switch {
    padding: 0.45rem 0.65rem;
  }

  .brand-text {
    display: none;
  }

  .hero-title {
    font-size: clamp(3.8rem, 20vw, 6rem);
  }

  .hero-text,
  .section-text {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .stack-card-main {
    inset: 1.4rem 0 0 2.6rem;
  }

  .stack-card-secondary {
    inset: 0 5.4rem 7rem 0;
  }

  .fleet-card-main,
  .fleet-card-wide,
  .fleet-card-compact,
  .fleet-card-vertical {
    grid-column: span 12;
  }

  .fleet-card,
  .fleet-card-main,
  .fleet-card-wide,
  .fleet-card-compact,
  .fleet-card-vertical {
    min-height: 440px;
  }

  .fleet-card-inset {
    width: 150px;
    height: 98px;
  }

  .fleet-card-inset-small {
    width: 140px;
    height: 92px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 130px;
  }

  .gallery-item,
  .gallery-item-featured,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: span 1;
  }

  .gallery-item-featured,
  .gallery-item-tall {
    grid-row: span 3;
  }

  .gallery-item,
  .gallery-item-wide {
    grid-row: span 2;
  }

  .inquiry-form {
    padding: 1.25rem;
  }

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

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

  .lightbox {
    padding: 1rem;
  }

  .lightbox-image {
    max-height: calc(100vh - 8rem);
  }
}

@media (max-width: 712px) {
  .fleet::before,
  .gallery::before,
  .inquiry::before {
    width: 24rem;
    height: 24rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.9rem;
  }

  .gallery-item,
  .gallery-item-featured,
  .gallery-item-wide,
  .gallery-item-tall {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-item .gallery-trigger {
    min-height: 300px;
    aspect-ratio: 4 / 4.6;
  }

  .gallery-item-featured .gallery-trigger,
  .gallery-item-tall .gallery-trigger {
    min-height: 400px;
    aspect-ratio: 4 / 5;
  }

  .gallery-item-wide .gallery-trigger {
    min-height: 255px;
    aspect-ratio: 16 / 10;
  }

  .gallery-caption {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    font-size: 0.82rem;
  }

  .fleet-card-main,
  .fleet-card-wide {
    min-height: 500px;
  }

  .fleet-card-main .fleet-card-inset,
  .fleet-card-wide .fleet-card-inset {
    top: 1rem;
    right: 1rem;
    bottom: auto;
    left: auto;
    width: 132px;
    height: 88px;
    z-index: 2;
  }

  .fleet-card-wide .fleet-card-inset-small {
    width: 128px;
    height: 84px;
  }

  .fleet-card-main .fleet-card-content,
  .fleet-card-wide .fleet-card-content {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    max-width: 28rem;
    z-index: 3;
  }
}

@media (max-width: 522px) {
  .hero-title {
    max-width: 6.1ch;
    font-size: clamp(3rem, 16vw, 4.45rem);
    line-height: 0.9;
  }

  .section-title {
    max-width: 8.8ch;
    font-size: clamp(2.45rem, 12vw, 3.35rem);
    line-height: 0.98;
  }
}

@media (max-width: 440px) {
  .gallery .container {
    width: min(calc(100vw - 36px), 1240px);
  }

  .gallery-grid {
    gap: 0.75rem;
  }

  .gallery-item,
  .gallery-trigger {
    min-width: 0;
  }

  .gallery-trigger {
    border-radius: 22px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
  }

  .gallery-item .gallery-trigger {
    min-height: 260px;
  }

  .gallery-item-featured .gallery-trigger,
  .gallery-item-tall .gallery-trigger {
    min-height: 340px;
  }

  .gallery-item-wide .gallery-trigger {
    min-height: 220px;
  }

  .gallery-caption {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }
}
