/* ============ Tokens ============ */
:root {
  --navy: #23303d;
  --navy-deep: #1a242e;
  --tan: #afa695;
  --off-white: #e3dfd7;
  --brown: #935430;
  --brown-light: #b06a3f;
  --black: #000000;

  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1120px;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--navy);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brown);
  color: var(--off-white);
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-accent {
  background: var(--brown);
  color: var(--off-white);
}
.btn-accent:hover { background: var(--brown-light); }

.btn-outline {
  background: transparent;
  border-color: var(--off-white);
  color: var(--off-white);
}
.btn-outline:hover { background: rgba(227, 223, 215, 0.12); }

.btn-small {
  padding: 10px 18px;
  font-size: 0.85rem;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-icon svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--navy);
  border-bottom: 1px solid rgba(227, 223, 215, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--off-white);
}
.brand-mark { height: 34px; width: auto; display: block; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  display: none;
}
@media (min-width: 560px) {
  .brand-name { display: inline; }
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a {
  color: var(--tan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.primary-nav a:hover { color: var(--off-white); }

.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(227, 223, 215, 0.08);
  color: var(--off-white);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.social-icon svg { width: 19px; height: 19px; }
.social-icon:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--off-white);
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .primary-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(227, 223, 215, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .primary-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(227, 223, 215, 0.08);
  }
  .nav-social {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
    justify-content: flex-start;
  }
}

/* ============ Hero ============ */
.hero {
  background: var(--navy);
  color: var(--off-white);
  padding-top: 80px;
}

.hero-inner {
  max-width: 780px;
  padding-bottom: 64px;
  text-align: left;
}

.hero-brand {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--off-white);
  letter-spacing: 0.01em;
  white-space: nowrap;
  margin-bottom: 22px;
}
@media (max-width: 640px) {
  .hero-brand { white-space: normal; }
}

.hero-headline {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--brown-light);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.3;
  margin-bottom: 14px;
}

.hero-sub-emph {
  font-family: var(--font-display);
  color: var(--tan);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  text-transform: none;
  letter-spacing: 0.01em;
  margin: 0 0 20px;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: rgba(227, 223, 215, 0.88);
  max-width: 640px;
  margin-bottom: 34px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stats-band {
  background: var(--navy-deep);
  padding: 40px 0 48px;
  border-top: 1px solid rgba(227, 223, 215, 0.1);
}

.stats-lead {
  font-family: var(--font-display);
  color: var(--off-white);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.stats-star { color: var(--brown-light); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 3px solid var(--brown);
  padding-left: 18px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--off-white);
  line-height: 1;
}

.stat-label {
  color: var(--tan);
  font-size: 0.98rem;
  max-width: 30ch;
}

.stats-footnote {
  margin-top: 28px;
  color: rgba(175, 166, 149, 0.7);
  font-size: 0.82rem;
}

/* ============ Sections ============ */
.section {
  padding: 96px 0;
}

.section-dark {
  background: var(--navy);
  color: var(--off-white);
}

.section-eyebrow {
  font-family: var(--font-display);
  color: var(--brown);
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 10px;
}
.section-dark .section-eyebrow { color: var(--brown-light); }

.section-title {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 1.2rem;
  color: #5a6673;
  max-width: 40ch;
  margin-bottom: 20px;
}
.section-dark .section-title { color: var(--tan); }

.section-intro {
  max-width: 680px;
  font-size: 1.08rem;
  color: rgba(227, 223, 215, 0.85);
  margin-bottom: 56px;
}

/* ============ Our Story ============ */
#our-story .section-eyebrow {
  color: var(--navy);
}
#our-story .section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  max-width: none;
  margin-bottom: 14px;
}

.founder-quote {
  margin: 0 0 64px;
  padding: 36px 32px;
  background: var(--navy);
  color: var(--off-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--brown);
}
.founder-quote p {
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 18px;
  color: rgba(227, 223, 215, 0.92);
}
.founder-quote cite {
  font-style: normal;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  color: var(--tan);
  font-size: 0.95rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 64px;
}

.story-block h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--brown);
}

.story-block p {
  font-size: 1.02rem;
  color: #3a4855;
}

.story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.story-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brown);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.15s ease;
}
.story-links a:hover { color: var(--brown-light); }
.story-links svg { width: 18px; height: 18px; flex-shrink: 0; }

.authors {
  padding-top: 40px;
  border-top: 1px solid rgba(35, 48, 61, 0.15);
}

.authors h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.authors-lead {
  color: #5a6673;
  margin-bottom: 24px;
}

.authors-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px 32px;
}

.authors-list li {
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--tan);
  font-size: 0.98rem;
  color: #3a4855;
}
.authors-list strong {
  color: var(--navy);
  font-weight: 700;
}

/* ============ What We Believe ============ */
.beliefs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============ Get Involved ============ */
.involved-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.involved-card {
  background: var(--navy);
  color: var(--off-white);
  padding: 40px 34px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.involved-card h3 {
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.involved-card p {
  color: rgba(227, 223, 215, 0.82);
  font-size: 1rem;
  flex-grow: 1;
}

.involved-card .btn {
  align-self: flex-start;
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============ Accordion (shared: What We Believe + FAQ) ============ */
.faq-item, .belief-item {
  background: var(--navy-deep);
  border-radius: var(--radius);
  padding: 4px 24px;
}

.faq-item summary, .belief-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 32px 20px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--off-white);
  position: relative;
}
.faq-item summary::-webkit-details-marker, .belief-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after, .belief-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.6rem;
  color: var(--brown-light);
  font-family: var(--font-body);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after, .belief-item[open] summary::after {
  content: "\2212";
}

.faq-item p, .belief-item p {
  padding-bottom: 22px;
  color: rgba(227, 223, 215, 0.8);
  font-size: 1rem;
  max-width: 68ch;
}

/* ============ Final CTA ============ */
.final-cta {
  background: var(--brown);
  color: var(--off-white);
  padding: 72px 0;
  text-align: center;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  max-width: 18ch;
  margin: 0 auto 32px;
}
.final-cta .hero-ctas { justify-content: center; }
.final-cta .btn-outline { border-color: var(--off-white); color: var(--off-white); }
.final-cta .btn-accent { background: var(--navy); }
.final-cta .btn-accent:hover { background: var(--navy-deep); }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy-deep);
  color: var(--tan);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(227, 223, 215, 0.1);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-mark { height: 30px; width: auto; }
.footer-brand p {
  font-family: var(--font-display);
  color: var(--off-white);
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin: 0;
}

.footer-nav, .footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav a, .footer-social a {
  color: var(--tan);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}
.footer-nav a:hover, .footer-social a:hover { color: var(--off-white); }

.footer-disclaimer {
  font-size: 0.85rem;
  color: rgba(175, 166, 149, 0.75);
  max-width: 640px;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(175, 166, 149, 0.55);
}

/* ============ Responsive tweaks ============ */
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .founder-quote { padding: 26px 22px; }
  .involved-card { padding: 30px 24px; }
}
