html, body {
  min-height: 100vh;
}
body {
  background-color: #0d0e0f;
  background-image:
    radial-gradient(1100px 600px at 50% 0%, rgba(255, 140, 0, 0.08), transparent 60%),
    linear-gradient(180deg, #1a1c1c 0%, #121414 35%, #0d0e0f 100%);
  background-attachment: fixed;
}

/* Global H2 / H3 sizing — H2 is bold and 1.5x H3 */
main h2,
section h2 {
  font-size: 1.875rem !important; /* 30px mobile */
  font-weight: 700 !important;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media (min-width: 640px) {
  main h2,
  section h2 {
    font-size: 2.25rem !important; /* 36px desktop */
  }
}
main h3,
section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
@media (min-width: 640px) {
  main h3,
  section h3 {
    font-size: 1.5rem; /* 24px desktop, 36/24 = 1.5x ratio */
  }
}

/* Brand-orange nav bar */
.brand-nav {
  background:
    linear-gradient(90deg, rgba(255, 140, 0, 0.95) 0%, rgba(251, 184, 0, 0.92) 50%, rgba(255, 140, 0, 0.95) 100%);
  border-bottom: 1px solid rgba(255, 220, 195, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 1px 0 rgba(255, 255, 255, 0.15) inset;
}
.brand-nav .nav-link {
  color: rgba(0, 0, 0, 0.82);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.brand-nav .nav-link:hover {
  color: #ffffff;
}
.brand-nav .nav-link.active {
  color: #ffffff;
  border-bottom: 2px solid rgba(0, 0, 0, 0.5);
  padding-bottom: 4px;
}
.brand-nav .nav-dropdown > button.nav-link {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
.brand-nav .mobile-menu-btn {
  color: rgba(0, 0, 0, 0.85);
}
.brand-nav .mobile-panel {
  background: rgba(20, 12, 0, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.brand-nav .mobile-panel a {
  color: #ffe7d0;
}
.brand-nav .mobile-panel a:hover {
  color: #ffffff;
}
.brand-nav .mobile-panel summary {
  color: #ffe7d0;
  list-style: none;
}
.brand-nav .mobile-panel summary::-webkit-details-marker { display: none; }
.brand-nav .mobile-panel details[open] > summary .material-symbols-outlined { transform: rotate(180deg); }
.brand-nav .mobile-panel .material-symbols-outlined { transition: transform 0.2s; }

/* Desktop dropdown panels */
.nav-dropdown { position: relative; }
.nav-dropdown > button { background: transparent; border: 0; cursor: pointer; padding: 0; }
.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  min-width: 240px;
  background: rgba(13, 14, 15, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  padding: 0.4rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
  z-index: 60;
}
.nav-dropdown:hover > .nav-dropdown-panel,
.nav-dropdown:focus-within > .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0s;
}
.nav-dropdown-panel a {
  color: #e5e5e5;
  font-weight: 500;
}
.nav-dropdown-panel a:hover {
  color: #ffffff;
  background: rgba(255, 140, 0, 0.12);
}
.glass-card {
  background: rgba(43, 28, 20, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
#introCopy { transition: max-height 0.3s ease; }
#introWrap.intro-collapsed #introCopy { max-height: 8rem; overflow: hidden; }
#introWrap:not(.intro-collapsed) #introFade { display: none; }
#introWrap.intro-collapsed .show-less-label { display: none; }
#introWrap:not(.intro-collapsed) .show-more-label { display: none; }
#introWrap:not(.intro-collapsed) .intro-icon { transform: rotate(180deg); }
.intro-icon { transition: transform 0.2s ease; }
.glow-orange {
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.2);
}
.gold-shimmer {
  background: linear-gradient(90deg, #ff8c00 0%, #fbb800 50%, #ff8c00 100%);
  background-size: 200% auto;
}
.prose-luxe {
  color: #ddc1ae;
  line-height: 1.7;
}
.prose-luxe h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 16px;
}
.prose-luxe h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
}
.prose-luxe p {
  margin-bottom: 16px;
}
.prose-luxe ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.prose-luxe ul li {
  margin-bottom: 8px;
}
.prose-luxe a {
  color: #ffb77d;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.prose-luxe a:hover {
  color: #ff8c00;
}
.prose-luxe strong {
  color: #ffffff;
}
