:root {
  --red: #c70102;
  --red-hover: #a50102;
  --black: #000000;
  --ink: #3a3a3a;
  --near-black: #1a1a1a;
  --muted: #4b4f58;
  --gray: #8a8a8a;
  --band: #7a7a7a;
  --light: #f5f5f5;
  --footer: #1a1a1a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #000; /* bottom overscroll + gap above sticky bar */
}
body {
  font-family: "Noto Sans", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  line-height: 1.49;
  font-size: 16px;
  overflow-x: hidden;
  }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
::selection { background: var(--red); color: #fff; }

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

h1, h2, h3, h4, .logo-name, .hero-line, .section-heading {
  font-family: Montserrat, Helvetica, Arial, sans-serif;
  font-weight: 700;
}
h1 { font-size: 64px; line-height: 1.4; }
h2, .section-heading { font-size: 32px; line-height: 1.3; }
h3 { font-size: 24px; line-height: 1.3; }

/* Header — matches aboveav.com / Hyatt family */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  color: #fff;
}
.header-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.logo-mark {
  width: auto;
  height: 52px;
  display: block;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 22px;
}
.logo-sub {
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  text-decoration: none;
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 4px;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--red); }
.btn-connect:hover { background: #fff; color: #000; }
.btn-connect {
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 8px 22px !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 26px;
  width: 44px;
  height: 44px;
  line-height: 1;
  cursor: pointer;
}

/* Hero — ALWAYS a visible still (img), never video-only on mobile */
.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background: #111;
  overflow: hidden;
}
.hero-still {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.42);
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .hero-still {
    top: 0;
    height: 100%;
    will-change: auto;
    transform: none !important;
  }
}
.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 80px 20px 72px;
  width: min(920px, 100%);
  margin: 0 auto;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.85;
}
.hero-line {
  font-size: clamp(1.75rem, 4.2vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

/* Monospace scramble line — FIXED one-line; headline/CTA never jump */
.atl-digit-wrap {
  text-align: center;
  margin: 0.35rem auto 1.15rem;
  max-width: min(100%, 920px);
  padding: 0 16px;
  box-sizing: border-box;
  height: 28px;
  min-height: 28px;
  max-height: 28px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.atl-digit-line {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 28px;
  height: 28px;
  color: #fff;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .atl-digit-wrap {
    height: 31px;
    min-height: 31px;
    max-height: 31px;
  }
  .atl-digit-line {
    font-size: 19px;
    line-height: 31px;
    height: 31px;
    letter-spacing: 0.01em;
    color: #fff;
  }
}


.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  border: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  min-height: 44px;
  border-radius: 6px;
  cursor: pointer;
}
.btn-red:hover { background: var(--red-hover); }


/* Client logo strip — dark gray (#222) logos on white; filter:none */
.atl-logo-strip {
  position: relative;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.atl-logo-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: atl-marquee 25s linear infinite;
  will-change: transform;
  padding: 0;
  margin: 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
.atl-logo-track img {
  flex: 0 0 auto;
  height: 15px !important;
  max-height: 15px !important;
  width: auto !important;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
  opacity: 1;
}
/* SpaceX→Apple tighter gap */
.atl-logo-track img[alt="Apple"] {
  margin-left: -24px;
}
/* Tesla strip size — +20% vs 18px, baseline with Disney/Sega */
.atl-logo-track img[alt="Tesla"] {
  height: 22px !important;
  max-height: 22px !important;
  align-self: center;
  object-fit: contain;
  object-position: center bottom;
}
/* Sega strip — +10% vs 15px base, denser black PNG */
.atl-logo-track img[alt="Sega"] {
  height: 17px !important;
  max-height: 17px !important;
  align-self: center;
}
@media (prefers-reduced-motion: reduce) {
  .atl-logo-track { animation: none; }
}
@keyframes atl-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}


/* Mission band — midnight still (hero pattern) */
.mission-band {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  background: #111;
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.mission-still {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.42);
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .mission-still {
    top: 0;
    height: 100%;
    will-change: auto;
    transform: none !important;
  }
}
.mission-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 64px 24px;
  width: min(720px, 100%);
  margin: 0 auto;
  box-sizing: border-box;
}
.narrow { max-width: 720px; margin: 0 auto; }
.mission-band h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 12px;
}
.red-rule {
  display: block;
  width: 42px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 22px;
}
.mission-band p {
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  max-width: 36em;
  margin: 0 auto;
}

