:root {
  --bg: #ffffff;
  --bg-tint: #f5f7fb;
  --card: #ffffff;
  --text: #142033;
  --muted: #5b6b82;
  --accent: #1f6fff;
  --accent-soft: #e8f0ff;
  --line: #e6ebf3;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(20, 32, 51, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 2rem)); }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 1rem;
}
.logo { font-weight: 800; color: var(--text); letter-spacing: 0.01em; text-decoration: none; }
.logo:hover { text-decoration: none; color: var(--accent); }
nav { display: flex; gap: 1rem; flex-wrap: wrap; }
nav a { color: var(--muted); font-size: 0.95rem; font-weight: 600; text-decoration: none; }
nav a:hover { color: var(--text); text-decoration: none; }

.hero { padding: 4.5rem 0 3.5rem; background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%); }
.hero-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.4fr 0.9fr; align-items: start;
}
.eyebrow {
  display: inline-block; margin: 0 0 0.75rem;
  color: var(--accent); font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 0.78rem;
}
h1 {
  margin: 0 0 1rem; font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12; letter-spacing: -0.03em;
}
.lede { margin: 0 0 1.5rem; color: var(--muted); font-size: 1.12rem; }
.hero-actions, .contact-box { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.hero-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.35rem 1.4rem; box-shadow: var(--shadow);
}
.hero-card h2 { margin: 0 0 0.75rem; font-size: 1.15rem; }
.hero-card ul { margin: 0; padding-left: 1.1rem; color: var(--muted); }
.hero-card li { margin: 0.35rem 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0.7rem 1.15rem; border-radius: 999px;
  font-weight: 700; border: 1px solid transparent; transition: 0.15s ease;
  text-decoration: none !important;
}
.btn.primary { background: var(--accent); color: #fff; }
.btn.primary:hover { filter: brightness(1.05); color: #fff; }
.btn.ghost { border-color: var(--line); color: var(--text); background: #fff; }
.btn.ghost:hover { border-color: #c9d4e6; color: var(--text); }

.section { padding: 3.75rem 0; }
.section.tint { background: var(--bg-tint); border-block: 1px solid var(--line); }
h2 { margin: 0 0 0.85rem; font-size: clamp(1.55rem, 3vw, 2rem); letter-spacing: -0.02em; }
h3 { margin: 0 0 0.45rem; font-size: 1.08rem; }
.section-intro { margin: 0 0 1.4rem; color: var(--muted); max-width: 70ch; }
.cards {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.2rem 1.25rem; box-shadow: var(--shadow);
}
.card p, .section p { color: var(--muted); margin: 0; }

.split {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.split > div {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
}

.director {
  display: grid; gap: 2rem; align-items: center;
  grid-template-columns: 280px 1fr;
}
.director-photo {
  width: 100%; max-width: 280px; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: 22px; border: 1px solid var(--line); box-shadow: var(--shadow);
  background: var(--accent-soft);
}
.name { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--text); }
.muted { color: var(--muted); margin-top: 0.9rem !important; }

.facts { margin: 1.25rem 0 0; padding: 0; list-style: none; }
.facts li {
  padding: 0.75rem 0; border-top: 1px solid var(--line); color: var(--muted);
}
.facts strong { color: var(--text); }

.site-footer {
  border-top: 1px solid var(--line); padding: 1.4rem 0 2rem; color: var(--muted); font-size: 0.92rem;
  background: #fff;
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-grid, .director { grid-template-columns: 1fr; }
  .director-photo { max-width: 320px; }
}
@media (max-width: 640px) {
  .hero { padding-top: 3rem; }
  nav { gap: 0.7rem; }
}

.header-right { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }
.lang-switch {
  display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff;
}
.lang-btn {
  border: 0; background: transparent; color: var(--muted); font-weight: 800;
  padding: 0.45rem 0.7rem; cursor: pointer; font-size: 0.85rem;
}
.lang-btn.active { background: var(--accent); color: #fff; }
.lang-btn:not(.active):hover { background: var(--bg-tint); color: var(--text); }


.fleet-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.fleet-card {
  margin: 0; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.fleet-card img {
  display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--bg-tint);
}
.fleet-card figcaption {
  padding: 0.75rem 0.95rem; color: var(--muted); font-size: 0.92rem; font-weight: 600;
}
