/* Cinematic Luxury Theme - Perfume Advisor */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg-color: #050505;
  --bg-gradient: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #050505 100%);
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0a0;
  /* Brass Gold — primary brand accent */
  --brass-gold: #D4AF37;
  --gold-primary: var(--brass-gold);
  --gold-highlight: #F4D03F;
  --gold-dim: #8a7020;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;
  
  --transition-speed: 0.8s;
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
  /* One radius + typography for in-app experience CTAs (journeys, new journey, aligned with results footer) */
  --experience-btn-radius: 8px;
  /* Cards on journeys / results perfume grid */
  --experience-card-radius: 14px;
}

body {
  background: var(--bg-color);
  background-image: var(--bg-gradient);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  opacity: 0; /* Starts hidden for JS fade-in */
  transition: opacity var(--transition-speed) ease-in-out;
  scroll-behavior: smooth;
}

body.loaded {
  opacity: 1;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Typography Enhancements */
.display-title {
  font-size: 3.5rem;
  font-weight: 400;
  background: linear-gradient(to right, #fff, #D4AF37, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.text-gold { color: var(--gold-primary) !important; }
.text-muted { color: var(--text-secondary) !important; }

/* Cinematic Containers */
.cinematic-container {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Cards */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 1px; /* Sharp, elegant corners */
  color: var(--text-primary);
  transition: transform 0.6s var(--ease-cinematic), box-shadow 0.6s var(--ease-cinematic);
}

.card:hover {
  /* Subtle lift */
  /* transform: translateY(-2px); Disabled per user request for inputs, kept for displays if needed */
  box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.4);
  border-color: rgba(212, 175, 55, 0.2);
}

.card-header {
  background: transparent;
  border-bottom: 1px solid var(--glass-border);
}

/* Inputs & Forms */
.form-control, .input-group-text {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  color: var(--gold-primary);
  border-radius: 0;
  padding: 1rem;
  transition: all 0.4s ease;
}

.form-control:focus {
  background: rgba(0, 0, 0, 0.4);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
  color: var(--gold-highlight);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-sans);
  letter-spacing: 1px;
}

.input-group-text {
  color: var(--text-secondary);
  border-right: none;
}

/* Buttons */
.btn-primary {
  background-color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  color: #000;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 30px;
  border-radius: var(--experience-btn-radius);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-cinematic);
}

.btn-primary:hover {
  background-color: var(--gold-highlight);
  border-color: var(--gold-highlight);
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-gold {
  background-color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  color: #000;
  font-family: var(--font-serif);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 30px;
  border-radius: var(--experience-btn-radius);
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-cinematic);
}

.btn-gold:hover {
  background-color: var(--gold-highlight);
  border-color: var(--gold-highlight);
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-outline-gold {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  border-radius: var(--experience-btn-radius);
  font-family: var(--font-serif);
  letter-spacing: 1px;
}

.btn-outline-gold:hover, .btn-check:checked + .btn-outline-gold {
  background-color: var(--gold-primary);
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Marketing site + in-app experience: unified rounded CTAs (Bootstrap .btn in main) */
.page-experience main .btn,
.page-static main .btn {
  border-radius: var(--experience-btn-radius) !important;
  font-family: var(--font-sans) !important;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}
.page-experience main .btn-sm,
.page-static main .btn-sm {
  padding: 0.65rem 1.35rem !important;
  font-size: 13px;
}
.page-experience main .btn-lg,
.page-static main .btn-lg {
  padding: 1rem 2.5rem !important;
  font-size: 14px;
}
.page-experience main .btn:not(.btn-sm):not(.btn-lg),
.page-static main .btn:not(.btn-sm):not(.btn-lg) {
  padding: 1rem 2.5rem !important;
  font-size: 14px;
}

.navbar-experience .nav-link {
  text-transform: capitalize;
}

/* --- Experience: Results page — footer CTA row (uses shared --experience-btn-radius) --- */
.results-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 576px) {
  .results-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/* Primary: Save Results — gold filled */
.results-btn-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: capitalize;
  background: linear-gradient(to right, var(--gold-primary), rgba(212, 175, 55, 0.85));
  color: #000;
  border: none;
  border-radius: var(--experience-btn-radius);
  text-decoration: none !important;
  transition: box-shadow 0.3s, transform 0.3s;
}
.results-btn-save:hover {
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
  transform: scale(1.02);
  color: #000;
  text-decoration: none !important;
}
/* Secondary: Your Journeys — transparent, gold border */
.results-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-weight: 500;
  font-family: var(--font-sans);
  text-transform: capitalize;
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: var(--experience-btn-radius);
  text-decoration: none !important;
  transition: border-color 0.3s, background 0.3s;
}
.results-btn-primary:hover {
  border-color: var(--gold-primary);
  background: rgba(255, 255, 255, 0.02);
  color: var(--gold-primary);
  text-decoration: none !important;
}
/* Tertiary: Exit Experience — transparent, subtle neutral border */
.results-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: capitalize;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--experience-btn-radius);
  text-decoration: none !important;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.results-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none !important;
}