/* Services — solid black band */
.services {
  position: relative;
  background: #000;
  color: #fff;
  padding: 64px 0;
  overflow: hidden;
}
.services .wrap {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.services .section-heading { color: #fff; }
.services .intro {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  max-width: 62ch;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 18px;
  margin-top: 28px;
}
.svc-card {
  text-decoration: none;
  color: #111;
  display: block;
  padding: 16px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  transition: background 0.15s ease, transform 0.15s ease;
}
.svc-card:hover { background: #fff; }
.svc-card:hover h3 { color: var(--red); }
.svc-grid h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0 8px;
  color: #111;
}
.svc-grid p { font-size: 14.5px; color: #555; }
.icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.intro {
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 62ch;
}

/* CTA bands */
.cta-band {
  padding: 56px 0;
  background: var(--light);
}
.cta-band.dark {
  background: #000;
  color: #fff;
}
.cta-band .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-band h2 { font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.cta-band p { color: var(--muted); max-width: 48ch; }
.cta-band.dark p { color: #bbb; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-actions a {
  min-height: 44px;
}

/* Clients teaser — midnight still */
.clients-teaser {
  position: relative;
  background: #111;
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.clients-still {
  position: absolute;
  left: 0;
  right: 0;
  top: -12%;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.42);
  z-index: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .clients-still {
    top: 0;
    height: 100%;
    will-change: auto;
    transform: none !important;
  }
}
.clients-overlay {
  position: relative;
  z-index: 1;
  padding: 64px 24px;
  box-sizing: border-box;
}
.clients-teaser .section-heading { color: #fff; }
.clients-teaser .intro { color: rgba(255, 255, 255, 0.85); }
.clients-teaser .brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: 24px 0 28px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #222;
}

/* Footer */
.site-footer {
  background: #000; /* solid black under sticky red line — no white gap */
  color: #ddd;
  text-align: center;
  padding: 36px 20px calc(28px + 56px + env(safe-area-inset-bottom, 0px));
  font-size: 14px;
}
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 8px 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.site-footer nav a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 8px;
}
.site-footer nav a:hover { color: var(--red); }
.site-footer .contact-line {
  margin: 8px 0 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.site-footer .contact-line a {
  color: #fff;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 6px;
}
.site-footer .contact-line a:hover { color: var(--red); }
.site-footer .fine {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

/* Desktop ≥1200 */
@media screen and (min-width: 1200px) {
  .header-inner { width: min(1200px, calc(100% - 64px)); }
  .hero { min-height: 560px; }
}

/* iPad / small laptop */
@media screen and (max-width: 1199px) {
  h1 { font-size: 48px; }
  h2, .section-heading, .mission-band h2, .cta-band h2 { font-size: 28px; }
  .wrap { width: min(1120px, calc(100% - 48px)); }
  .header-inner { width: min(1200px, calc(100% - 32px)); min-height: 84px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 14px; }
  .hero { min-height: 440px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Hamburger + stacked */
@media screen and (max-width: 1023px) {
  .nav-toggle { display: block; }
  .header-inner { position: relative; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    flex-direction: column;
    align-items: stretch;
    padding: 8px 20px 20px;
    gap: 0;
    z-index: 30;
    border-top: 1px solid #222;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    font-size: 16px;
    padding: 14px 8px;
    min-height: 44px;
    border-bottom: 1px solid #222;
  }
  .btn-connect {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
    display: inline-flex;
    align-self: flex-start;
  }
}

/* Phones ≤767 */
@media screen and (max-width: 767px) {
  body { font-size: 15px; }
  h1 { font-size: 32px; }
  h2, .section-heading, .mission-band h2, .cta-band h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  .wrap, .header-inner { width: calc(100% - 28px); }
  .logo-mark { height: 40px; }
  .logo-name { font-size: 17px; }
  .logo-sub { font-size: 12px; }
  .header-inner { min-height: 72px; }
  .hero { min-height: 380px; }
  .hero-overlay { padding: 48px 16px 56px; }
  .hero-line { font-size: clamp(1.45rem, 6.5vw, 1.85rem); }
  .mission-band { min-height: 280px; }
  .mission-overlay { padding: 40px 18px; }
  .mission-band p { font-size: 16px; }
  .clients-overlay { padding: 40px 18px; }
  .services, .clients-teaser, .cta-band {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-band .cta-inner { flex-direction: column; align-items: flex-start; }
  .atl-logo-track { gap: 48px; }
  
  .site-footer nav { gap: 4px 10px; }
  .site-footer { padding: 28px 16px calc(24px + 56px + env(safe-area-inset-bottom, 0px)); }
}

/* Narrow phones */
@media screen and (max-width: 390px) {
  .logo-name { font-size: 15px; }
  .hero { min-height: 340px; }
  .hero-line { font-size: 1.4rem; }
}

@media print {
  .nav-toggle { display: none !important; }
  .site-header { position: static !important; }
  .atl-logo-track { animation: none; }
  a { text-decoration: none; }
}

/* Inner pages */
.page-hero {
  background: #111;
  color: #fff;
  padding: 56px 0 48px;
}
.page-hero-inner { text-align: left; }
.page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.page-lead {
  color: #bbb;
  max-width: 52ch;
  font-size: 17px;
}
.page-content { padding: 56px 0; }
.narrow-text { max-width: 760px; }
.lead-copy {
  font-size: 20px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink);
}
.narrow-text p { margin-bottom: 16px; color: var(--ink); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.value-card {
  background: var(--light);
  padding: 24px 20px;
  border-radius: 8px;
}
.value-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--red); }
.value-card p { font-size: 15px; color: var(--muted); margin: 0; }


.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  background: var(--light);
  padding: 28px 24px;
  border-radius: 8px;
}
.project-card h2 { font-size: 22px; margin-bottom: 8px; }
.project-card p { color: var(--muted); margin: 0; }

.client-name-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 24px 0 0;
  padding: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #222;
}
.client-name-list li {
  background: var(--light);
  padding: 12px 18px;
  border-radius: 6px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.contact-wrap { max-width: 720px; }
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  background: var(--light);
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 22px 20px;
  min-height: 44px;
  color: inherit;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.contact-card:hover { border-color: var(--red); background: #fff; }
.contact-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 700;
}
.contact-value {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  word-break: break-word;
}
.contact-hint { font-size: 13px; color: var(--muted); }
.contact-note p { margin-bottom: 14px; }
.region-note { font-size: 14px; color: var(--muted); }

@media screen and (max-width: 1023px) {
  .values-grid, .project-grid { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
}
@media screen and (max-width: 767px) {
  .page-hero { padding: 40px 0 36px; }
  .page-content { padding: 40px 0; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-value { font-size: 18px; }
}


/* Inner page layout */
.page-main { background: #fff; color: #222; }
.page-hero {
  background: #111;
  color: #fff;
  padding: 72px 24px 56px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin: 0 0 12px;
  color: #fff;
}
.page-hero p { color: #bbb; margin: 0 auto; max-width: 560px; }
.page-body {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  line-height: 1.65;
}
.page-body h2 { margin: 2rem 0 0.75rem; font-size: 1.35rem; }
.page-body p, .page-body li { color: #333; }
.page-body a { color: #c8102e; }
.venue-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px 20px;
}
.venue-list a {
  display: block;
  padding: 12px 14px;
  min-height: 44px;
  border: 1px solid #eee;
  border-radius: 6px;
  color: #222;
  text-decoration: none;
  font-size: 14px;
}
.venue-list a:hover { border-color: #c8102e; color: #c8102e; }
.contact-card {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}
.contact-card a { font-size: 18px; font-weight: 600; }

/* Sticky contact bar — always visible */
.atl-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: stretch;
  min-height: 48px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: #111;
  border-top: 4px solid var(--red, #c41230);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.28);
}
.atl-sticky-bar a {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 12px;
  text-decoration: none;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
}
.atl-sticky-phone {
  background: transparent;
}
.atl-sticky-phone:hover,
.atl-sticky-phone:focus {
  background: #1a1a1a;
  color: #fff;
}
.atl-sticky-email {
  background: #111;
  border-left: 1px solid #333;
}
.atl-sticky-email:hover,
.atl-sticky-email:focus {
  background: #1a1a1a;
  color: #fff;
}
@media screen and (max-width: 390px) {
  .atl-sticky-bar a { font-size: 13px; padding: 10px 8px; }
}


/* Clients feedback cards — equal size */
.feedback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
  align-items: stretch;
}
.feedback-card {
  display: flex;
  flex-direction: column;
  background: var(--light);
  border-radius: 10px;
  padding: 28px 24px 22px;
  min-height: 280px;
  box-sizing: border-box;
  border: 1px solid rgba(0,0,0,0.04);
}
.feedback-card .feedback-quote {
  flex: 1 1 auto;
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}
.feedback-card .feedback-quote::before {
  content: "“";
  color: var(--red);
  font-style: normal;
  font-weight: 700;
  font-size: 1.35em;
  line-height: 0;
  margin-right: 2px;
}
.feedback-card footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.feedback-card .feedback-name {
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #111;
  letter-spacing: 0.01em;
}
.feedback-card .feedback-role {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
@media (max-width: 720px) {
  .feedback-grid { grid-template-columns: 1fr; }
  .feedback-card { min-height: 0; }
}


/* Services detail — consistent iPhone/desktop alignment */
.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 32px;
  align-items: stretch;
}
.svc-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.svc-detail .icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 0 4px;
}
.svc-detail h2 {
  font-size: 20px;
  margin: 12px 0 10px;
  width: 100%;
  line-height: 1.25;
  min-height: 2.5em; /* keep title rows even in 2-col */
}
.svc-detail p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  width: 100%;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  .svc-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .svc-detail h2 { min-height: 0; font-size: 19px; }
  .svc-detail .icon { width: 52px; height: 52px; flex-basis: 52px; }
}

/* Venues hub — hotel of the month */
.hotel-of-month {
  margin: 0;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red, #c41230);
}
.hotel-of-month-venue {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  margin-bottom: 14px; /* extra space before next venue */
}
.hotel-of-month-venue a {
  font-weight: 700;
}

/* Starlink strip — 8% smaller than 15px base */
.atl-logo-track img[alt="Starlink"] {
  height: 13.8px !important;
  max-height: 13.8px !important;
}

/* About — company stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0 8px;
  padding: 28px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  text-align: center;
}
.about-stat-num {
  display: block;
  font-family: Montserrat, system-ui, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--red, #c41230);
}
.about-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
}
@media (max-width: 640px) {
  .about-stats { grid-template-columns: 1fr; gap: 24px; }
  .about-stat-num { font-size: 36px; }
}
