:root {
  --hub-bg: #050505;
  --hub-panel: #0b0b0b;
  --hub-panel-soft: #10100f;
  --hub-gold: #d8bc77;
  --hub-gold-soft: #f0dcaa;
  --hub-text: #f5f1e8;
  --hub-muted: #aaa59b;
  --hub-line: rgba(216, 188, 119, 0.2);
  --hub-white-line: rgba(255, 255, 255, 0.08);
  --hub-radius: 24px;
  --hub-serif: 'Cinzel', Georgia, serif;
  --hub-sans: 'Manrope', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--hub-bg);
  color: var(--hub-text);
  font-family: var(--hub-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
a { color: inherit; }
.hub-skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--hub-gold);
  color: #080808;
  transform: translateY(-150%);
}
.hub-skip:focus { transform: none; }
.hub-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.hub-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--hub-white-line);
  background: rgba(4, 4, 4, 0.88);
  backdrop-filter: blur(18px);
}
.hub-nav {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.hub-logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.hub-logo img { display: block; width: 205px; height: auto; }
.hub-nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.hub-nav-links a {
  color: #d6d1c7;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.hub-nav-links a:hover,
.hub-nav-links a[aria-current='page'] { color: var(--hub-gold-soft); }
.hub-nav-links .hub-nav-cta {
  min-height: 42px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(216,188,119,0.55);
  border-radius: 999px;
  color: var(--hub-gold-soft);
}
.hub-mobile-nav { display: none; }
.hub-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 30px;
  color: #918b81;
  font-size: 0.78rem;
}
.hub-breadcrumbs a { color: #bbb3a4; text-decoration: none; }
.hub-hero {
  position: relative;
  min-height: 660px;
  margin-top: 24px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--hub-line);
  border-radius: 34px;
  isolation: isolate;
}
.hub-hero > picture,
.hub-hero-media,
.hub-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hub-hero-media { object-fit: cover; }
.hub-hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.64) 50%, rgba(0,0,0,0.2) 78%),
    linear-gradient(0deg, rgba(0,0,0,0.88), transparent 55%);
}
.hub-hero-copy {
  position: relative;
  z-index: 2;
  width: min(790px, 90%);
  padding: clamp(34px, 6vw, 76px);
}
.hub-kicker {
  margin-bottom: 16px;
  color: var(--hub-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--hub-serif); font-weight: 500; }
.hub-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 5.35rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.hub-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: #d6d0c5;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}
.hub-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hub-button {
  min-height: 50px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hub-gold);
  border-radius: 999px;
  background: var(--hub-gold);
  color: #090909;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.hub-button-secondary { background: rgba(0,0,0,0.3); color: var(--hub-gold-soft); }
