/* =========================================================
   JOURNAL PAGE
   ========================================================= */

.journal-page {
  background: #000;
  color: #fff;
  overflow: hidden;
}

.journal-container {
  width: min(1180px, calc(100% - 4rem));
  margin: 0 auto;
}

/* =========================================================
   JOURNAL HERO
   ========================================================= */

.journal-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.journal-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #000;
}

.journal-content {
  position: relative;
  z-index: 2;
  width: min(700px, 100%);
  margin: 0 auto;
  text-align: center;
}

/* Eyebrow */

.journal-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--c-gold);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.journal-eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--c-gold);
}

/* Title */

.journal-title {
  display: flex;
  flex-direction: column;
  gap: 0.18em;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.journal-title span {
  display: block;
}

/* Description */

.journal-description {
  width: min(560px, 100%);
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

/* Button */

.journal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 230px;
  min-height: 46px;
  margin-top: 2.2rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--c-red);
  border-radius: 7px;
  background: var(--c-red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.journal-button svg {
  flex: 0 0 auto;
}

.journal-button:hover {
  background: #9f1002;
  border-color: #9f1002;
  transform: translateY(-2px);
}

.journal-button:active {
  transform: translateY(0);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .journal-container {
    width: min(720px, calc(100% - 2.5rem));
  }

  .journal-hero {
    min-height: calc(100vh - 68px);
  }

  .journal-content {
    width: min(620px, 100%);
  }

  .journal-title {
    font-size: clamp(4rem, 10vw, 6.5rem);
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 560px) {
  .journal-container {
    width: calc(100% - 2rem);
  }

  .journal-hero {
    min-height: calc(100svh - 64px);
  }

  .journal-content {
    width: 100%;
  }

  .journal-eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.62rem;
  }

  .journal-title {
    gap: 0.22em;
    font-size: clamp(3.5rem, 17vw, 5rem);
    line-height: 0.84;
  }

  .journal-description {
    max-width: 330px;
    margin-top: 1.6rem;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .journal-button {
    width: min(100%, 280px);
    margin-top: 1.8rem;
  }
}
