/* VIP Flex Van — shared site styles */
:root {
  --onyx: #0A0A0A;
  --onyx-soft: #151412;
  --uk-blue: #0033A0;
  --uk-blue-light: #3E7BE0;
  --cream: #F5F1E8;
  --espresso: #3A3226;
  --line: rgba(245, 241, 232, 0.14);
  --head: 'Cinzel', 'Copperplate Gothic Bold', 'Copperplate', Georgia, serif;
  --body: 'EB Garamond', Garamond, Georgia, serif;
  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--onyx);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

h1, h2, h3 { font-family: var(--head); font-weight: 400; line-height: 1.15; letter-spacing: 3px; text-transform: uppercase; }
h1 { font-size: clamp(30px, 5vw, 52px); }
h2 { font-size: clamp(22px, 3.2vw, 34px); }
h3 { font-size: 15px; letter-spacing: 4px; }
p { font-size: clamp(15px, 1.5vw, 18px); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.kicker {
  font-family: var(--head);
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--uk-blue-light);
  margin-bottom: 16px;
}
.center { text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--head);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border: 1px solid rgba(245,241,232,0.5);
  border-radius: 2px;
  transition: background .22s, border-color .22s, color .22s;
}
.btn:hover { background: var(--uk-blue); border-color: var(--uk-blue); color: #fff; }
.btn--solid { background: var(--uk-blue); border-color: var(--uk-blue); color: #fff; }
.btn--solid:hover { background: var(--uk-blue-light); border-color: var(--uk-blue-light); }
.btn--ghost { border-style: dashed; border-color: rgba(245,241,232,0.35); color: rgba(245,241,232,0.8); }
.btn--ghost:hover { background: rgba(245,241,232,0.07); border-color: rgba(245,241,232,0.6); color: var(--cream); }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 20px;
  max-width: var(--wrap); margin: 0 auto; padding: 12px 24px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.nav__brand svg { width: 40px; height: 40px; flex: none; }
.nav__brand svg circle:nth-of-type(2) { fill: var(--cream); }
.nav__brand span {
  font-family: var(--head); font-size: 15px; letter-spacing: 4px; text-transform: uppercase;
}
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a {
  font-family: var(--head); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; color: rgba(245,241,232,0.75); padding: 6px 0;
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--cream); border-color: var(--uk-blue-light); }
.nav__links a.btn { color: #fff; border: 1px solid var(--uk-blue); }
.nav__links a.btn:hover { border-color: var(--uk-blue-light); }
.nav__toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 2px;
  color: var(--cream); font-size: 20px; line-height: 1; padding: 6px 10px; cursor: pointer;
}
@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--onyx); border-bottom: 1px solid var(--line);
  }
  .nav__links:not(.open) { display: none; }
  .nav__links a { padding: 16px 24px; border-bottom: 1px solid var(--line); }
  .nav__links a.btn { margin: 14px 24px; text-align: center; }
}

