/*
 * Cityflo LUXE — cab page styles.
 *
 * Shared by all /cabs/* static landing pages. Mirrors the React Home page
 * (src/components/Home.tsx) closely — same typography scale, same hero
 * layout (image area + content below), same section titles, same compact
 * amenities card, same fleet sizing. Carousels and JS animations are
 * intentionally omitted since the cab pages are static; transitions on
 * hover/focus are kept.
 */

/* ===== FONTS ===== */
@font-face {
  font-family: 'TT Norms';
  src: url('/fonts/ttnorms-woff2/TTNorms-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'TT Norms';
  src: url('/fonts/ttnorms-woff2/TTNorms-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* ===== TOKENS (mirrors Home's CSS variables) ===== */
:root {
  --primary-color: #141414;
  --secondary-color: #CFAB77;
  --secondary-color-dimmed: #997854;
  --tertiary-color: #E0DFE7;
  --text-color-white: #E0DFE7;

  --bg: #141414;
  --bg-card: #1c1d23;
  --bg-section-alt: #0e0f13;
  --bg-light: #f5f5f0;

  --gold: #CFAB77;
  --gold-bright: #FFE7C2;
  --gold-deep: #BF9A60;

  --text: #E0DFE7;
  --text-dim: #AFAFAF;
  --text-on-light: #141414;

  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --radius-card: 10px;
  --radius-pill: 50px;
}

/* ===== RESET + BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: 'TT Norms', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--text);
  background: var(--primary-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }

/* ===== HEADER ===== */
.cab-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.cab-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cab-header__logo img { height: 30px; width: auto; }
@media (min-width: 768px) {
  .cab-header__inner { padding: 18px 40px; }
  .cab-header__logo img { height: 36px; }
}
.cab-header__actions { display: flex; gap: 8px; }
.cab-header__action {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--text);
  transition: background 150ms ease, border-color 150ms ease;
}
.cab-header__action:hover { background: rgba(255,255,255,0.05); border-color: var(--gold-deep); }
.cab-header__action--primary {
  background: var(--gold);
  color: var(--text-on-light);
  border-color: var(--gold);
  font-weight: 700;
}
.cab-header__action--primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
@media (max-width: 480px) {
  .cab-header__action--secondary { display: none; }
}

/* ===== HERO (matches Home: image area on top, content below) ===== */
.cab-hero {
  position: relative;
  width: 100%;
  background: var(--primary-color);
  color: white;
  display: flex;
  flex-direction: column;
}
.cab-hero__image {
  width: 100%;
  height: 280px;
  margin-top: 0;
  position: relative;
  background: url('/images/hero-imageset/hero-mobile.avif') center top / cover no-repeat;
}
.cab-hero__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent 0%, var(--primary-color) 100%);
}
@media (min-width: 768px) {
  .cab-hero__image {
    height: 420px;
    background-image: url('/images/hero-imageset/hero-desktop.avif');
  }
  .cab-hero__image::after { height: 160px; }
}
@media (min-width: 950px) {
  .cab-hero__image {
    height: 65vh;
    max-height: 600px;
    background-position: center center;
  }
  .cab-hero__image::after {
    height: 250px;
  }
}

.cab-hero__content {
  position: relative;
  z-index: 5;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  max-width: 600px;
  padding: 0 24px 32px;
}
@media (min-width: 768px) {
  .cab-hero__content { margin-top: 10px; padding: 0 40px 48px; }
}
@media (min-width: 950px) {
  .cab-hero__content { max-width: 900px; padding: 0 80px 60px; margin-top: -100px; }
}

.cab-hero__title {
  font-size: 24px;
  font-weight: 500;
  color: var(--secondary-color);
  line-height: 130%;
  margin: 0 0 20px;
  text-align: center;
  letter-spacing: -0.5px;
}
.cab-hero__title span { color: var(--gold-bright); white-space: nowrap; }
@media (min-width: 768px) {
  .cab-hero__title { font-size: 42px; margin-bottom: 28px; }
}
@media (min-width: 950px) {
  .cab-hero__title { font-size: 56px; line-height: 130%; margin-bottom: 12px; }
}
@media (min-width: 1200px) {
  .cab-hero__title { font-size: 64px; }
}