/* --- Experience: Your Journeys page --- */
.journeys-page {
  min-height: 100vh;
}
.journeys-hero-title {
  font-size: clamp(2.25rem, 6vw, 3.5rem);
  font-weight: 400;
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ddbc48 0%, var(--gold-primary) 35%, var(--gold-primary) 65%, #c19d30 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(212, 175, 55, 0.12), 0 2px 8px rgba(0, 0, 0, 0.2);
}
.journeys-divider {
  height: 1px;
  max-width: 120px;
  margin: 0;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
}
.journey-card-item.question-card {
  position: relative;
  cursor: pointer;
  min-height: 44px;
  text-decoration: none;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--experience-card-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s, transform 0.3s ease;
}
.journey-card-item.question-card:hover,
.journey-card-item.question-card:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(212, 175, 55, 0.25) !important;
  transform: translateY(-2px);
}
.journey-card-item.question-card:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}
.journey-card-item.question-card,
.journey-card-item.question-card * {
  text-decoration: none !important;
}
.journey-card-item .journey-card-body {
  padding-right: 6rem;
}
.journey-date {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.35rem;
  text-decoration: none;
}
.journey-signature-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
}
.journey-signature-value {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  text-decoration: none;
}
.journey-open-results {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  text-transform: capitalize;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: none;
  padding: 0.5rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none !important;
  transition: color 0.2s;
  z-index: 2;
}
.journey-open-results:hover,
.journey-open-results:focus {
  color: var(--gold-primary);
  text-decoration: none !important;
}
.journey-open-results:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}
.journey-card-item.journey-card-more {
  display: none;
}
.journey-card-item.journey-card-more.visible {
  display: block;
}
.pass-experience-card {
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--experience-card-radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.pass-experience-card .card-body p.text-muted {
  max-width: 480px;
}
.page-experience .pass-experience-card .btn {
  min-height: 44px;
}

/* Navbar */
.navbar {
  background: transparent !important; /* Floating */
  padding: 2.5rem 0;
  margin-bottom: 2rem;
  transition: padding 0.5s ease;
}

.navbar .container {
  display: flex;
  justify-content: center;
}

.navbar-brand {
  font-family: var(--font-serif);
  color: var(--gold-primary) !important;
  font-size: 1.5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo {
  height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .navbar-logo {
    height: 120px;
  }
}

/* Experience Navigation (glass style for results/history) */
.navbar-experience {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  margin-bottom: 1rem;
}

.navbar-experience .container {
  justify-content: space-between;
}

.navbar-experience .navbar-brand {
  margin: 0;
}

.navbar-experience .navbar-nav {
  gap: 0.5rem;
}

.navbar-experience .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.navbar-experience .navbar-nav .nav-link:hover,
.navbar-experience .navbar-nav .nav-link:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.navbar-experience .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-experience .navbar-toggler:focus {
  box-shadow: none;
}

.navbar-experience .navbar-brand.text-logo {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-primary) !important;
  text-decoration: none;
  margin: 0;
}

.navbar-experience .navbar-brand.text-logo:hover {
  color: var(--gold-highlight) !important;
}

@media (max-width: 991px) {
  .navbar-experience .navbar-collapse {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .navbar-experience .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }
}

/* Footer */
footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0));
  color: var(--text-secondary);
  border-top: 1px solid var(--glass-border);
  margin-top: 0;
  padding: 40px 0 32px;
}

.site-footer .footer-title {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.site-footer .footer-list {
  margin: 0;
  padding: 0;
}

.site-footer .footer-list li + li {
  margin-top: 0.45rem;
}

.site-footer .footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.site-footer .footer-link:hover,
.site-footer .footer-link:focus {
  color: var(--gold-primary);
}

.site-footer .footer-meta {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--glass-border);
}

.site-footer .footer-meta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.site-footer .footer-copyright {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-footer .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 50%;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus {
  color: var(--gold-primary);
  background-color: rgba(212, 175, 55, 0.08);
}

.site-footer .footer-social-link:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s var(--ease-cinematic) forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.8s; }
.delay-3 { animation-delay: 1.5s; }
.delay-4 { animation-delay: 2.2s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loader */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.scent-loader {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  border-top-color: var(--gold-primary);
  animation: spin 1.5s linear infinite;
  margin: 0 auto;
}

/* Specific Page Styles */
.question-card {
  transition: transform 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}
.question-card:hover {
  border-color: var(--gold-primary);
}

/* Remove Bootstrap standard blue focus rings */
*:focus { box-shadow: none !important; }

/* Static site pages (editorial) */
body.page-static {
  background-color: #0d0e10;
  background-image:
    radial-gradient(1200px 600px at 50% -200px, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0) 60%),
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='200'%20height='200'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.8'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3C/filter%3E%3Crect%20width='200'%20height='200'%20filter='url(%23n)'%20opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-size: 1200px 600px, 200px 200px;
  opacity: 1;
  transition: none;
  scroll-behavior: auto;
}

