:root {
  --bg: #0A0A0A;
  --bg-2: #141413;
  --line: #262624;
  --line-2: #3B3A36;
  --text: #EDEAE2;
  --text-2: #ABA89F;
  --text-3: #757269;
  --ink: #0B0A08;
  --champagne: #D8C39A;
  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 1440px;
  --gutter: 48px;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; color: var(--text); }
html { background: var(--bg); }
/* Atmosphere layer — matches index.html: champagne light from top right,
   counter-glow, matte film grain, quiet vignette. Fixed behind content. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 48%, transparent 58%, rgba(4, 4, 4, 0.3) 100%),
    radial-gradient(1100px 720px at 82% -12%, rgba(216, 195, 154, 0.11), transparent 62%),
    radial-gradient(900px 640px at -8% 108%, rgba(216, 195, 154, 0.055), transparent 58%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.94 0 0 0 0 0.91 0 0 0 0 0.86 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E") repeat,
    linear-gradient(180deg, #121110 0%, var(--bg) 38%, #070707 100%);
}
body { font-family: var(--f-sans); font-size: 15.5px; line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.display { font-family: var(--f-display); font-weight: 500; line-height: 0.98; letter-spacing: 0; }
.display em { color: var(--champagne); font-style: italic; font-weight: 400; }
.h-hero { font-size: clamp(58px, 8.4vw, 138px); }
.h-1 { font-size: clamp(44px, 6.4vw, 96px); }
.h-2 { font-size: clamp(32px, 4.2vw, 62px); }
.lede { font-weight: 300; font-size: clamp(16px, 1.2vw, 19px); color: var(--text-2); max-width: 62ch; }
.mono { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; color: var(--text-3); text-transform: uppercase; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 16px 22px; border: 1px solid var(--line-2); font-size: 12px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; transition: 220ms ease; }
.btn-primary { background: #EDEAE2; background-image: none; color: var(--ink); border-color: #EDEAE2; box-shadow: none; }
.btn:hover { transform: translateY(-1px); border-color: var(--text); }
.btn-primary:hover { background: #F9F7EB; }
.ticker { display: none; }
.ticker-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; font-size: 10.5px; letter-spacing: 0.08em; color: var(--text-3); text-transform: uppercase; }
.ticker-mid { overflow: hidden; height: 38px; position: relative; }
.ticker-track { position: absolute; display: flex; gap: 54px; white-space: nowrap; line-height: 38px; animation: marquee 54s linear infinite; }
.ticker .sep { color: var(--line-2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.header { position: sticky; top: 0; z-index: 55; background: rgba(10, 10, 10, 0.74); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 78px; gap: 32px; }
.brand { display: inline-flex; align-items: center; justify-self: start; min-width: 0; }
.brand-logo { display: block; width: min(276px, 44vw); height: auto; }
.nav { display: flex; gap: 36px; grid-column: 2; justify-self: center; }
.nav a { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--text-2); padding: 8px 0; }
.nav a:hover, .nav a.active { color: var(--text); }
.nav .chapter { font-size: 9px; color: var(--text-3); margin-right: 6px; }
.header-right { grid-column: 3; justify-self: end; display: flex; align-items: center; gap: 18px; justify-content: flex-end; min-width: 172px; }
.header-right > * { flex-shrink: 0; }
.header .btn-primary {
  width: 172px;
  height: 44px;
  min-height: 44px;
  justify-content: center;
  padding: 0 18px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  background: #EDEAE2;
  background-image: none;
  border-color: #EDEAE2;
  box-shadow: none;
  filter: none;
}
.menu-toggle { display: none; grid-column: 3; width: 42px; height: 42px; border: 1px solid var(--line-2); color: var(--text); background: rgba(10,10,10,.5); align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; width: 16px; height: 1px; background: currentColor; display: block; transition: transform 220ms ease, opacity 220ms ease; }
.menu-toggle { flex-direction: column; gap: 5px; }
.menu-toggle.is-open span { opacity: 0; }
.menu-toggle.is-open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open::after { transform: translateY(-6px) rotate(-45deg); }
.page-hero { min-height: 62vh; display: grid; align-items: end; padding: 142px 0 48px; position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: var(--hero-image) center / cover no-repeat; opacity: 1; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: transparent; pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.hero-kicker { margin-bottom: 26px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: clamp(34px, 4.6vw, 58px); align-items: end; }
.page-hero .lede { margin: 0 0 4px; max-width: 42ch; }
.section { padding: 118px 0; border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: baseline; gap: 30px; margin-bottom: 64px; }
.section-head::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.card { border: 1px solid var(--line); background: linear-gradient(165deg, #1C1B19, #131311); transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease; transform-origin: center; }
.fleet-card-set .card { display: flex; flex-direction: column; min-height: 100%; }
.fleet-card-set .card:hover { transform: scale(1.08); border-color: rgba(237,234,226,.52); box-shadow: 0 26px 70px rgba(0,0,0,.32); z-index: 2; }
.card-media { aspect-ratio: 16 / 10; overflow: hidden; background: #101010; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 30px; display: flex; flex-direction: column; flex: 1; }
.fleet-card-set .card-body p { min-height: 104px; }
.fleet-card-set .specs { margin-top: auto; }
.card h3, .split h3 { font-family: var(--f-display); font-size: clamp(30px, 3vw, 48px); line-height: 1; font-weight: 500; margin: 0 0 14px; }
.card p, .split p, .feature p { color: var(--text-2); margin: 0; }
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px 0; margin: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.specs .label { font-size: 10px; letter-spacing: .12em; color: var(--text-3); text-transform: uppercase; margin-bottom: 8px; }
.specs .val { font-family: var(--f-display); font-size: 24px; line-height: 1; }
.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 64px; align-items: center; }
.feature-list.services-list { gap: 124px; }
.split.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
.split-media { aspect-ratio: 16 / 9; overflow: hidden; border: 1px solid var(--line); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.behind-section .section-head { margin-bottom: 40px; }
.fleet-behind-section {
  padding-top: clamp(148px, 12vw, 210px);
  padding-bottom: clamp(148px, 12vw, 210px);
}
.fleet-behind-section .behind-layout { gap: clamp(48px, 7vw, 96px); }
.behind-layout { display: grid; gap: clamp(34px, 4vw, 58px); }
.behind-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.58fr);
  gap: 56px;
  align-items: end;
}
.behind-copy h2 { margin: 0; }
.behind-copy .lede { margin: 0; }
.behind-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  align-items: stretch;
}
.behind-item {
  border: 1px solid var(--line);
  background: #101010;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  appearance: none;
  display: block;
  width: 100%;
}
.behind-item:nth-child(1) { grid-column: span 8; }
.behind-item:nth-child(2) { grid-column: span 4; }
.behind-item:nth-child(3),
.behind-item:nth-child(4),
.behind-item:nth-child(5) { grid-column: span 4; }
.behind-item:nth-child(6) { grid-column: span 8; }
.behind-item:nth-child(7) { grid-column: span 4; }
.behind-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.behind-item:nth-child(1) img,
.behind-item:nth-child(2) img,
.behind-item:nth-child(6) img,
.behind-item:nth-child(7) img { aspect-ratio: 16 / 9; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 4vw, 64px);
  background: rgba(0, 0, 0, 0.88);
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1120px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border: 1px solid rgba(237, 234, 226, 0.18);
  background: #080808;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
}
.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(237, 234, 226, 0.28);
  background: rgba(10, 10, 10, 0.72);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: clamp(46px, 4vw, 64px);
  height: clamp(64px, 6vw, 82px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 234, 226, 0.22);
  background: rgba(10, 10, 10, 0.58);
  color: var(--text);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}
.lightbox-nav:hover {
  border-color: rgba(216, 195, 154, 0.72);
  background: rgba(24, 23, 21, 0.86);
}
.lightbox-prev { left: clamp(18px, 3vw, 42px); }
.lightbox-next { right: clamp(18px, 3vw, 42px); }
.lightbox-nav span {
  width: 15px;
  height: 15px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.lightbox-prev span { transform: rotate(-135deg); margin-left: 6px; }
.lightbox-next span { transform: rotate(45deg); margin-right: 6px; }
.special-requests {
  border: 1px solid var(--line);
  background: rgba(237, 234, 226, 0.025);
  padding: clamp(28px, 4vw, 52px);
}
.special-requests-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}
.special-requests-list {
  display: grid;
  gap: 18px;
}
.special-requests-list div {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.special-requests-list h3 {
  margin: 0 0 8px;
  font-family: var(--f-display);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  font-weight: 500;
}
.special-requests-list p { color: var(--text-2); margin: 0; }
.feature-list { display: grid; gap: 18px; }
.feature { display: grid; grid-template-columns: 64px 1fr; gap: 24px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.feature .num { font-size: 11px; letter-spacing: .14em; color: var(--text-3); }
.feature h3 { margin: 0 0 8px; font-family: var(--f-display); font-size: 34px; font-weight: 500; }
.contact-layout { display: grid; grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr); gap: 68px; align-items: start; }
.contact-panel { border: 1px solid var(--line); padding: 34px; background: linear-gradient(165deg, #1C1B19, #131311); }
.contact-list { display: grid; gap: 24px; margin-top: 36px; }
.contact-list .label { font-size: 10px; letter-spacing: .14em; color: var(--text-3); text-transform: uppercase; margin-bottom: 8px; }
.contact-list a, .contact-list span { color: var(--text); font-size: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 10px; letter-spacing: .14em; color: var(--text-3); text-transform: uppercase; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line-2); background: rgba(6,6,6,.55); color: var(--text); padding: 15px 14px; outline: none; }
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--champagne); }
.footer { padding: 70px 0 42px; }
.footer-top { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 52px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-mark { font-family: var(--f-display); font-size: 46px; line-height: 1; }
.footer-brand-line { margin-top: 12px; color: var(--text-3); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }
.footer-col h4 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--text); margin: 0 0 20px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a, .footer-col span { color: var(--text-2); }
.footer-col a:hover { color: var(--text); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding-top: 34px; font-size: 10px; letter-spacing: .13em; color: var(--text-3); text-transform: uppercase; }
.footer-bottom .right { display: flex; flex-wrap: wrap; justify-self: end; gap: 18px; }
.footer-credit { justify-self: center; }
.footer-bottom a:hover { color: var(--text); }
.footer-link-button { border: 0; padding: 0; background: none; color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit; cursor: pointer; }
.footer-link-button:hover { color: var(--text); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.cookie-consent-backdrop { position: fixed; inset: 0; z-index: 298; display: none; background: rgba(0, 0, 0, 0.34); }
.cookie-consent-backdrop.is-open { display: block; }
.cookie-consent { position: fixed; right: 22px; bottom: 22px; z-index: 299; display: none; width: min(448px, calc(100vw - 44px)); padding: 24px; border: 1px solid rgba(237, 234, 226, 0.16); background: rgba(10, 10, 10, 0.97); color: var(--text); box-shadow: 0 28px 90px rgba(0, 0, 0, 0.46); }
.cookie-consent.is-open { display: block; }
.cookie-consent-kicker { margin-bottom: 10px; font-size: 10px; font-weight: 600; letter-spacing: .14em; color: var(--champagne); text-transform: uppercase; }
.cookie-consent h2 { margin: 0 0 12px; font-family: var(--f-display); font-size: 34px; line-height: 1; font-weight: 500; letter-spacing: 0; }
.cookie-consent p { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.55; }
.cookie-options { display: grid; gap: 14px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.cookie-option-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cookie-option-row strong { display: block; margin-bottom: 3px; font-size: 13px; font-weight: 600; color: var(--text); }
.cookie-option-row span:not(.sr-only) { display: block; color: var(--text-2); font-size: 12.5px; line-height: 1.45; }
.cookie-switch { position: relative; flex: 0 0 auto; width: 46px; height: 24px; border: 1px solid var(--line-2); background: #141413; cursor: pointer; transition: border-color 180ms ease, background 180ms ease; }
.cookie-switch::after { content: ""; position: absolute; top: 3px; left: 4px; width: 16px; height: 16px; background: var(--text-2); transition: transform 180ms ease, background 180ms ease; }
.cookie-switch.is-on { border-color: rgba(216, 195, 154, 0.72); background: rgba(216, 195, 154, 0.16); }
.cookie-switch.is-on::after { transform: translateX(20px); background: var(--champagne); }
.cookie-switch[aria-disabled="true"] { cursor: not-allowed; opacity: .72; }
.cookie-consent-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cookie-consent .btn { min-height: 42px; padding: 12px 14px; font-size: 10.5px; }
.cookie-consent-link { display: inline-flex; margin-top: 16px; color: var(--text-2); font-size: 12px; border-bottom: 1px solid rgba(216, 195, 154, 0.42); }
.cookie-consent-link:hover { color: var(--text); }
.legal-page { padding-top: 116px; }
.legal-content { max-width: 960px; }
.legal-content .lede { margin: 0 0 42px; }
.legal-section { padding: 34px 0; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 18px; font-family: var(--f-display); font-size: clamp(30px, 3vw, 46px); line-height: 1; font-weight: 500; }
.legal-section h3 { margin: 26px 0 10px; font-family: var(--f-display); font-size: clamp(24px, 2vw, 32px); line-height: 1.1; font-weight: 500; }
.legal-section p, .legal-section li { color: var(--text-2); }
.legal-section p { margin: 0 0 14px; }
.legal-section ul { margin: 0 0 16px; padding-left: 20px; }
.legal-section a { color: var(--text); border-bottom: 1px solid rgba(216, 195, 154, 0.45); }
.legal-meta { display: grid; gap: 10px; color: var(--text-2); }
@media (max-width: 1100px) {
  .brand-logo { width: min(232px, 40vw); }
  .hero-grid, .split, .split.reverse, .contact-layout, .special-requests-grid, .behind-copy { grid-template-columns: 1fr; gap: 46px; }
  .hero-grid { gap: 24px; }
  .behind-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .behind-item:nth-child(1),
  .behind-item:nth-child(6) { grid-column: span 6; }
  .behind-item:nth-child(2),
  .behind-item:nth-child(3),
  .behind-item:nth-child(4),
  .behind-item:nth-child(5),
  .behind-item:nth-child(7) { grid-column: span 3; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --gutter: 22px; }
  .header-inner { grid-template-columns: auto auto auto; height: 66px; gap: 12px; position: relative; }
  .brand-logo { width: min(242px, calc(100vw - 112px)); height: auto; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .header-right { display: none; }
  .nav {
    display: none;
    position: absolute;
    left: auto;
    right: 0;
    top: 66px;
    width: min(390px, calc(100vw - 24px));
    padding: 18px 22px 22px;
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid var(--line);
    border-top: 0;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .header .btn { padding: 12px 14px; min-height: 40px; font-size: 11px; }
  .page-hero { min-height: 58vh; padding: 108px 0 38px; }
  .page-hero::before { background-position: right center; }
  .page-hero::after { background: linear-gradient(90deg, rgba(8, 8, 8, 0.72), rgba(8, 8, 8, 0.44) 54%, rgba(8, 8, 8, 0.18)); }
  .hero-grid { gap: 18px; }
  .grid-2, .form-grid { grid-template-columns: 1fr; }
  .grid-3 { gap: 22px; }
  .fleet-card-set .card:hover { transform: none; }
  .fleet-card-set .card-media { aspect-ratio: 21 / 10; }
  .fleet-card-set .card-body { padding: 24px; }
  .fleet-card-set .card-body p { min-height: 0; }
  .behind-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .fleet-behind-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }
  .behind-copy { gap: 24px; }
  .behind-item:nth-child(1),
  .behind-item:nth-child(2),
  .behind-item:nth-child(3),
  .behind-item:nth-child(4),
  .behind-item:nth-child(5),
  .behind-item:nth-child(6),
  .behind-item:nth-child(7) { grid-column: auto; }
  .behind-item:nth-child(7) { grid-column: 1 / -1; }
  .behind-item img,
  .behind-item:nth-child(1) img,
  .behind-item:nth-child(2) img,
  .behind-item:nth-child(3) img,
  .behind-item:nth-child(4) img,
  .behind-item:nth-child(5) img,
  .behind-item:nth-child(7) img,
  .behind-item:nth-child(6) img { aspect-ratio: 1 / 1; }
  .behind-item:nth-child(7) img { aspect-ratio: 16 / 9; }
  .section { padding: 84px 0; }
  .feature-list.services-list { gap: 88px; }
  .services-list .split .split-media { order: 1; }
  .feature { grid-template-columns: 1fr; gap: 8px; }
  .footer-bottom { grid-template-columns: 1fr; align-items: start; }
  .footer-bottom .right, .footer-credit { justify-self: start; }
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; width: auto; padding: 20px; }
  .cookie-consent h2 { font-size: 30px; }
  .cookie-option-row { align-items: flex-start; }
  .cookie-consent-actions { flex-direction: column; }
  .cookie-consent .btn { width: 100%; }
  .lightbox { padding: 72px 18px 28px; }
  .lightbox img { max-height: calc(100vh - 168px); }
  .lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
    transform: none;
  }
  .lightbox-prev { left: calc(50% - 60px); }
  .lightbox-next { right: calc(50% - 60px); }
  .footer-top { grid-template-columns: 1fr; }
}