.hub-proof {
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}
.hub-proof li {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  color: #c7c1b7;
  font-size: 0.76rem;
}
.hub-section { padding: 96px 0; border-bottom: 1px solid var(--hub-white-line); }
.hub-section-heading { max-width: 780px; margin-bottom: 42px; }
.hub-section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.14; }
.hub-section-heading p { margin: 18px 0 0; color: var(--hub-muted); }
.hub-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 18px; }
.hub-card {
  grid-column: span 4;
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--hub-white-line);
  border-radius: var(--hub-radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.035), rgba(255,255,255,0.008));
}
.hub-card-number { display: block; margin-bottom: 28px; color: #827354; font: 500 0.72rem/1 var(--hub-serif); }
.hub-card h3 { margin: 0; color: var(--hub-gold-soft); font-size: 1.25rem; line-height: 1.35; }
.hub-card p { margin: 14px 0 0; color: var(--hub-muted); font-size: 0.91rem; }
.hub-card ul { margin: 18px 0 0; padding-left: 18px; color: #aaa49a; font-size: 0.86rem; }
.hub-card-link { display: inline-flex; margin-top: 22px; color: var(--hub-gold); font-size: 0.8rem; font-weight: 750; text-decoration: none; }
.hub-card-link:hover { color: var(--hub-gold-soft); text-decoration: underline; }
.hub-media-card {
  grid-column: span 3;
  min-height: 100%;
  padding: 10px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
}
.hub-media-card img {
  display: block;
  width: 100%;
  height: 160px !important;
  min-height: 0 !important;
  flex: 0 0 160px;
  aspect-ratio: auto !important;
  border: 1px solid rgba(216,188,119,0.13);
  border-radius: 15px;
  object-fit: cover;
  object-position: center;
  background: #0b0b0b;
}
.hub-media-card-copy { display: flex; padding: 20px 12px 14px; flex: 1; flex-direction: column; }
.hub-specs { margin: 17px 0 0; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--hub-white-line); }
.hub-specs div { min-width: 0; padding: 10px 0; display: grid; grid-template-columns: 68px minmax(0, 1fr); gap: 9px; border: 0; border-bottom: 1px solid var(--hub-white-line); border-radius: 0; }
.hub-specs dt { color: #777168; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; }
.hub-specs dd { margin: 0; color: #ded7c9; font-size: 0.78rem; line-height: 1.45; }
.hub-band {
  padding: 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  border: 1px solid var(--hub-line);
  border-radius: var(--hub-radius);
  background: linear-gradient(120deg, rgba(216,188,119,0.1), rgba(255,255,255,0.018));
}
.hub-band h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.55rem); }
.hub-band p { margin: 12px 0 0; color: var(--hub-muted); }
.hub-band .hub-actions { margin: 0; justify-content: flex-end; }
.hub-table-wrap { overflow-x: auto; border: 1px solid var(--hub-white-line); border-radius: var(--hub-radius); }
.hub-table { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--hub-panel); }
.hub-table th,
.hub-table td { padding: 20px 22px; border-bottom: 1px solid var(--hub-white-line); text-align: left; vertical-align: top; }
.hub-table th { color: var(--hub-gold); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.hub-table td { color: #b8b1a6; font-size: 0.88rem; }
.hub-table td:first-child { color: var(--hub-text); font-weight: 750; }
.hub-table tr:last-child td { border-bottom: 0; }
.hub-region { grid-column: span 6; }
.hub-region h3 { font-size: 1.5rem; }
.hub-link-list { margin: 22px 0 0; display: grid; gap: 10px; }
.hub-link-list a {
  padding: 11px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--hub-white-line);
  color: #d4cec3;
  font-size: 0.86rem;
  text-decoration: none;
}
.hub-link-list a::after { content: '↗'; color: var(--hub-gold); }
.hub-link-list a:hover { color: var(--hub-gold-soft); }
.hub-faq { display: grid; gap: 12px; }
.hub-faq details { padding: 20px 24px; border: 1px solid var(--hub-white-line); border-radius: 16px; background: var(--hub-panel); }
.hub-faq summary { color: #ede7dc; cursor: pointer; font-weight: 700; }
.hub-faq p { max-width: 860px; margin: 14px 0 0; color: var(--hub-muted); }
.hub-final {
  margin: 96px auto;
  padding: clamp(36px, 7vw, 80px);
  border: 1px solid var(--hub-line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 0, rgba(216,188,119,0.16), transparent 45%),
    var(--hub-panel);
  text-align: center;
}
.hub-final h2 { max-width: 790px; margin: 0 auto; font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: 1.1; }
.hub-final p { max-width: 670px; margin: 18px auto 0; color: var(--hub-muted); }
.hub-final .hub-actions { justify-content: center; }
.hub-footer { padding: 55px 0; border-top: 1px solid var(--hub-white-line); }
.hub-footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.hub-footer img { width: 210px; height: auto; }
.hub-footer p { max-width: 600px; color: #8f8a81; font-size: 0.84rem; }
.hub-footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 24px; }
.hub-footer-links a { color: #b7b1a7; font-size: 0.82rem; text-decoration: none; }
.hub-footer-links a:hover { color: var(--hub-gold); }

@media (max-width: 980px) {
  .hub-nav { min-height: 72px; }
  .hub-logo img { width: 170px; }
  .hub-nav-links { gap: 14px; }
  .hub-nav-links a { font-size: 0.68rem; }
  .hub-nav-links a:nth-child(5) { display: none; }
  .hub-card { grid-column: span 6; }
  .hub-media-card img { height: 220px !important; flex-basis: 220px; }
}

@media (max-width: 720px) {
  .hub-container { width: min(100% - 28px, 1180px); }
  .hub-nav { min-height: 72px; padding: 8px 0; gap: 18px; }
  .hub-logo img { width: 154px; }
  .hub-nav-links { display: none; }
  .hub-mobile-nav { position: relative; display: block; margin-left: auto; }
  .hub-mobile-nav summary {
    width: 46px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid rgba(216,188,119,0.38);
    border-radius: 999px;
    cursor: pointer;
    list-style: none;
  }
  .hub-mobile-nav summary::-webkit-details-marker { display: none; }
  .hub-mobile-nav summary span { width: 17px; height: 1px; display: block; background: var(--hub-gold-soft); transition: transform 180ms ease; }
  .hub-mobile-nav[open] summary span:first-child { transform: translateY(4px) rotate(45deg); }
  .hub-mobile-nav[open] summary span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hub-mobile-panel {
    position: absolute;
    z-index: 80;
    top: 52px;
    right: 0;
    width: min(330px, calc(100vw - 28px));
    padding: 12px;
    display: grid;
    gap: 3px;
    border: 1px solid var(--hub-line);
    border-radius: 18px;
    background: rgba(8,8,8,0.98);
    box-shadow: 0 24px 70px rgba(0,0,0,0.55);
  }
  .hub-mobile-panel a { padding: 11px 12px; border-radius: 10px; color: #d8d2c7; font-size: 0.78rem; font-weight: 650; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; }
  .hub-mobile-panel a[aria-current='page'] { color: var(--hub-gold-soft); background: rgba(216,188,119,0.1); }
  .hub-mobile-panel .hub-mobile-plan { margin-top: 5px; border: 1px solid rgba(216,188,119,0.45); color: var(--hub-gold-soft); text-align: center; }
  .hub-hero { min-height: 600px; margin-top: 14px; border-radius: 24px; }
  .hub-hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.52) 72%, rgba(0,0,0,.24) 100%); }
  .hub-hero-copy { width: 100%; padding: 30px 25px; }
  .hub-hero h1 { font-size: clamp(2rem, 10vw, 3.15rem); overflow-wrap: break-word; }
  .hub-proof { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hub-proof li { text-align: center; }
  .hub-section { padding: 68px 0; }
  .hub-card,
  .hub-region { grid-column: 1 / -1; }
  .hub-media-card img { height: clamp(190px, 52vw, 240px) !important; flex-basis: auto; }
  .hub-band { grid-template-columns: 1fr; padding: 26px; }
  .hub-band .hub-actions { justify-content: flex-start; }
  .hub-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .hub-actions { display: grid; }
  .hub-button { width: 100%; }
  .hub-proof { grid-template-columns: 1fr; }
  .hub-card { padding: 24px; }
  .hub-specs { grid-template-columns: 1fr; }
}

/* Premium authority page collection */
body.hub-page {
  background:
    radial-gradient(circle at 12% 6%, rgba(180,143,73,0.075), transparent 25%),
    radial-gradient(circle at 88% 28%, rgba(69,82,91,0.075), transparent 30%),
    #050505;
}

.hub-page .hub-header {
  box-shadow: 0 12px 38px rgba(0,0,0,0.28);
}

.hub-page .hub-breadcrumbs {
  padding-top: 24px;
  align-items: center;
  letter-spacing: 0.015em;
}

.hub-page .hub-breadcrumbs span:first-of-type {
  color: rgba(216,188,119,0.62);
}

.hub-page .hub-hero {
  min-height: 640px;
  border-color: rgba(216,188,119,0.27);
  box-shadow: 0 34px 90px rgba(0,0,0,0.44), inset 0 1px rgba(255,255,255,0.06);
}

.hub-page .hub-hero::after {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 11px;
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 24px;
  pointer-events: none;
}

.hub-page .hub-hero-copy {
  width: min(840px, 92%);
}

.hub-page .hub-hero-copy::before {
  content: '';
  position: absolute;
  top: clamp(34px, 6vw, 76px);
  bottom: clamp(34px, 6vw, 76px);
  left: clamp(18px, 3.2vw, 42px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(216,188,119,0.8), transparent);
}

.hub-page .hub-hero h1 {
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(0,0,0,0.44);
}

.hub-page-index {
  position: relative;
  z-index: 6;
  min-height: 76px;
  margin: -28px 20px 0;
  padding: 10px 12px;
  display: flex;
  align-items: stretch;
  gap: 4px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  border: 1px solid rgba(216,188,119,0.25);
  border-radius: 18px;
  background: rgba(9,9,8,0.94);
  box-shadow: 0 22px 55px rgba(0,0,0,0.42), inset 0 1px rgba(255,255,255,0.045);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.hub-page-index::-webkit-scrollbar { display: none; }

.hub-page-index > span {
  min-width: 90px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.38);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-page-index a {
  min-width: 112px;
  padding: 11px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 11px;
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.hub-page-index a small {
  color: rgba(216,188,119,0.58);
  font: 500 0.58rem/1 var(--hub-serif);
}

.hub-page-index a:hover,
.hub-page-index a:focus-visible {
  color: var(--hub-gold-soft);
  background: rgba(216,188,119,0.09);
  transform: translateY(-1px);
}

.hub-page main > .hub-section {
  position: relative;
  overflow: hidden;
}

.hub-page main > .hub-section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent 72%);
}

.hub-page .hub-section-heading {
  position: relative;
  max-width: 860px;
  padding-left: 26px;
}

.hub-page .hub-section-heading::before {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 3px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--hub-gold), rgba(216,188,119,0.08));
}