.page-static .navbar {
  background: #0d0e10 !important;
  border-bottom: 1px solid #1a1a1a;
  transition: none;
}

.page-static .navbar .container {
  justify-content: space-between;
}

.page-static .navbar-nav .nav-link {
  color: #cfcfcf;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: none;
}

.page-static .navbar-nav .nav-link:hover,
.page-static .navbar-nav .nav-link:focus {
  color: #ffffff;
}

.page-static .site-footer {
  background: #0d0e10;
  background-image: none;
  border-top: 1px solid #1a1a1a;
}

.page-static .site-footer .footer-link {
  transition: none;
}

.page-static .card {
  background: #111111;
  border: 1px solid #1f1f1f;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-static .card:hover {
  box-shadow: none;
  border-color: #2a2a2a;
}

.page-static .form-control,
.page-static .input-group-text {
  background: #111111;
  border-color: #2a2a2a;
  color: #f0f0f0;
}

.page-static .form-control:focus {
  background: #111111;
  border-color: var(--gold-primary);
  color: #ffffff;
  box-shadow: none;
}

.page-static .display-title {
  animation: none;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #ffffff;
}

.page-static .fade-in-up {
  animation: none;
  opacity: 1;
  transform: none;
}

.page-static .collapsing {
  transition: none !important;
}

/* Homepage: main + hero strip span full viewport width (see index.ejs include + flex overrides below) */
body.home-molecules > main#main-content {
  width: 100%;
  max-width: none;
  min-width: 0;
  flex: 1 1 auto;
  align-self: stretch;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

body.home-molecules .home-fullbleed-main {
  width: 100%;
  max-width: none;
  min-width: 0;
  flex: 1 1 auto;
  align-self: stretch;
}

/* Homepage: full-width inner wrapper (no Bootstrap container) + scoped particles */
.page-static .home-fullbleed-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

body.page-static.home-molecules {
  background-color: var(--bg-color);
  background-image: var(--bg-gradient);
  background-repeat: no-repeat;
  background-size: auto;
}

/* Homepage static hero */
.home-static {
  min-height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  width: 100%;
}

/* Full-bleed hero: stretch band edge-to-edge; center copy column via inner align-self */
.home-static.home-hero-fullbleed {
  background: transparent;
  align-items: stretch;
}

.home-static.home-hero-fullbleed .home-static-inner {
  align-self: center;
}

.home-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display: block;
  filter: brightness(1.15);
}

.home-static-inner {
  width: 100%;
  max-width: 760px;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  body.page-static.home-molecules {
    background-image: var(--bg-gradient);
  }
}

.home-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.08;
  color: #f5f5f5;
  margin: 0 0 1.25rem;
}

.home-hero-subtitle {
  color: #c4c4c4;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  letter-spacing: 0.01em;
  line-height: 1.45;
  margin: 0 0 0.65rem;
}

.home-hero-micro {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin: 0 0 2rem;
}

.home-hero-actions {
  margin-bottom: 1.25rem;
}