.cab-hero__subtitle {
  font-size: 13px;
  font-weight: 500;
  color: #FFE7C2B2;
  line-height: 18px;
  margin: 0 0 24px;
  text-align: center;
}
@media (min-width: 768px) {
  .cab-hero__subtitle { font-size: 18px; line-height: 24px; margin-bottom: 32px; }
}
@media (min-width: 950px) {
  .cab-hero__subtitle { font-size: 22px; line-height: 150%; margin-bottom: 36px; }
}

.cab-hero__cta-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0 8px;
}
@media (min-width: 768px) { .cab-hero__cta-wrap { margin-bottom: 28px; } }

.cab-hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 52px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-on-light);
  background: linear-gradient(135deg, #cba960 0%, rgb(158, 132, 101) 23%, rgb(177, 148, 90) 41%, rgb(223, 190, 123) 59%, rgb(177, 148, 90) 77%, rgb(215, 181, 67) 100%);
  background-size: 200% 200%;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  transition: transform 150ms ease, background-position 300ms ease;
}
.cab-hero__cta:hover { transform: translateY(-2px); background-position: 100% 0; }
.cab-hero__cta:active { transform: scale(0.97); }
@media (min-width: 768px) { .cab-hero__cta { max-width: 400px; height: 58px; font-size: 20px; } }
@media (min-width: 1024px) { .cab-hero__cta { max-width: 440px; height: 64px; font-size: 22px; } }

.cab-hero__badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: nowrap;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .cab-hero__badges { gap: 20px; margin-bottom: 20px; padding: 10px 24px; }
}
.cab-hero__badge {
  font-size: 12px;
  color: #FFE7C2D9;
  font-weight: 500;
  line-height: 16px;
  white-space: nowrap;
}
@media (min-width: 768px) { .cab-hero__badge { font-size: 14px; line-height: 18px; } }
@media (min-width: 950px) { .cab-hero__badge { font-size: 16px; line-height: 22px; } }

.cab-hero__urgency {
  display: inline-block;
  font-size: 11px;
  color: #43CC75F2;
  border: 1px solid rgba(76, 140, 76, 0.6);
  border-radius: 20px;
  padding: 5px 14px;
  background: #0D2B14;
  white-space: nowrap;
  max-width: 90vw;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media (min-width: 380px) { .cab-hero__urgency { font-size: 13px; padding: 6px 20px; } }
@media (min-width: 768px) { .cab-hero__urgency { font-size: 15px; padding: 8px 24px; } }
@media (min-width: 950px) { .cab-hero__urgency { font-size: 16px; padding: 10px 28px; } }

/* ===== DIVIDER (gold gradient line) ===== */
.cab-divider {
  width: 80%;
  max-width: 1100px;
  height: 1px;
  margin: 24px auto;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 40%, var(--secondary-color) 60%, var(--primary-color) 100%);
}
@media (min-width: 768px) { .cab-divider { margin: 40px auto; } }

/* ===== SECTION SHELL ===== */
.cab-section {
  padding: 32px 18px;
}
.cab-section--alt { background: var(--bg-section-alt); }
.cab-section--light { background: var(--bg-light); color: var(--text-on-light); }
@media (min-width: 768px) { .cab-section { padding: 60px 40px; } }
@media (min-width: 1024px) { .cab-section { padding: 80px 80px; } }

.cab-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.cab-section__title {
  font-size: 18px;
  text-align: center;
  margin: 0 0 16px;
  color: var(--secondary-color);
  line-height: 130%;
  letter-spacing: -0.036px;
  font-weight: 600;
}
.cab-section--light .cab-section__title { color: var(--text-on-light); }
@media (min-width: 768px) { .cab-section__title { font-size: 32px; margin-bottom: 24px; } }
@media (min-width: 1024px) { .cab-section__title { font-size: 40px; } }