.hub-page .hub-card {
  border-color: rgba(255,255,255,0.095);
  background:
    radial-gradient(circle at 100% 0, rgba(216,188,119,0.07), transparent 34%),
    linear-gradient(150deg, rgba(16,16,15,0.98), rgba(7,7,7,0.98));
  box-shadow: 0 18px 46px rgba(0,0,0,0.22), inset 0 1px rgba(255,255,255,0.035);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hub-page .hub-card:hover {
  border-color: rgba(216,188,119,0.3);
  box-shadow: 0 26px 60px rgba(0,0,0,0.34), inset 0 1px rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.hub-service-card {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.hub-card-media,
.hub-region-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216,188,119,0.14);
  border-radius: 16px;
  background: #0b0b0b;
}

.hub-card-media { height: 188px; flex: 0 0 188px; }

.hub-card-media::after,
.hub-region-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0,0,0,0.54));
  pointer-events: none;
}

.hub-card-media img,
.hub-region-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(.22,1,.36,1), filter 280ms ease;
}

.hub-card:hover .hub-card-media img,
.hub-region:hover .hub-region-media img,
.hub-media-card:hover > img {
  transform: scale(1.025);
  filter: brightness(1.035);
}

.hub-card-media .hub-card-number,
.hub-region-media > span {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 12px;
  margin: 0;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216,188,119,0.46);
  border-radius: 50%;
  background: rgba(5,5,5,0.7);
  color: var(--hub-gold-soft);
  font: 500 0.68rem/1 var(--hub-serif);
  backdrop-filter: blur(8px);
}