.home-hero-button {
  display: inline-block;
  padding: 0.95rem 2.6rem;
  border: 1px solid var(--gold-primary);
  border-radius: var(--experience-btn-radius);
  color: var(--gold-primary);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-hero-button:hover,
.home-hero-button:focus {
  color: #ffffff;
  border-color: var(--gold-primary);
  box-shadow: 0 0 16px rgba(212,175,55,0.2);
}

.home-hero-link {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.home-hero-link:hover,
.home-hero-link:focus {
  color: var(--gold-primary);
}

.home-begin {
  width: 100%;
  max-width: 420px;
  margin: 1.5rem auto 0;
  text-align: left;
}

.begin-alert {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.begin-alert-error {
  background: #1a0d0d;
  border: 1px solid #3a1b1b;
  color: #e8a1a1;
}

.begin-alert-message {
  background: #0d1420;
  border: 1px solid #1b2b3f;
  color: #a9c7f0;
}

.begin-form {
  display: flex;
  flex-direction: column;
}

.begin-input {
  display: flex;
  align-items: center;
  border: 1px solid #2a2a2a;
  background: #111111;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.begin-prefix {
  color: var(--gold-primary);
  margin-right: 0.3rem;
  font-weight: 600;
}

.begin-input input {
  background: transparent;
  border: none;
  outline: none;
  color: #f0f0f0;
  font-size: 0.9rem;
  letter-spacing: 1px;
  flex: 1;
}

.begin-email {
  background: #111111;
  border: 1px solid #2a2a2a;
  padding: 0.7rem 0.9rem;
  color: #f0f0f0;
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.begin-hint {
  color: #6b6b6b;
  font-size: 0.75rem;
  margin: 0.5rem 0 0;
}

.begin-submit {
  margin-top: 1rem;
  background: transparent;
  color: #f0f0f0;
  border: 1px solid #2f2f2f;
  padding: 0.75rem 1.5rem;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .home-hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .home-hero-subtitle {
    letter-spacing: 0;
  }
}

/* Contact page */
.page-static .contact-page {
  padding: 4rem 1.5rem 5rem;
}

.page-static .contact-inner {
  max-width: 720px;
  margin: 0 auto;
}

.page-static .contact-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-static .contact-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: #f4f4f4;
  margin: 0 0 0.75rem;
}

.page-static .contact-subtitle {
  color: #9a9a9a;
  font-size: 0.95rem;
  margin: 0;
}

.page-static .contact-form {
  display: grid;
  gap: 1.5rem;
  position: relative;
}

.page-static .contact-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-static .contact-field label {
  display: block;
  color: #c7c7c7;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-static .contact-field input,
.page-static .contact-field select,
.page-static .contact-field textarea {
  width: 100%;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: var(--experience-btn-radius);
  color: #f1f1f1;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.page-static .contact-field textarea {
  resize: vertical;
  min-height: 180px;
}

.page-static .contact-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #777 50%),
                    linear-gradient(135deg, #777 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.page-static .contact-note {
  display: block;
  color: #6f6f6f;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.page-static .contact-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: #9a9a9a;
  font-size: 0.85rem;
  line-height: 1.45;
  margin-bottom: 1.25rem;
}

.page-static .contact-consent-copy {
  flex: 1;
  min-width: 0;
  padding-top: 0.06em;
}

.page-static .contact-consent-copy label {
  display: block;
  margin: 0;
  color: inherit;
  font-size: inherit;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.45;
}

.page-static .contact-consent-sub {
  margin: 0.4rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.45;
}

.page-static .contact-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  margin-top: 0.2em;
  accent-color: var(--gold-primary);
  cursor: pointer;
  vertical-align: top;
}

.page-static .contact-consent a {
  color: var(--gold-primary);
  text-decoration: none;
}

.page-static .contact-submit {
  background: #0a0a0a;
  color: #f2f2f2;
  border: 1px solid #2a2a2a;
  border-radius: var(--experience-btn-radius);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  cursor: pointer;
}

.page-static .contact-alert-error {
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  text-align: center;
  background: #1a0d0d;
  border: 1px solid #3a1b1b;
  color: #e8a1a1;
  border-radius: var(--experience-btn-radius);
}

.page-static .contact-success-panel {
  padding: 1.75rem 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--experience-card-radius);
}

.page-static .contact-success-title {
  margin: 0;
  font-size: 1rem;
  color: #e8e8e8;
  line-height: 1.55;
}

.page-static .contact-success-ref {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: rgba(212, 175, 55, 0.85);
  letter-spacing: 0.04em;
}

.page-static .contact-divider {
  height: 1px;
  background: #1e1e1e;
  margin: 3rem 0 2rem;
}

.page-static .contact-meta {
  text-align: center;
  color: #8a8a8a;
  font-size: 0.9rem;
}

.page-static .contact-meta-label {
  margin: 0 0 0.75rem;
}

.page-static .contact-meta-link {
  color: var(--gold-primary);
  text-decoration: none;
}

.page-static .contact-meta-footer {
  margin: 1.5rem 0 0;
  color: #7a7a7a;
}

.page-static .contact-meta-footer a {
  color: var(--gold-primary);
  text-decoration: none;
}

/* Imprint (minimal legal) */
.page-static .imprint-page .imprint-block {
  height: 100%;
}

.page-static .imprint-page .imprint-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 0.85rem;
  font-family: var(--font-sans);
}

.page-static .imprint-page .imprint-value {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
}

.page-static .imprint-page .imprint-value--register {
  font-size: 0.92rem;
}

.page-static .imprint-page .imprint-value p {
  margin: 0;
}

.page-static .imprint-page .imprint-reg-field + .imprint-reg-field {
  margin-top: 1rem;
}

.page-static .imprint-page .imprint-reg-label {
  margin: 0 0 0.3rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.page-static .imprint-page .imprint-reg-body {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.page-static .imprint-page .imprint-link {
  color: var(--gold-primary);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.page-static .imprint-page .imprint-link:hover,
.page-static .imprint-page .imprint-link:focus {
  color: var(--gold-highlight);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(212, 175, 55, 0.45);
}

.page-static .imprint-page .imprint-block--contact {
  margin-top: 1.25rem;
  padding-top: 2rem;
  padding-bottom: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
  .page-static .imprint-page .imprint-block--contact {
    margin-top: 0.75rem;
    padding-top: 2.25rem;
    padding-bottom: 0.5rem;
  }
}

.page-static .imprint-page .imprint-block--contact .imprint-value {
  margin-top: 0.375rem; /* ~6px: extra air above email vs. divider / heading */
}

/* FAQ page */
.page-static .faq-page {
  padding: 3.5rem 1.5rem 5rem;
}

.page-static .faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.page-static .faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-static .faq-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: #f4f4f4;
  margin: 0 0 0.75rem;
}

.page-static .faq-subtitle {
  color: #9a9a9a;
  font-size: 1rem;
  margin: 0;
}

.page-static .faq-accordion .accordion-item {
  background: #111111;
  border: 1px solid #1f1f1f;
  margin-bottom: 0.75rem;
  border-radius: var(--experience-btn-radius);
  overflow: hidden;
}

.page-static .faq-accordion .accordion-button {
  background: #111111;
  color: #f0f0f0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  padding: 1.1rem 1.25rem;
}

.page-static .faq-accordion .accordion-button::after {
  filter: invert(1);
  opacity: 0.7;
}

.page-static .faq-accordion .accordion-button:not(.collapsed) {
  background: #111111;
  color: #ffffff;
  box-shadow: none;
}

.page-static .faq-accordion .accordion-body {
  color: #9a9a9a;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 1.25rem 1.25rem;
}

/* Begin page */
.page-static .begin-page {
  padding: 4rem 1.5rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
}

.page-static .begin-page-inner {
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.page-static .begin-page-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  color: #f4f4f4;
  margin: 0 0 2.5rem;
}

.page-static .begin-page-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.page-static .begin-page-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  width: 100%;
}

.page-static .begin-field-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.42);
  margin: 0;
  text-align: center;
}

