@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;0,700&display=swap');

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #000;
}

/* HERO */
.hero {
  position: relative;
  height: 100svh;
  background: url("img/image-tgb.jpg") center 20% / cover no-repeat;
  opacity: 0.6;
}

/* CENTER CONTENT */
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* TYPOGRAPHY */
h1.main {
  font-family: 'Spectral', serif;
  font-size: 64px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
}

.sub {
  margin-top: 12px;
  font-family: 'Spectral', serif;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  opacity: 0.85;
}

/* FOOTER MARK */
.hero-footer {
  position: absolute;
  bottom: 36px;
  width: 100%;
  text-align: center;
}

.trifecta {
  width: 80px;
  height: auto;
  margin-bottom: 8px;
  opacity: 0.9;
}

.footer-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.75;
}

/* CTA BUTTON */
.cta-button {
    margin-top: 28px;
    padding: 10px 22px;
  
    font-family: 'IBM Plex Mono', monospace;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  
    color: #fff;
    text-decoration: none;
  
    border: 1px solid #fff;
    background: transparent;
  
    transition: all 0.25s ease;
  }
  
  /* Hover: very restrained */
  .cta-button:hover {
    background: rgba(255,255,255,0.08);
  }

  
/* ------------------------------
   MODAL STRUCTURE
--------------------------------*/
.modal-body {
    background: #000;
    color: #fff;
}

.modal-wrapper {
    width: 1028px;
    margin: 0 auto;
    padding: 60px 0 120px;
    position: relative;
}

/* ------------------------------
   STICKY HEADER BAR
--------------------------------*/
.modal-header-bar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;
    margin-bottom: 20px;

    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.modal-header-bar.scrolled {
    border-bottom-color: #222;
}

.modal-close {
    position: relative;
    top: 0;
    right: 0;
}

.modal-close img {
    width: 24px;
}

.modal-breadcrumb {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 1.5px;
}

/* ------------------------------
   MODAL CONTENT
--------------------------------*/
.modal-section-title {
    font-size: 46px;
    font-weight: 500;
    margin-bottom: 10px;
}

.modal-hr-small {
    width: 40px;
    border: none;
    border-bottom: 10px solid #fff;
    margin-bottom: 30px;
}

.modal-hr-big {
    width: 100%;
    border: none;
    border-bottom: 1px solid #fff;
    margin-top: 50px;
    margin-bottom: 50px;
}

.modal-content h1 {
    font-family: 'Spectral', serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgb(248, 192, 192);
}

.modal-content p {
    font-family: 'Spectral', serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgb(248, 192, 192);
}

.modal-content ul,
.modal-bullets {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0;
    margin-left: 0;
}

.modal-content a {
    color: #fff;
    text-decoration: underline;   /* underline always ON */
}

.modal-quote {
    font-size: 62px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 60px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    background-position: center center;
  }

  h1.main {
    font-size: 36px;
  }

  .sub {
    font-size: 18px;
  }

  .hero-footer {
    bottom: 28px;
  }

  .trifecta {
    width: 30px;
  }

  .modal-wrapper {
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

}