/* ---------- split hero (home) ---------- */
.split { display: flex; width: 100%; min-height: calc(100vh - 65px); }
.split__half {
  position: relative; flex: 1 1 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 56px 34px; overflow: hidden; text-decoration: none; color: var(--cream);
}
.split__half + .split__half { border-left: 1px solid rgba(0,51,160,0.5); }
.split__media, .split__media video, .split__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.split__half::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.5) 45%, rgba(10,10,10,0.85) 100%);
  transition: background .3s;
}
@media (hover: hover) {
  .split:hover .split__half { filter: brightness(0.72); transition: filter .3s; }
  .split:hover .split__half:hover { filter: brightness(1); }
}
.split__half:hover::after {
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(0,51,160,0.28) 45%, rgba(10,10,10,0.8) 100%);
}
.split__half .kicker { color: var(--cream); opacity: .92; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.split__half h2 { margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,.6); }
.split__half p { max-width: 34ch; color: rgba(245,241,232,0.9); margin-bottom: 28px; text-shadow: 0 1px 10px rgba(0,0,0,.6); }
.split__half .btn { background: rgba(10,10,10,0.35); }
.split__half:hover .btn { background: var(--uk-blue); border-color: var(--uk-blue); color: #fff; }
.split__sub { margin-top: 16px; font-size: 13px; letter-spacing: 1px; color: rgba(245,241,232,0.65); text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 820px) {
  .split { flex-direction: column; min-height: 0; }
  .split__half { min-height: 68vh; padding: 64px 24px; }
  .split__half + .split__half { border-left: none; border-top: 1px solid rgba(0,51,160,0.5); }
}

/* ---------- generic page hero ---------- */
.hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: 56vh; padding: 0 0 48px; overflow: hidden;
}
.hero > img, .hero > video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.9) 100%);
}
.hero .wrap { width: 100%; }
.hero .kicker { color: var(--cream); opacity: .9; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.hero h1 { margin-bottom: 12px; text-shadow: 0 2px 24px rgba(0,0,0,.65); }
.hero p { max-width: 46ch; color: rgba(245,241,232,0.9); text-shadow: 0 1px 12px rgba(0,0,0,.6); }

/* ---------- sections ---------- */
.section { padding: 72px 0; }
.section--soft { background: var(--onyx-soft); }
.section h2 { margin-bottom: 10px; }
.section .lead { max-width: 60ch; color: rgba(245,241,232,0.8); margin-bottom: 8px; }
.rule { width: 60px; height: 1px; background: var(--uk-blue-light); margin: 18px 0 26px; }
.center .rule { margin-left: auto; margin-right: auto; }

.split-2 { display: grid; grid-template-columns: 1.1fr 1fr; gap: 46px; align-items: center; }
.split-2 img { border-radius: 3px; }
@media (max-width: 780px) { .split-2 { grid-template-columns: 1fr; gap: 26px; } }

.feature-list { list-style: none; margin-top: 18px; }
.feature-list li { padding: 10px 0 10px 26px; position: relative; border-bottom: 1px solid var(--line); color: rgba(245,241,232,0.85); }
.feature-list li::before { content: "—"; position: absolute; left: 0; color: var(--uk-blue-light); }

/* ---------- photo grid / gallery ---------- */
.grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.grid a, .grid figure { margin: 0; position: relative; overflow: hidden; border-radius: 3px; background: #000; }
.grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .5s ease; }
.grid a:hover img { transform: scale(1.05); }
.grid .tall img { aspect-ratio: 3 / 4; }
.grid .video-tile::after {
  content: "▶"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: #fff; background: rgba(10,10,10,0.25); pointer-events: none;
}

.showcase { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.showcase a { overflow: hidden; border-radius: 3px; }
.showcase img { aspect-ratio: 1/1; object-fit: cover; transition: transform .5s; }
.showcase a:hover img { transform: scale(1.06); }
@media (max-width: 760px) { .showcase { grid-template-columns: repeat(2, 1fr); } }

/* ---------- lightbox ---------- */
.lb {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 30px;
  background: rgba(6,6,6,0.94);
}
.lb.open { display: flex; }
.lb img, .lb video { max-width: 94vw; max-height: 90vh; border-radius: 3px; }
.lb__close { position: absolute; top: 20px; right: 26px; font-size: 34px; color: var(--cream); background: none; border: none; cursor: pointer; line-height: 1; }
.lb__nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 40px; color: rgba(245,241,232,0.8); background: none; border: none; cursor: pointer; padding: 10px 18px; }
.lb__nav:hover { color: var(--cream); }
.lb__prev { left: 8px; } .lb__next { right: 8px; }

/* ---------- CTA band ---------- */
.cta-band { padding: 70px 0; background: var(--onyx-soft); text-align: center; border-top: 1px solid var(--line); }
.cta-band h2 { margin-bottom: 16px; }
.cta-band .btn { margin: 8px; }

/* ---------- footer ---------- */
.site-footer {
  border-top: 1px solid var(--line); padding: 44px 0 34px; background: var(--onyx);
  font-size: 13px; letter-spacing: 1px; color: rgba(245,241,232,0.6);
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: space-between; }
.site-footer a { color: rgba(245,241,232,0.75); text-decoration: none; }
.site-footer a:hover { color: var(--cream); }
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; font-family: var(--head); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