.page-static .begin-page-form input[type="text"] {
  width: 100%;
  background: #111111;
  border: 1px solid var(--gold-primary);
  border-radius: var(--experience-btn-radius);
  color: #f1f1f1;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  text-align: center;
}

.page-static .begin-page-form input[type="text"]::placeholder {
  color: #6a6a6a;
}

.page-static .begin-page-form input[type="text"]:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.page-static .begin-page-field .key-validation-message {
  font-size: 0.85rem;
  padding: 0.35rem 0 0;
  margin: 0;
  text-align: center;
}

.page-static .key-validation-success {
  color: #8fb88f;
}

.page-static .key-validation-error {
  color: #e8a1a1;
}

.page-static .key-validation-info {
  color: #9a9a9a;
}

.page-static .begin-page-form input[type="text"].invalid {
  border-color: #e8a1a1;
}

.page-static .begin-page-form input[type="text"].valid {
  border-color: #8fb88f;
}

.page-static .begin-page-email {
  width: 100%;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: var(--experience-btn-radius);
  color: #f1f1f1;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  text-align: center;
}

.page-static .begin-page-hint {
  color: #6b6b6b;
  font-size: 0.75rem;
  margin-top: -0.75rem;
  text-align: center;
  display: block;
}

.page-static .begin-page-button {
  background: var(--gold-primary);
  color: #000000;
  border: none;
  border-radius: var(--experience-btn-radius);
  padding: 1.1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-static .begin-page-form .begin-page-button {
  margin-top: 1.25rem;
  width: 100%;
}

.page-static .begin-page-button:hover {
  background: var(--gold-highlight);
}

.page-static .begin-page-info {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: center;
}

.page-static .begin-page-info li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.page-static .begin-page-info li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.page-static .begin-alert {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  text-align: left;
}

.page-static .begin-alert-error {
  background: #1a0d0d;
  border: 1px solid #3a1b1b;
  color: #e8a1a1;
}

.page-static .begin-alert-message {
  background: #0d1420;
  border: 1px solid #1b2b3f;
  color: #a9c7f0;
}

.page-static .begin-page-explore {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #1e1e1e;
  text-align: center;
}

.page-static .begin-page-explore-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  text-decoration: none;
  text-underline-offset: 0.22em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.page-static .begin-page-explore-link:hover,
.page-static .begin-page-explore-link:focus {
  color: var(--gold-primary);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.55);
}

.page-static .begin-page-explore-link:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* Explore page */
.page-static .explore-page {
  padding: 4rem 1.5rem 5rem;
}

