.page {
  background: var(--color-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ──────────────────────────────────── */
.page__header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 2rem 32px;
  border-bottom: 1px solid #1a1a1a;
}

.page__logo {
  width: 140px;
}

/* ── Content ─────────────────────────────────── */
.page__content {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 64px 2rem 80px;
  flex: 1;
}

.page__title {
  font-family: var(--font-heading);
  font-size: 47px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 12px;
}

.page__updated {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-transform: none;
  margin-bottom: 48px;
}

.page__body h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-top: 40px;
  margin-bottom: 12px;
}

.page__body h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  text-transform: none;
  margin-top: 24px;
  margin-bottom: 8px;
}

.page__body p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-transform: none;
  line-height: 1.7;
  margin-bottom: 16px;
}

.page__body ul {
  list-style: none;
  margin-bottom: 16px;
}

.page__body ul li {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-transform: none;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
}

.page__body ul li::before {
  content: '—';
  color: var(--color-brand);
  position: absolute;
  left: 0;
}

.page__body a {
  color: var(--color-brand);
  text-decoration: none;
}

.page__body a:hover {
  text-decoration: underline;
}

/* ── Footer ──────────────────────────────────── */
.page__footer {
  text-align: center;
  padding: 32px 2rem;
  border-top: 1px solid #1a1a1a;
}

.page__back {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-decoration: none;
  text-transform: none;
  transition: color 0.2s;
}

.page__back:hover {
  color: var(--color-brand);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .page__title {
    font-size: 32px;
  }

  .page__content {
    padding: 40px 1.5rem 60px;
  }
}

/* ── Link Tree ───────────────────────────────── */
.linktree {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
}

.linktree__bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  z-index: 0;
}

.linktree__overlay {
  display: none;
}

.linktree__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 2rem 80px;
}

.linktree__logo {
  width: 160px;
  margin-bottom: 24px;
}

.linktree__subtitle {
  font-family: var(--font-body);
  font-size: 28px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-transform: none;
  letter-spacing: 2px;
  margin-bottom: 48px;
}

.linktree__links {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.linktree__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #ffffff;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.linktree__btn i {
  font-size: 20px;
  flex-shrink: 0;
}

.linktree__btn:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--color-text);
}

.linktree__booking {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.linktree__booking-label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.linktree__booking-icon {
  font-size: 28px;
  color: var(--color-brand);
}

.linktree__booking-email {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  text-transform: none;
  transition: color 0.2s;
}

.linktree__booking-email:hover {
  color: var(--color-brand);
}

/* ── Press Kit ───────────────────────────────── */
.presskit {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
}

.presskit__bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  z-index: 0;
}

.presskit__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 2rem 80px;
}

.presskit__logo {
  width: 160px;
  margin-bottom: 16px;
}

.presskit__tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  text-transform: none;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.presskit__title {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 20px;
}

.presskit__downloads {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 48px;
}

.presskit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 640px;
}

.presskit__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border: 2px solid #ffffff;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.2s, border-color 0.2s;
}

.presskit__btn:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.presskit .footer {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .presskit__title {
    font-size: 52px;
  }

  .presskit__grid {
    grid-template-columns: 1fr;
  }

  .presskit__inner {
    padding: 48px 1.5rem 64px;
  }
}

.linktree .footer {
  position: relative;
  z-index: 2;
}

/* ── 404 Error Page ───────────────────────────── */
.page__content--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50vh;
}

.error__code {
  font-family: var(--font-heading);
  font-size: 160px;
  font-weight: 900;
  color: var(--color-brand);
  line-height: 1;
  letter-spacing: 8px;
  margin-bottom: 8px;
}

.error__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 24px;
}

.error__message {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-secondary);
  text-transform: none;
  line-height: 1.6;
  margin-bottom: 48px;
  max-width: 420px;
}

@media (max-width: 768px) {
  .error__code { font-size: 100px; }
  .error__title { font-size: 22px; letter-spacing: 3px; }
}

@media (max-width: 768px) {
  .linktree__inner {
    padding: 48px 1.5rem 64px;
  }

  .linktree__logo {
    width: 130px;
  }

  .linktree__subtitle {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .linktree__btn {
    font-size: 15px;
    padding: 16px 20px;
  }

  .linktree__booking {
    margin-top: 36px;
  }
}
