/* HIGHLINE — ORIGINAL HTML BANNER
   Source: liveathighline.com, main banner only.
   Kept separate so the new blue page's design is unaffected.
   All copy and image paths are editable in #old-banner in index.html. */
@font-face {
  font-family: "Highline Jost";
  src: url("assets/old-banner/jost-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Highline Jost";
  src: url("assets/old-banner/jost-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Highline Jost";
  src: url("assets/old-banner/jost-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --old-banner-pink: #ec008c;
  --old-banner-yellow: #fff200;
  --old-banner-font: "Highline Jost", Arial, sans-serif;
}
/* 01 — FULL-SCREEN OPENING: no screenshot, no letterboxing. */
.old-banner {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 20;
  overflow: hidden;
  background: var(--old-banner-pink);
  color: #fff;
  font-family: var(--old-banner-font);
}
html.intro-opening .old-banner {
  display: block;
}
.old-banner-header {
  position: absolute;
  inset: 16px 5% auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.old-banner-logo {
  flex-shrink: 0;
  width: 180px;
}
.old-banner-logo img {
  width: 100%;
  height: auto;
}
.old-banner-nav {
  display: flex;
  gap: 16px;
}
.old-banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  background: var(--old-banner-yellow);
  color: #000;
  text-decoration: none;
  font: 500 1.2rem/1 var(--old-banner-font);
}
.old-banner-faq {
  border-color: #fff;
  background: transparent;
  color: #fff;
}
.old-banner-button:hover {
  background: #fff;
  color: #000;
}
/* 02 — DESKTOP: tower left, HTML heading and offer right. */
.old-banner-building {
  position: absolute;
  left: 8%;
  bottom: -20%; 
  width: 42%;
  max-width: none;
  height: auto;
}
.old-banner-copy {
  position: absolute;
  top: 20.3%;
  left: 60.5%;
  width: 35.5%;
  z-index: 1;
}
.old-banner-heading {
  color: var(--old-banner-yellow);
  margin: 0;
  font: 700 6.8rem/6.2rem var(--old-banner-font);
  letter-spacing: 0;
}
.old-banner-offer {
  margin: 28px 0 0;
  color: #fff;
  text-transform: uppercase;
  font: 400 2rem/2.6rem var(--old-banner-font);
}
.old-banner-tagline {
  margin: 24px 0 0;
  color: #fff;
  font: 400 1.2rem/1.8rem var(--old-banner-font);
}
/* 03 — TABLET: maintain the two-column banner until portrait mobile. */
@media (min-width: 701px) and (max-width: 1000px) {
  .old-banner-copy {
    left: 56%;
    width: 40%;
    top: 22%;
  }
  .old-banner-heading {
    font-size: 5.4rem;
    line-height: 5rem;
  }
  .old-banner-offer {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  .old-banner-tagline {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .old-banner-heading {
    font-size: 8.5rem;
    line-height: 7.8rem;
  }
  .old-banner-offer {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
/* 04 — MOBILE: matches the tall, stacked reference; the tower enters below copy. */
@media (max-width: 700px) {
  .old-banner-header {
    inset: 16px 12px auto;
    gap: 12px;
  }
  .old-banner-logo {
    width: 140px;
  }
  .old-banner-nav {
    gap: 10px;
  }
  .old-banner-button {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-height: 38px;
  }
  .old-banner-copy {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 0 8% 0 10%;
    padding-top: max(140px, 25.3vh);
    padding-top: max(140px, 25.3svh);
  }
  .old-banner-heading {
    font-size: 6.8rem;
    line-height: 6rem;
  }
  .old-banner-offer {
    margin-top: 26px;
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .old-banner-tagline {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6rem;
  }
  .old-banner-building {
    position: relative;
    left: auto;
    bottom: auto;
    width: 76%;
    margin: 40px auto 0;
  }
}
@media (max-width: 359px) {
  .old-banner-logo {
    width: 115px;
  }
  .old-banner-header {
    gap: 8px;
  }
  .old-banner-nav {
    gap: 6px;
  }
  .old-banner-button {
    padding-inline: 12px;
    font-size: 0.8rem;
  }
  .old-banner-heading {
    font-size: 5.8rem;
    line-height: 5.2rem;
  }
  .old-banner-offer {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
}
/* Short landscape screens: protect the desktop offer from clipping. */
@media (min-width: 701px) and (max-height: 650px) {
  .old-banner-copy {
    top: 18%;
  }
  .old-banner-heading {
    font-size: 5rem;
    line-height: 4.6rem;
  }
  .old-banner-offer {
    margin-top: 18px;
    font-size: 1.5rem;
    line-height: 1.9rem;
  }
  .old-banner-tagline {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