.page-static .explore-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-static .explore-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-static .explore-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  color: #f4f4f4;
  margin: 0 0 0.75rem;
}

.page-static .explore-subtitle {
  color: #9a9a9a;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 34rem;
}

.page-static .explore-subtitle + .explore-subtitle {
  margin-top: 0.35rem;
  margin-bottom: 1.25rem;
}

.page-static .explore-begin-link {
  text-align: center;
  margin: 0;
  font-size: 0.82rem;
}

.page-static .explore-context-link {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  text-underline-offset: 0.22em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.page-static .explore-context-link:hover,
.page-static .explore-context-link:focus {
  color: var(--gold-primary);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.45);
}

.page-static .explore-context-link:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.page-static #explore-access-code {
  scroll-margin-top: 5.5rem;
}

.page-static .explore-alert {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  text-align: center;
}

.page-static .explore-alert-error {
  background: #1a0d0d;
  border: 1px solid #3a1b1b;
  color: #e8a1a1;
}

.page-static .explore-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.page-static .explore-product-card {
  background: #111111;
  border: 1px solid #1f1f1f;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  position: relative;
  border-radius: var(--experience-card-radius);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-static .explore-product-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.page-static .explore-product-secondary {
  background: #0e0e0e;
  border-color: rgba(255, 255, 255, 0.06);
}

.page-static .explore-product-featured {
  background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
  border-color: rgba(212,175,55,0.35);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.06);
}

.page-static .explore-product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #222;
  color: #888;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.35rem 0.75rem;
}

.page-static .explore-product-featured .explore-product-badge {
  background: var(--gold-primary);
  color: #000;
}

.page-static .explore-product-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #f0f0f0;
  margin: 0 0 0.5rem;
}

.page-static .explore-product-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.page-static .explore-product-desc {
  color: #8a8a8a;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0 0 1.5rem;
}

.page-static .explore-card-eyebrow {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.page-static .explore-eyebrow-type {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.38);
}

.page-static .explore-eyebrow-type-accent {
  color: rgba(212, 175, 55, 0.85);
}

.page-static .explore-eyebrow-for {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.page-static .explore-product-micro {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  margin: 0;
  line-height: 1.45;
}

.page-static .explore-product-note-slot .explore-product-micro {
  margin: 0;
}

.page-static .explore-product-intro-slot {
  flex-shrink: 0;
  min-height: 2.35rem;
  margin-bottom: 0.8rem;
}

.page-static .explore-product-usecase-intro {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  margin: 0;
  line-height: 1.45;
}

.page-static .explore-product-body-spacer {
  flex: 1 1 auto;
  min-height: 0.5rem;
}

.page-static .explore-product-note-slot {
  flex-shrink: 0;
  min-height: 2.2rem;
  margin-top: 0;
}

.page-static .explore-trust-global {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.32);
  margin: 0;
  padding: 0 1rem;
  line-height: 1.5;
}

.page-static .explore-product-note-checkout {
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  margin: 0.55rem 0 0;
  line-height: 1.45;
  text-align: center;
}

.page-static .explore-product-note-checkout--spacer {
  margin: 0.55rem 0 0;
  min-height: calc(0.75rem * 1.45);
  visibility: hidden;
  pointer-events: none;
}

.page-static .explore-product-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: auto;
  width: 100%;
}