/* ===== AMENITIES (compact card with inner grid — matches Home) ===== */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #4a4a4a;
  background: #3C3B3B;
  padding: 16px 12px;
}
@media (min-width: 768px) {
  .amenities-grid { max-width: 600px; gap: 24px; padding: 24px 20px; }
}
@media (min-width: 1024px) {
  .amenities-grid { max-width: 800px; gap: 40px; padding: 28px 24px; }
}
.amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 4px;
  text-align: center;
}
.amenity-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) { .amenity-icon { width: 32px; height: 32px; } }
.amenity-icon svg { width: 100%; height: 100%; }
.amenity-label {
  font-size: 11px;
  color: var(--text);
  font-weight: 500;
  line-height: 14px;
}
@media (min-width: 768px) { .amenity-label { font-size: 14px; line-height: 18px; } }

/* ===== ADVANTAGES ===== */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .advantages-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
}
@media (min-width: 768px) {
  .advantage-card { flex-direction: column; align-items: flex-start; gap: 12px; padding: 28px 24px; }
}
.advantage-icon { width: 40px; height: 40px; flex-shrink: 0; }
.advantage-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--gold-bright);
  line-height: 1.3;
}
@media (min-width: 768px) { .advantage-title { font-size: 18px; } }
.advantage-description {
  font-size: 13px;
  margin: 0;
  color: var(--text-dim);
  line-height: 1.5;
}
@media (min-width: 768px) { .advantage-description { font-size: 14px; } }

/* ===== FLEET (matches Home: fixed-width horizontal row) ===== */
.fleet-vehicle-label {
  text-align: center;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: -8px 0 20px;
  font-weight: 500;
}
@media (min-width: 768px) { .fleet-vehicle-label { font-size: 15px; margin-bottom: 32px; } }
.fleet-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 18px;
  margin: 0 -18px;
}
.fleet-grid::-webkit-scrollbar { display: none; }
.fleet-grid > * { flex: 0 0 auto; }
@media (min-width: 768px) { .fleet-grid { gap: 20px; padding: 0 40px; margin: 0 -40px; } }
@media (min-width: 1024px) {
  .fleet-grid {
    justify-content: center;
    overflow-x: visible;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
  }
}
.fleet-image {
  width: 208px;
  height: 136px;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  flex: 0 0 208px;
}
.fleet-image img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .fleet-image { width: 300px; height: 200px; flex: 0 0 300px; border-radius: 12px; }
}
@media (min-width: 1024px) {
  .fleet-image { width: 360px; height: 240px; flex: 0 0 360px; }
}

/* ===== ROUTE-SPECIFIC CONTENT ===== */
.route-content {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text);
}
.route-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 14px;
  color: var(--secondary-color);
  letter-spacing: -0.036px;
  line-height: 130%;
}
@media (min-width: 768px) { .route-content h2 { font-size: 28px; margin: 40px 0 18px; } }
@media (min-width: 1024px) { .route-content h2 { font-size: 34px; } }
.route-content > h2:first-child { margin-top: 0; }
.route-content p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 14px;
  color: var(--text);
}
@media (min-width: 768px) { .route-content p { font-size: 16px; } }
.route-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0 8px;
}
@media (min-width: 640px) { .route-features { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .route-features { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.route-feature {
  padding: 18px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-deep) 0%, #D7B543 100%);
  color: var(--text-on-light);
  transition: transform 200ms ease;
}
.route-feature:hover { transform: translateY(-3px); }
.route-feature h3 { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--text-on-light); }
.route-feature p { font-size: 13px; margin: 0; color: rgba(20, 20, 20, 0.85); line-height: 1.5; }

/* ===== ROUTE FAQs (native <details> accordion, no JS) ===== */
.route-faqs {
  max-width: 900px;
  margin: 0 auto;
}
.route-faq {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 200ms ease;
}
.route-faq[open] { border-color: var(--border-strong); }
.route-faq__question {
  padding: 18px 56px 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--gold-bright);
  list-style: none;
  position: relative;
  line-height: 1.4;
}
.route-faq__question::-webkit-details-marker { display: none; }
.route-faq__question::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
  color: var(--gold);
  transition: transform 200ms ease;
}
.route-faq[open] .route-faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}
.route-faq__question:hover { color: var(--gold); }
.route-faq__answer { padding: 0 22px 18px; }
.route-faq__answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}
@media (min-width: 768px) {
  .route-faq__question { font-size: 16px; padding: 22px 64px 22px 28px; }
  .route-faq__answer { padding: 0 28px 22px; }
  .route-faq__answer p { font-size: 15px; }
}

