:root {
  --clay-red: #8B2E1C;
  --navy: #002244;
  --gold: #F2C94C;
  --parchment: #F5F1E9;
  --ink: #222222;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--parchment);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--clay-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Layout helpers */
.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

/* Header / Nav */
header {
  background: var(--clay-red);
  color: var(--gold);
  border-bottom: 3px solid var(--navy);
  position: sticky;        /* stays at the top on scroll */
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 50%, var(--clay-red) 50%, var(--clay-red) 100%);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  width: 70%;
  height: 120%;
  background: var(--gold);
  border-radius: 50%;
  transform: translateX(-15%);
}

.brand-text h1 {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text p {
  font-family: "Merriweather", serif;
  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: none;
}

@media (min-width: 900px) {
  .brand-text h1 {
    font-size: 1.3rem;
  }

  .brand-text p {
    font-size: 0.8rem;
  }

  nav {
    display: flex;
    gap: 1.25rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  nav a {
    color: var(--gold);
    position: relative;
  }

  nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
  }

  nav a:hover::after {
    width: 100%;
  }

  nav a.nav-active {
    color: var(--gold);
  }

  nav a.nav-active::after {
    width: 100%;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy), var(--clay-red));
  color: var(--parchment);
  padding: 3rem 0 3.5rem;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2rem;
}

.hero-text h2 {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.hero-text p {
  font-family: "Merriweather", serif;
  font-size: 0.98rem;
  max-width: 34rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-chip {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 241, 233, 0.5);
  background: rgba(0, 0, 0, 0.18);
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }

  .hero-text h2 {
    font-size: 2.4rem;
  }
}

.hero-panel {
  border-radius: 14px;
  border: 1px solid rgba(245, 241, 233, 0.4);
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.18);
}

.hero-panel h3 {
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-panel p {
  font-size: 0.9rem;
}

/* Section headings */
.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--clay-red);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.section-intro {
  font-family: "Merriweather", serif;
  font-size: 0.95rem;
  max-width: 42rem;
  margin-bottom: 2rem;
}

/* Card grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
}

.card span {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clay-red);
}

/* Article preview cards */
.card--article {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.card-meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #777;
}

.card-footer {
  margin-top: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.card-footer a {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--clay-red);
  text-decoration: none;
}

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

.card-tag {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--clay-red);
  background: rgba(139,46,28,0.05);
}

/* Present Camp section */
.present-section {
  background: #f0e7d7;
  border-top: 2px solid rgba(0, 0, 0, 0.06);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

/* New Horizon callout */
.horizon-callout {
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.5rem 1.7rem;
  background: linear-gradient(135deg, rgba(139, 46, 28, 0.05), rgba(242, 201, 76, 0.2));
}

.horizon-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--clay-red);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  cursor: pointer;
  background: var(--clay-red);
  color: var(--parchment);
}

.btn--ghost {
  background: transparent;
  color: var(--clay-red);
}

.btn:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* Footer */
footer {
  background: var(--navy);
  color: var(--gold);
  padding: 1.75rem 0;
  border-top: 3px solid var(--clay-red);
  margin-top: 3rem;
}

footer p {
  font-size: 0.85rem;
  text-align: center;
  font-family: "Merriweather", serif;
}

footer a {
  color: var(--gold);
  text-decoration: underline;
}

/* Disclaimer + credit */
footer .disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.75;
  line-height: 1.5;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

footer .credit {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.8;
  text-align: center;
  letter-spacing: 0.5px;
}

footer .credit a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px dotted var(--gold);
  padding-bottom: 2px;
}

footer .credit a:hover {
  opacity: 1;
  border-bottom: 1px solid var(--gold);
}
