:root {
  --bg: #07090d;
  --bg-soft: #0d1015;
  --card: #10141b;
  --line: rgba(255,255,255,0.13);
  --text: #f5f7fb;
  --muted: #d8dde6;
  --blue: #79d6ff;
  --blue-strong: #63c9ff;
  --red: #d41017;
  --shadow: 0 24px 80px rgba(0,0,0,0.4);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(39,57,92,0.18), transparent 30%), #080b10;
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip-link,.sr-only { position:absolute; width:1px; height:1px; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); }
.container { width: min(100% - 3.2rem, 1500px); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7,9,13,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
}
.nav-shell { min-height: 6.2rem; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; }
.brand-logo { width: 230px; height: auto; }
.site-nav { display: flex; justify-content: center; gap: 3rem; }
.site-nav a {
  position: relative; font-weight: 600; color: #fff; font-size: 1.1rem;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--blue); }
.site-nav a:hover::after, .site-nav a.is-active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -0.7rem; height: 2px; background: var(--blue);
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display:block; width: 1.5rem; height: 2px; margin: 0.28rem 0; background: #fff; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 3.8rem;
  padding: 0.95rem 2rem; border: 1px solid var(--line); text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.06em; font-size: 1.18rem; font-weight: 700;
  transition: .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary, .nav-book { background: var(--blue); color: #071018; border-color: transparent; }
.button-secondary, .button-outline { background: transparent; color: #fff; }
.nav-book { min-width: 170px; }
.hero {
  position: relative; min-height: 780px; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-media, .hero-overlay { position: absolute; inset: 0; }
.hero-media {
  background: linear-gradient(90deg, rgba(7,9,13,0.92) 0%, rgba(7,9,13,0.72) 28%, rgba(7,9,13,0.28) 56%, rgba(7,9,13,0.18) 100%), url('/assets/images/hero-chicago-night.webp') center center / cover no-repeat;
}
.hero-overlay { background: linear-gradient(180deg, rgba(7,9,13,0.08), rgba(7,9,13,0.25)); }
.hero-grid { position: relative; z-index: 1; min-height: 780px; display: grid; align-items: center; }
.hero-grid-home { min-height: 700px; }
.hero-copy { max-width: 640px; padding: 4rem 0 3rem; }
.stars {
  color: var(--red); font-size: 2rem; letter-spacing: 0.55rem; margin-bottom: 1rem; font-family: 'Bebas Neue', sans-serif;
}
.hero h1, .page-title {
  margin: 0 0 1rem; font-family: 'Bebas Neue', sans-serif; font-size: clamp(5rem, 9vw, 8.3rem);
  line-height: 0.9; letter-spacing: 0.02em; text-transform: uppercase; max-width: 8ch; text-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.hero p, .page-lead { max-width: 560px; margin: 0; color: #eef2f7; font-size: 1.6rem; line-height: 1.45; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.section { padding: 2.2rem 0 0; }
.section-title-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.section-title-row h2 {
  margin: 0; text-transform: uppercase; color: var(--blue); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.08em; font-size: clamp(1.65rem, 3vw, 2.45rem);
}
.rule { height: 1px; background: rgba(255,255,255,0.13); }
.route-grid, .services-grid, .results-grid, .quote-form-shell, .featured-services-grid {
  display: grid; gap: 1rem;
}
.route-grid, .featured-services-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.route-card, .service-card, .result-card, .quote-placeholder-card, .page-side-cta, .featured-service-card {
  background: linear-gradient(180deg, rgba(17,21,28,0.98), rgba(10,13,18,0.98));
  border: 1px solid rgba(255,255,255,0.14); box-shadow: var(--shadow);
}
.route-card, .featured-service-card { padding: 1.5rem; }
.route-eyebrow, .mini-label {
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Barlow Condensed', sans-serif; font-size: 1.12rem; margin: 0 0 0.55rem;
}
.route-card h3, .service-card h3, .result-card h3, .site-footer h3, .quote-placeholder-card h2, .booking-card h3, .featured-service-card h3 {
  margin: 0 0 0.55rem; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 2rem; line-height: 0.95; letter-spacing: 0.04em;
}
.route-card p, .service-card p, .quote-placeholder-card p, .featured-service-card p { color: #e3e8ef; line-height: 1.5; }
.featured-services-home { padding-top: 1.6rem; }
.featured-service-card {
  display: flex;
  flex-direction: column;
}
.featured-service-card--photo,
.featured-service-card--single-photo { overflow: hidden; }
.featured-service-image,
.featured-service-compare figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.featured-service-image {
  margin: -1.5rem -1.5rem 1.15rem;
}
.featured-service-image img,
.featured-service-compare img {
  width: 100%;
  aspect-ratio: 0.88 / 1;
  object-fit: cover;
}
.featured-service-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.55rem;
  margin: -1.5rem -1.5rem 1.15rem;
}
.featured-service-compare figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  background: rgba(7,9,13,0.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.35rem 0.65rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.featured-service-copy {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  flex: 1;
}
.featured-service-summary {
  margin: 0;
  color: #d6deea;
  line-height: 1.62;
  max-width: 34ch;
}
.text-link, .footer-link { color: var(--blue) !important; font-weight: 700; }
.services-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.services-grid-page { margin-bottom: 1rem; }
.services-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.services-overview-card,
.services-detail-panel {
  background: linear-gradient(180deg, rgba(17,21,28,0.98), rgba(10,13,18,0.98));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: var(--shadow);
}
.services-overview-card {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}
.services-overview-card h2 {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}
.services-overview-card > p:last-of-type {
  margin: 0;
  color: #d7dfeb;
  line-height: 1.65;
}
.services-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.service-card {
  overflow: hidden;
}
.service-card img { width: 100%; aspect-ratio: 1.05 / 0.72; object-fit: cover; }
.service-card-body { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; padding: 1rem; align-items: start; }
.service-card--compare .service-card-compare {
  margin: 0;
}
.service-icon {
  width: 3.1rem; height: 3.1rem; border-radius: 50%; background: var(--blue); color: #071018; display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0;
}
.services-detail-panel {
  padding: 1.5rem;
}
.services-list-title-row {
  margin-bottom: 1rem;
}
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.9rem;
}
.service-detail-item {
  padding: 1.05rem 1.1rem;
  background: rgba(8, 12, 18, 0.82);
  border: 1px solid rgba(255,255,255,0.1);
}
.service-detail-item h3 {
  margin: 0 0 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--blue);
}
.service-detail-item p {
  margin: 0;
  color: #d6deea;
  line-height: 1.58;
}
.results-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.results-grid-page { margin-bottom: 1rem; }
.result-card img { width: 100%; aspect-ratio: 1.3 / 0.75; object-fit: cover; }
.result-card--compare {
  overflow: hidden;
}
.result-compare {
  margin: 0;
}
.result-card h3 { text-align: center; color: var(--blue); padding: 0.8rem 0 0.9rem; margin: 0; }
.page-hero-simple { padding: 4.5rem 0 0.8rem; }
.page-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: end; }
.page-title { font-size: clamp(3.4rem, 6vw, 5.7rem); max-width: 10ch; }
.page-lead { font-size: 1.15rem; max-width: 45rem; }
.page-side-cta { padding: 1.3rem; display: grid; gap: 0.9rem; min-width: 280px; }
.quote-section { padding-bottom: 0.4rem; }
.quote-panel {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1rem; align-items: center; padding: 1.5rem; background: linear-gradient(180deg, rgba(17,21,28,0.98), rgba(10,13,18,0.98)); border: 1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow);
}
.quote-panel h2, .booking-copy h2 {
  margin: 0 0 1rem; font-size: clamp(3rem, 4vw, 4.7rem); line-height: 0.95; font-family: 'Inter', sans-serif; letter-spacing: -0.04em;
}
.quote-actions { display: grid; gap: 1rem; align-content: center; }
.quote-note, .booking-note, .quote-note-strong { color: #cdd6e1; font-size: 0.98rem; line-height: 1.5; }
.quote-note-tight { margin: -0.35rem 0 0; }
.quote-inline-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.quote-inline-link:hover { text-decoration: underline; }
.quote-form-shell { grid-template-columns: repeat(2, minmax(0,1fr)); margin-bottom: 1rem; }
.quote-placeholder-card { padding: 1.5rem; }
.quote-placeholder-card-dark { background: linear-gradient(180deg, rgba(11,16,24,1), rgba(7,10,15,1)); }
.quote-form-card { display: grid; gap: 1rem; }
.quote-form { display: grid; gap: 1.2rem; }
.form-grid { display: grid; gap: 1rem; }
.form-grid-two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.form-field { display: grid; gap: 0.5rem; }
.form-field-wide { grid-column: 1 / -1; }
.form-field span {
  color: #ebf0f7;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5,8,13,0.88);
  color: #f4f8fc;
  padding: 0.95rem 1rem;
  font: inherit;
  border-radius: 0.18rem;
}
.form-field select { appearance: none; }
.form-field input[type="file"] {
  padding: 0.85rem 1rem;
  background: rgba(9,13,19,0.96);
}
.form-field input[type="file"]::file-selector-button {
  border: 0;
  margin-right: 0.9rem;
  padding: 0.72rem 1rem;
  border-radius: 0.16rem;
  background: #203246;
  color: #f4f8fc;
  font-weight: 700;
  cursor: pointer;
}
.form-field textarea { resize: vertical; min-height: 9rem; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #95a3b8; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(121,214,255,0.8);
  box-shadow: 0 0 0 3px rgba(121,214,255,0.12);
}
.quote-form-actions { display: grid; gap: 0.85rem; }
.quote-contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  align-items: center;
  color: #d6dce5;
}
.quote-contact-strip a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.quote-contact-strip a:hover { text-decoration: underline; }
.form-status {
  display: none;
  gap: 0.45rem;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 1.05rem;
  border-radius: 0.2rem;
}
.form-status.is-visible { display: grid; }
.form-status-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-status-message { margin: 0; }
.form-status.is-loading {
  background: rgba(16,20,27,0.9);
  border-color: rgba(121,214,255,0.24);
}
.form-status.is-success {
  background: rgba(12,30,22,0.92);
  border-color: rgba(89,209,143,0.4);
}
.form-status.is-error {
  background: rgba(42,15,18,0.92);
  border-color: rgba(255,98,121,0.34);
}
.quote-checklist, .booking-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.quote-checklist li, .booking-steps li {
  position: relative; padding-left: 2.6rem; color: #ebf0f7; font-size: 1.05rem; line-height: 1.45;
}
.quote-checklist li::before, .booking-steps li::before { content: '○'; position: absolute; left: 0; top: -0.05rem; color: var(--blue); font-size: 1.9rem; font-weight: 700; }
.booking-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 1.35rem; align-items: stretch; }
.booking-copy {
  background: linear-gradient(180deg, rgba(17,21,28,0.98), rgba(10,13,18,0.98)); border: 1px solid rgba(255,255,255,0.12); padding: 2rem 2rem 2.2rem; box-shadow: var(--shadow);
}
.booking-card {
  background: #fbfcfe; color: #0f1725; padding: 1.4rem; border-radius: 0.25rem; box-shadow: 0 25px 70px rgba(0,0,0,0.3); border: 1px solid rgba(17,24,39,0.08);
}
.booking-card--embed { display: grid; gap: 1rem; }
.booking-card-heading { display: grid; gap: 0.35rem; }
.booking-brand { margin: 0; font-size: 0.92rem; color: #4a5668; }
.booking-embed-copy { margin: 0; color: #4b5563; line-height: 1.5; }
.booking-embed-shell {
  min-height: 760px;
  border: 1px solid #d7e3ef;
  background: #fff;
}
.booking-embed-frame {
  min-height: 760px;
}
.booking-embed-frame iframe {
  width: 100%;
  min-height: 760px;
  border: 0;
}
.booking-embed-frame.is-hidden { display: none; }
.booking-embed-fallback[hidden] { display: none !important; }
.booking-embed-fallback {
  display: grid;
  justify-items: start;
  gap: 1rem;
  padding: 1rem 0 0;
  text-align: left;
}
.booking-embed-fallback p { margin: 0; color: #334155; max-width: 32rem; }
.trust-band { padding: 1.2rem 0 0; }
.trust-grid {
  display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:1rem; border-top:1px solid rgba(255,255,255,0.08); border-bottom:1px solid rgba(255,255,255,0.08); padding: 1.35rem 0; text-align:center;
}
.trust-grid div { display:grid; gap:0.18rem; }
.trust-grid strong {
  font-family:'Barlow Condensed', sans-serif; text-transform:uppercase; color:#eef4fb; letter-spacing:0.06em; font-size:1.45rem;
}
.trust-grid span { color:#c8d0db; }
.site-footer { padding: 1.6rem 0 0.6rem; }
.footer-grid { display:grid; grid-template-columns: 1.2fr 0.8fr 0.9fr 0.7fr; gap: 2rem; align-items:start; }
.footer-logo { width: 140px; height: auto; margin-bottom: 0.75rem; }
.site-footer p, .site-footer li, .site-footer a { color:#d6dce5; }
.site-footer ul { list-style:none; padding:0; margin:0; display:grid; gap:0.45rem; }
.socials { display:flex; gap:0.7rem; }
.socials span {
  width: 2.8rem; height: 2.8rem; border:1px solid rgba(255,255,255,0.18); display:grid; place-items:center; font-weight:700;
}
.socials-text span { width: auto; min-width: 4rem; padding: 0 0.75rem; }
.footer-bottom { padding-top: 1.4rem; }
.footer-bottom p { margin: 0; border-top:1px solid rgba(255,255,255,0.08); padding-top:1rem; color:#b8c2cf; }
@media (max-width: 1180px) {
  .route-grid, .services-grid, .featured-services-grid, .services-proof-grid, .services-detail-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .results-grid, .booking-grid, .footer-grid, .quote-form-shell, .quote-panel, .page-hero-grid, .services-page-layout { grid-template-columns: 1fr; }
  .booking-embed-shell,
  .booking-embed-frame,
  .booking-embed-frame iframe,
  .booking-embed-fallback { min-height: 700px; }
}
@media (max-width: 920px) {
  .nav-shell { grid-template-columns: auto auto; }
  .site-nav {
    display:none; position:absolute; top: calc(100% + 0.5rem); left:1rem; right:1rem; background:#0a0e14; border:1px solid rgba(255,255,255,0.1); padding:1rem; flex-direction:column; gap:1rem; box-shadow: var(--shadow);
  }
  .site-nav.is-open { display:flex; }
  .nav-toggle { display:block; justify-self:end; }
  .nav-book { display:none; }
  .hero { min-height: 620px; }
  .hero-grid { min-height: 620px; }
  .hero-copy { padding-top: 3rem; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 1.2rem, 1500px); }
  .brand-logo { width: 168px; }
  .hero h1, .page-title { font-size: clamp(3.35rem, 15vw, 5.6rem); }
  .hero p, .page-lead { font-size: 1.05rem; max-width: 27rem; }
  .hero-actions, .route-grid, .services-grid, .featured-services-grid, .results-grid, .trust-grid, .quote-form-shell, .services-proof-grid, .services-detail-grid { grid-template-columns: 1fr; }
  .hero-actions { display:grid; }
  .route-grid, .services-grid, .results-grid, .trust-grid, .services-proof-grid, .services-detail-grid { gap: 0.85rem; }
  .form-grid-two { grid-template-columns: 1fr; }
  .featured-service-image,
  .featured-service-compare {
    margin-left: -1.4rem;
    margin-right: -1.4rem;
  }
  .featured-service-copy { gap: 0.45rem; }
  .featured-service-summary { max-width: none; font-size: 0.98rem; line-height: 1.55; }
  .route-card h3, .service-card h3, .result-card h3, .site-footer h3, .quote-placeholder-card h2, .booking-card h3, .featured-service-card h3 { font-size: 1.65rem; }
  .booking-copy, .quote-panel, .quote-placeholder-card { padding: 1.4rem; }
  .quote-panel h2, .booking-copy h2 { font-size: 2.5rem; }
  .booking-embed-shell,
  .booking-embed-frame,
  .booking-embed-frame iframe,
  .booking-embed-fallback { min-height: 620px; }
}