.page-static .explore-whats-inside-link {
  display: block;
  width: 100%;
  margin: 0.75rem 0 0.5rem;
  padding: 0.35rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.page-static .explore-whats-inside-link:hover,
.page-static .explore-whats-inside-link:focus {
  color: var(--gold-primary);
  text-decoration-color: rgba(212, 175, 55, 0.55);
}

.page-static .explore-whats-inside-link:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.page-static .explore-modal-sheet {
  background: #121212;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-static .explore-modal-sheet .modal-header {
  background: #121212;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-static .explore-modal-sheet .modal-title {
  color: #f0f0f0;
}

.page-static .explore-modal-body {
  padding-top: 0;
}

.page-static .explore-modal-highlights {
  margin: 0;
  padding: 0;
}

.page-static .explore-modal-highlight {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

.page-static .explore-modal-highlight:last-child {
  border-bottom: none;
}

.page-static .explore-modal-placeholder-visual {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--experience-btn-radius);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.page-static .explore-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.page-static .explore-product-features li {
  color: #9a9a9a;
  font-size: 0.875rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.page-static .explore-product-features li:last-child {
  border-bottom: none;
}

.page-static .explore-product-features li span {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.page-static .explore-feature-note {
  color: #6a6a6a !important;
}

.page-static .explore-product-note {
  color: #6a6a6a;
  font-size: 0.8rem;
  font-style: italic;
  margin: 0 0 1.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.page-static .explore-product-note-love {
  color: var(--gold-primary);
  font-style: normal;
  text-align: center;
  border-top: none;
  padding-top: 0;
}

.page-static .explore-product-card .explore-product-button {
  width: 100%;
}

.page-static .explore-product-button {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--experience-btn-radius);
  padding: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s, box-shadow 0.25s;
  text-decoration: none;
}

.page-static .explore-product-button:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(212,175,55,0.08);
  box-shadow: 0 4px 20px rgba(212,175,55,0.15);
}

.page-static .explore-product-button-featured {
  background: linear-gradient(135deg, var(--gold-primary), rgba(212,175,55,0.9));
  color: #000;
  border: none;
  font-weight: 600;
  font-family: var(--font-sans);
  text-transform: none;
  letter-spacing: 0.03em;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-static .explore-product-button-featured:hover {
  background: linear-gradient(135deg, var(--gold-primary), rgba(212,175,55,0.95));
  color: #000;
  box-shadow: 0 8px 32px rgba(212,175,55,0.4);
  transform: scale(1.02);
}

.page-static .explore-product-out-of-stock {
  opacity: 0.7;
}

.page-static .explore-product-out-of-stock .explore-product-price {
  color: rgba(212,175,55,0.5);
}

.page-static .explore-product-button-disabled {
  background: #333;
  color: #777;
  border: 1px solid #444;
  cursor: not-allowed;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.page-static .explore-product-button-disabled:hover {
  background: #333;
  color: #777;
  border-color: #444;
  box-shadow: none;
  transform: none;
}

.page-static .explore-product-stock-notice {
  color: rgba(255, 200, 120, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

@media (max-width: 700px) {
  .page-static .explore-products {
    grid-template-columns: 1fr;
  }

  .page-static .explore-product-featured {
    order: -1;
  }
}

/* ==========================================================================
   WCAG 2.1 Level AA Accessibility Enhancements
   ========================================================================== */

/* Skip Link (WCAG 2.4.1 - Bypass Blocks)
   Allows keyboard users to skip navigation and jump to main content */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: #000;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 10001;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Focus Indicators (WCAG 2.4.7 - Focus Visible)
   Ensure all interactive elements have visible focus states */

/* Global focus reset - use visible outlines */
*:focus {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Links */
a:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Buttons */
button:focus-visible,
.btn:focus-visible,
[type="button"]:focus-visible,
[type="submit"]:focus-visible {
  outline: 3px solid var(--gold-primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.25);
}

/* Form inputs */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 0;
  border-color: var(--gold-primary);
}

/* Checkboxes and radio buttons */
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Accordion buttons */
.accordion-button:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: -2px;
  box-shadow: none;
}

/* Navbar links */
.navbar .nav-link:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Footer links */
.footer-link:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}

/* Cookie banner buttons */
.cookie-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Color Contrast Improvements (WCAG 1.4.3 - Contrast Minimum 4.5:1)
   Upgrading low-contrast colors to meet AA standards */

/* Muted text - upgrade from #777/#888/#999 to #a0a0a0 (contrast ~7:1 on #0a0a0a) */
.text-muted,
.text-secondary {
  color: #a0a0a0 !important;
}

/* Small/secondary text that was too light */
.cookie-category-desc,
.cookie-accordion-title small,
.contact-subtitle,
.begin-page-hint,
.footer-meta {
  color: #a0a0a0;
}

/* Placeholder text improvements */
::placeholder {
  color: #888;
  opacity: 1;
}

/* Form helper text */
.form-text,
small.text-muted {
  color: #a0a0a0;
}

/* Disabled states should still be readable */
:disabled,
[disabled] {
  opacity: 0.7;
}

/* High Contrast Mode Support */
@media (prefers-contrast: more) {
  :root {
    --text-secondary: #c0c0c0;
    --glass-border: rgba(255, 255, 255, 0.2);
  }
  
  .text-muted {
    color: #c0c0c0 !important;
  }
  
  *:focus-visible {
    outline-width: 3px;
  }
}

/* Reduced Motion (WCAG 2.3.3 - Animation from Interactions)
   Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .display-title {
    animation: none;
    background: none;
    color: #fff;
  }
  
  .fade-in-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Touch Target Size (WCAG 2.5.5 - Target Size)
   Ensure touch targets are at least 44x44px */
@media (pointer: coarse) {
  .nav-link,
  .footer-link,
  .btn,
  button,
  [type="button"],
  [type="submit"],
  a {
    min-height: 44px;
    min-width: 44px;
  }
  
  .navbar .nav-link {
    padding: 0.75rem 1rem;
  }
  
  .footer-link {
    display: inline-block;
    padding: 0.5rem 0;
  }
}

/* Screen Reader Only Content (for additional context) */
.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

/* Error States (WCAG 1.4.1 - Use of Color)
   Don't rely on color alone for errors */
.is-invalid,
.invalid,
input.invalid {
  border-color: #dc3545 !important;
  border-width: 2px;
}

.is-invalid::before,
.invalid-feedback::before {
  content: "⚠ ";
}

/* Success States */
.is-valid,
.valid,
input.valid {
  border-color: #28a745 !important;
  border-width: 2px;
}

/* Loading/Processing States */
[aria-busy="true"] {
  cursor: wait;
}

/* Links - No underline sitewide; color/context indicate interactivity (unified gold accent) */
a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

/* === Checkout Pages (Phase 2) === */
.checkout-page {
  min-height: 80vh;
  padding: 4rem 1.5rem 5rem;
}

.checkout-container {
  max-width: 1100px;
  margin: 0 auto;
}

.checkout-header {
  text-align: center;
  margin-bottom: 3rem;
}

.checkout-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.5rem;
}

.checkout-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.checkout-alert {
  max-width: 600px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 4px;
  color: #dc3545;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}

/* Order Summary */
.checkout-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  padding: 1.75rem;
  position: sticky;
  top: 2rem;
}

.checkout-summary-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-summary-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.checkout-product-name {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.checkout-product-meta {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.25rem 0 0;
}

.checkout-summary-included {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-summary-included-digital {
  color: rgba(212, 175, 55, 0.85);
}

/* Quantity stepper */
.checkout-qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.checkout-qty-btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--gold-primary);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  padding: 0;
}

.checkout-qty-btn:hover:not(:disabled) {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-highlight);
}

.checkout-qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.checkout-qty-value {
  min-width: 2rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  border-right: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 0.25rem;
}

.checkout-summary-lines {
  margin-bottom: 0.25rem;
}

.checkout-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.4rem 0;
  font-size: 0.9375rem;
}

.checkout-line-label {
  color: rgba(255, 255, 255, 0.65);
}

.checkout-line-value {
  color: #fff;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.checkout-summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0.75rem 0;
}

.checkout-summary-line-total {
  padding-top: 0.25rem;
  font-size: 1.0625rem;
}

.checkout-summary-line-total .checkout-line-label,
.checkout-summary-line-total .checkout-line-value {
  color: #fff;
  font-weight: 600;
}

.checkout-summary-line-vat {
  font-size: 0.8125rem;
  padding-bottom: 0;
}

.checkout-summary-line-vat .checkout-line-label,
.checkout-summary-line-vat .checkout-line-value {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

/* Checkout Form */
.checkout-form-section {
  max-width: 600px;
}

.checkout-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 8px;
  padding: 2rem;
}

.checkout-fieldset {
  border: none;
  padding: 0;
  margin: 0 0 2rem;
}

.checkout-fieldset:last-of-type {
  margin-bottom: 0;
}

.checkout-legend {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.checkout-field {
  margin-bottom: 1.5rem;
}

.checkout-field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-field-half {
  margin-bottom: 0;
}

.checkout-label {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.checkout-required {
  color: var(--gold-primary);
}

.checkout-input,
.checkout-select {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.checkout-input:hover,
.checkout-input:focus,
.checkout-select:hover,
.checkout-select:focus {
  border-color: rgba(255, 255, 255, 0.4);
  outline: none;
}

.checkout-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.checkout-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 3rem;
}

.checkout-field-hint {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0.5rem 0 0;
}

.checkout-consent {
  margin-top: 0.25rem;
}

.checkout-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin: 0;
}

.checkout-consent-label input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.checkout-consent-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.checkout-consent-title {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
}

.checkout-consent-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.45;
}

.checkout-email-suggestion {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0.5rem 0 0;
}

.checkout-email-suggestion-button {
  background: none;
  border: none;
  color: var(--gold-primary);
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.checkout-email-suggestion-button:hover,
.checkout-email-suggestion-button:focus {
  color: var(--gold-highlight);
}

.checkout-actions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.checkout-submit-button {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 0.875rem;
}

.checkout-cancel-link {
  display: inline-block;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  padding: 0.5rem;
  transition: color 0.2s ease;
}

.checkout-cancel-link:hover {
  color: #fff;
}

/* Responsive Checkout */
@media (max-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }

  .checkout-form-section {
    max-width: none;
  }

  .checkout-title {
    font-size: 2rem;
  }

  .checkout-field-group {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .checkout-field-half {
    margin-bottom: 0;
  }
}

@media (max-width: 480px) {
  .checkout-page {
    padding: 2rem 0;
  }

  .checkout-container {
    padding: 0 1rem;
  }

  .checkout-form {
    padding: 1.5rem;
  }

  .checkout-summary {
    padding: 1.5rem;
  }

  .checkout-title {
    font-size: 1.75rem;
  }
}
