/* ================= STATIC PAGES (About, Contact, Privacy) ================= */

.static-page {
  background: #fff;
}

.static-page .navbar {
  background: #fff;
}

.static-page .navbar .nav-link {
  color: #000;
}

.static-page .navbar .nav-link:hover {
  color: #c9a24d;
}

/* Reset footer text so it stays white on dark bg */
.static-page .site-footer {
  color: rgba(255, 255, 255, 0.7);
}

.static-page .site-footer h4 {
  color: #fff;
}

.static-page .site-footer a {
  color: rgba(255, 255, 255, 0.5);
}

.static-page .site-footer a:hover {
  color: #c9a24d;
}

.static-page .site-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.3);
}

/* ================= PAGE CONTENT ================= */

.page-content {
  padding-top: 160px;
  padding-bottom: 110px;
  color: #000;
}

.page-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #c9a24d;
  margin-bottom: 18px;
}

.page-title {
  margin: 0 0 20px;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.1;
  font-weight: 700;
}

/* Thin gold rule under the title */
.page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #c9a24d;
  margin-top: 28px;
}

.page-body {
  margin-top: 36px;
}

.page-body p {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
}

.page-body h2 {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 44px 0 16px;
  color: #000;
  position: relative;
  padding-bottom: 10px;
}

.page-body h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1.5px;
  background: #c9a24d;
}

.page-body ul {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}

.page-body li {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.page-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border: 1px solid #c9a24d;
  border-radius: 50%;
}

.page-body a {
  color: #c9a24d;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 77, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-body a:hover {
  color: #000;
  border-color: #000;
}

.page-body a.page-btn {
  transition: background 0.25s ease, transform 0.25s ease;
}

.page-body a.page-btn:hover {
  background: #b8912e;
  color: #111 !important;
  border-color: transparent;
  transform: translateY(-2px);
}

.page-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 38px;
  background: #c9a24d;
  color: #111 !important;
  text-decoration: none !important;
  border: none !important;
  border-bottom: none !important;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease;
}

.page-btn:hover {
  background: #b8912e;
  transform: translateY(-2px);
  color: #111 !important;
}

.page-body em {
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
}

.page-body strong {
  font-weight: 600;
  color: #000;
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .page-content {
    padding-top: 110px;
    padding-bottom: 72px;
  }

  .page-inner {
    padding: 0 16px;
  }

  .page-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .page-body p,
  .page-body li {
    font-size: 14px;
  }

  .page-btn {
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }
}

/* ================= 404 PAGE ================= */

.page-404 {
  text-align: center;
  padding-top: 40px;
}

.page-404 .page-title {
  margin-bottom: 24px;
}

.page-404-body {
  font-size: 14px;
  color: #555;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 36px;
}

.page-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-btn--dark {
  background: #000;
  color: #fff !important;
}

/* ================= SKIP LINK ================= */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: #c9a24d;
  color: #000;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}
