.qrt-page {
  --qrt-accent: #007b84;
  --qrt-accent-bright: #8de2e4;
  --qrt-gold: #e0a21b;
}

body.qrt-page {
  margin: 0;
  padding: 0;
  color: var(--group-text);
  background: var(--group-paper);
  font-family: var(--group-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.qrt-page a {
  color: var(--group-accent-dark);
  text-underline-offset: 3px;
}

.qrt-page a:hover {
  color: var(--qrt-accent);
}

.qrt-page a:focus-visible,
.qrt-page button:focus-visible {
  outline: 3px solid var(--qrt-gold);
  outline-offset: 3px;
}

.qrt-page .primary-nav a::after {
  background: var(--qrt-accent);
}

.qrt-page .primary-nav a:hover,
.qrt-page .primary-nav a.active,
.qrt-page .site-brand:hover,
.qrt-page .header-actions .icon-link:hover {
  color: var(--group-accent-dark);
}

.qrt-page #main {
  padding: 0;
}

.qrt-hero {
  position: relative;
  display: grid;
  min-height: 570px;
  overflow: hidden;
  align-items: center;
  color: #fff;
  background: #102d35;
}

.qrt-hero-image,
.qrt-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.qrt-hero-image {
  object-fit: cover;
  object-position: center;
}

.qrt-hero-shade {
  background: rgba(7, 28, 35, 0.48);
}

.qrt-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 72px;
}

.qrt-kicker {
  margin: 0 0 12px;
  color: var(--qrt-accent-bright);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.qrt-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #fff;
  font-family: var(--group-serif);
  font-size: 58px;
  font-weight: 700;
  line-height: 1.06;
}

.qrt-lead {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.58;
}

.construction-status {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  max-width: 720px;
  gap: 13px;
  align-items: start;
  margin-top: 34px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.construction-status > i {
  margin-top: 5px;
  color: var(--qrt-gold);
  font-size: 17px;
}

.construction-status p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.construction-status strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 16px;
}

.qrt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.qrt-page .qrt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
}

.qrt-page .qrt-button-primary {
  color: #fff;
  background: var(--qrt-accent);
  border-color: var(--qrt-accent);
}

.qrt-page .qrt-button-primary:hover {
  color: #fff;
  background: #06919b;
  border-color: #06919b;
}

.qrt-page .qrt-button-secondary {
  color: #fff;
  background: rgba(10, 32, 38, 0.38);
  border-color: rgba(255, 255, 255, 0.62);
}

.qrt-page .qrt-button-secondary:hover {
  color: var(--group-ink);
  background: #fff;
  border-color: #fff;
}

.qrt-page .footer-links a {
  color: rgba(255, 255, 255, 0.9);
}

.qrt-page .footer-links a:hover {
  color: #fff;
}

.qrt-direction {
  padding: 62px 0 66px;
  background: var(--group-paper);
  border-bottom: 1px solid var(--group-line);
}

.qrt-direction-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 40px 76px;
  align-items: start;
}

.qrt-direction h2 {
  max-width: 460px;
  margin: 0;
  color: var(--group-ink);
  font-family: var(--group-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
}

.qrt-direction-grid > p {
  max-width: 670px;
  margin: 4px 0 0;
  color: var(--group-muted);
  font-size: 17px;
  line-height: 1.72;
}

@media (max-width: 920px) {
  .qrt-direction-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 700px) {
  body.qrt-page {
    font-size: 15px;
  }

  .qrt-hero {
    min-height: 530px;
  }

  .qrt-hero-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .qrt-hero h1 {
    font-size: 44px;
  }

  .qrt-lead {
    font-size: 17px;
  }

  .qrt-direction {
    padding: 52px 0 56px;
  }

  .qrt-direction h2 {
    font-size: 29px;
  }

  .qrt-direction-grid > p {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  .qrt-hero {
    min-height: 560px;
  }

  .qrt-hero h1 {
    font-size: 38px;
  }

  .qrt-actions {
    display: grid;
  }

  .qrt-page .qrt-button {
    width: 100%;
  }
}

@media print {
  .qrt-hero-image,
  .qrt-hero-shade,
  .qrt-actions {
    display: none;
  }

  .qrt-hero {
    min-height: 0;
    color: #000;
    background: #fff;
  }

  .qrt-hero-content,
  .qrt-direction {
    padding: 24px 0;
  }

  .qrt-hero h1,
  .qrt-kicker,
  .qrt-lead,
  .construction-status p,
  .construction-status strong {
    color: #000;
  }
}