.hub-card-body {
  padding: 22px 13px 13px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.hub-card-body h3 { min-height: 2.7em; }
.hub-card-body p { line-height: 1.7; }
.hub-card-body ul { margin-bottom: 0; }
.hub-card-body .hub-card-link { margin-top: auto; padding-top: 22px; }

.hub-region {
  padding: 10px;
}

.hub-region-media { height: 232px; }

.hub-region-body { padding: 24px 20px 18px; }
.hub-region-body h3 { font-size: clamp(1.28rem, 2vw, 1.65rem); }
.hub-region-body > p { min-height: 3.4em; }

.hub-page-fleet .hub-media-card {
  border-color: rgba(216,188,119,0.16);
}

.hub-page-fleet .hub-media-card > img {
  transition: transform 550ms cubic-bezier(.22,1,.36,1), filter 280ms ease;
}

.hub-page .hub-table-wrap {
  border-color: rgba(216,188,119,0.18);
  box-shadow: 0 22px 56px rgba(0,0,0,0.26), inset 0 1px rgba(255,255,255,0.025);
}

.hub-page .hub-table thead {
  background: linear-gradient(90deg, rgba(216,188,119,0.1), rgba(216,188,119,0.025));
}

.hub-page .hub-table tbody tr {
  transition: background 180ms ease;
}

.hub-page .hub-table tbody tr:hover {
  background: rgba(216,188,119,0.035);
}

.hub-page .hub-band {
  position: relative;
  overflow: hidden;
  border-color: rgba(216,188,119,0.26);
  background:
    radial-gradient(circle at 0 0, rgba(216,188,119,0.16), transparent 34%),
    linear-gradient(120deg, #11100d, #080808);
  box-shadow: 0 24px 60px rgba(0,0,0,0.27), inset 0 1px rgba(255,255,255,0.04);
}

.hub-page .hub-faq details {
  border-color: rgba(255,255,255,0.095);
  background: linear-gradient(145deg, rgba(15,15,14,0.96), rgba(8,8,8,0.98));
  transition: border-color 180ms ease, background 180ms ease;
}

.hub-page .hub-faq details[open] {
  border-color: rgba(216,188,119,0.28);
  background: linear-gradient(145deg, rgba(20,18,14,0.98), rgba(8,8,8,0.98));
}

.hub-page .hub-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
}

.hub-page .hub-faq summary::-webkit-details-marker { display: none; }
.hub-page .hub-faq summary::after { content: '+'; color: var(--hub-gold); font: 400 1.2rem/1 var(--hub-sans); }
.hub-page .hub-faq details[open] summary::after { content: '−'; }

.hub-page .hub-final {
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.32), inset 0 1px rgba(255,255,255,0.05);
}