/* ===== SERVICES (matches Home) ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .services-grid { gap: 20px; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #212121;
  background: #25262C;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease;
}
.service-card:hover { transform: translateY(-3px); }
.service-card__image { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.645, 0.045, 0.355, 1);
}
.service-card:hover .service-card__image img { transform: scale(1.04); }
.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.13) 0%, rgba(20,20,20,0.5) 100%);
  pointer-events: none;
}
.service-card__body { padding: 14px 16px 18px; }
@media (min-width: 768px) { .service-card__body { padding: 18px 20px 22px; } }
.service-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 4px;
}
@media (min-width: 768px) { .service-card__title { font-size: 16px; } }
.service-card__title-arrow { color: var(--gold); margin-left: 4px; }
.service-card__desc {
  font-size: 12px;
  color: var(--text-dim);
  margin: 0;
}
@media (min-width: 768px) { .service-card__desc { font-size: 14px; } }

/* ===== RELATED ROUTES ===== */
.related-routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 640px) { .related-routes-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .related-routes-grid { grid-template-columns: repeat(3, 1fr); } }
.related-route {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #FFFFFF;
  color: var(--text-on-light);
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  font-weight: 500;
  font-size: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease, color 200ms ease;
}
.related-route:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08); color: var(--gold-deep); }
.related-route__icon { flex-shrink: 0; color: var(--gold-deep); width: 16px; height: 16px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.testimonial-card {
  padding: 24px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.testimonial-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  font-style: italic;
}
@media (min-width: 768px) { .testimonial-quote { font-size: 15px; } }
.testimonial-name {
  font-size: 13px;
  color: var(--gold-bright);
  font-weight: 700;
  margin: 0;
}
.corporate-trust-strip {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) { .corporate-trust-strip { font-size: 14px; } }

/* ===== CORPORATE REFERRAL ===== */
.corp-referral-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a1f2e 0%, #0e1118 100%);
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .corp-referral-card { grid-template-columns: 1fr 1fr; gap: 32px; padding: 36px; }
}
.corp-referral-badge {
  display: inline-block;
  background: rgba(207, 171, 119, 0.15);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.corp-referral-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 12px;
  line-height: 1.25;
}
@media (min-width: 768px) { .corp-referral-title { font-size: 26px; } }
.corp-referral-desc {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0 0 22px;
}
@media (min-width: 768px) { .corp-referral-desc { font-size: 15px; } }
.corp-referral-desc b { color: var(--gold-bright); }
.corp-referral-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--text-on-light);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  transition: background 200ms ease;
}
.corp-referral-cta:hover { background: var(--gold-bright); }
.corp-referral-image img { width: 100%; border-radius: 14px; }
@media (max-width: 768px) { .corp-referral-image { display: none; } }

/* ===== QUESTIONS ===== */
.questions-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.questions-button {
  padding: 12px 24px;
  border: 1px solid var(--secondary-color-dimmed);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--gold-bright);
  transition: background 200ms ease, border-color 200ms ease;
}
@media (min-width: 768px) { .questions-button { padding: 14px 28px; font-size: 15px; } }
.questions-button:hover {
  background: rgba(207, 171, 119, 0.15);
  border-color: var(--gold);
}

/* ===== FOOTER ===== */
.cab-footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border);
  padding: 40px 18px 24px;
  color: var(--text-dim);
}
@media (min-width: 768px) { .cab-footer { padding: 56px 40px 32px; } }
.cab-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .cab-footer__inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .cab-footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; } }
.cab-footer__brand img { height: 30px; margin-bottom: 12px; }
.cab-footer__brand p { font-size: 13px; line-height: 1.6; margin: 0; max-width: 280px; }
.cab-footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 12px;
}
.cab-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.cab-footer__col a {
  font-size: 14px;
  color: var(--text);
  transition: color 150ms ease;
}
.cab-footer__col a:hover { color: var(--gold); }
.cab-footer__bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
}

/* ===== UTILS ===== */
.text-center { text-align: center; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
