@font-face {
  font-family: 'Cosmetic';
  src: url('../fonts/Cosmetic.woff2') format('woff2'),
       url('../fonts/Cosmetic.woff') format('woff'),
       url('../fonts/Cosmetic.ttf') format('truetype'),
       url('../fonts/Cosmetic.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --burgundy: #582B36;
  --camel: #C19A6B;
  --teal: #1D3F43;
  --red: #A71C1E;
  --cream: #E6DFD8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--teal);
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cosmetic', serif;
  color: var(--burgundy);
  margin: 0 0 0.5em;
}

a {
  color: var(--burgundy);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(88, 43, 54, 0.15);
}

.site-header .logo {
  font-family: 'Cosmetic', serif;
  font-size: 1.5rem;
  color: var(--burgundy);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  text-decoration: none;
  color: var(--teal);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--burgundy);
  border-bottom: 2px solid var(--camel);
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--camel);
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--burgundy);
  color: var(--cream);
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.btn:hover {
  background: var(--teal);
}

.btn-secondary {
  display: inline-block;
  color: var(--burgundy);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--camel);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: var(--cream);
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

section + section {
  margin-top: 2.5rem;
}

hr.divider {
  border: none;
  border-top: 1px solid rgba(193, 154, 107, 0.4);
  margin: 2.5rem 0;
}

.track {
  margin-bottom: 2rem;
}

.track h3 {
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--camel);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

ul.entry-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

ul.entry-list li {
  border-bottom: 1px dotted rgba(88, 43, 54, 0.15);
}

ul.entry-list li:last-child {
  border-bottom: none;
}

.entry-list .meta {
  color: var(--teal);
  opacity: 0.7;
  font-size: 0.9rem;
}

.entry-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 0.4rem 0;
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.entry-toggle:hover .entry-title,
.entry-toggle:focus-visible .entry-title {
  color: var(--burgundy);
}

.entry-icon {
  flex-shrink: 0;
  color: var(--camel);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.entry-toggle[aria-expanded="true"] .entry-icon {
  transform: rotate(45deg);
}

.entry-detail {
  padding: 0 0 0.75rem;
}

.entry-detail p {
  margin: 0;
  color: var(--teal);
  opacity: 0.85;
  font-size: 0.92rem;
  line-height: 1.6;
}

.card {
  background: #fff;
  border: 1px solid rgba(88, 43, 54, 0.1);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.card h2,
.card h3 {
  margin-bottom: 0.5rem;
}

.card .links {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.exploring {
  font-style: italic;
  color: var(--teal);
  opacity: 0.85;
}

.home-hero {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
  text-align: center;
  padding: 5rem 1.5rem 4.5rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aurora-glow {
  position: absolute;
  inset: -35% -10%;
  z-index: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(193, 154, 107, 0.25) 42%,
    rgba(29, 63, 67, 0.22) 58%,
    transparent 80%
  );
  filter: blur(60px);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 72%);
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 72%);
  transform: rotate(-18deg) translate(30%, -28%);
  animation: auroraSweep 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes auroraSweep {
  0% {
    transform: rotate(-18deg) translate(30%, -28%);
  }
  100% {
    transform: rotate(-18deg) translate(-30%, 28%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .aurora-glow {
    animation: none;
    transform: rotate(-18deg) translate(0, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.home-hero h1 {
  font-size: 2.75rem;
}

.home-hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.shop-section h2 {
  margin-top: 0;
}

.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(88, 43, 54, 0.15);
  font-size: 0.9rem;
}

.site-footer a {
  margin: 0 0.5rem;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}