.hub-page .hub-footer {
  background: linear-gradient(180deg, rgba(255,255,255,0.012), transparent 80%);
}

@media (max-width: 980px) {
  .hub-page-index { margin-inline: 12px; }
  .hub-service-card { grid-column: span 6; }
  .hub-card-media { height: 220px; flex-basis: 220px; }
  .hub-region-media { height: 215px; }
}

@media (max-width: 720px) {
  .hub-page .hub-hero { min-height: 590px; }
  .hub-page .hub-hero::after { inset: 7px; border-radius: 18px; }
  .hub-page .hub-hero-copy::before { display: none; }
  .hub-page-index { margin: -18px 8px 0; padding: 8px; border-radius: 15px; }
  .hub-page-index > span { min-width: 74px; padding-inline: 10px; }
  .hub-page-index a { min-width: 104px; padding-inline: 11px; }
  .hub-page .hub-section-heading { padding-left: 18px; }
  .hub-service-card,
  .hub-region { grid-column: 1 / -1; padding: 9px; }
  .hub-card-media { height: clamp(190px, 54vw, 230px); flex-basis: auto; }
  .hub-region-media { height: clamp(205px, 58vw, 250px); }
  .hub-card-body { padding: 21px 12px 13px; }
  .hub-card-body h3 { min-height: 0; }
  .hub-region-body { padding: 22px 14px 14px; }
  .hub-region-body > p { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hub-page .hub-card,
  .hub-card-media img,
  .hub-region-media img,
  .hub-page-index a { transition: none; }
  .hub-page .hub-card:hover,
  .hub-page-index a:hover { transform: none; }
}
