/* Wild Enough Women static fallback site */
:root {
  --plum-900: #4a2545;
  --plum-800: #6a3d63;
  --offwhite: #fbf7f2;
  --offwhite-dark: #efe5dd;
  --charcoal: #2d262c;
  --sage-soft: #dce8df;
  --white: #ffffff;
  --border: rgba(74, 37, 69, 0.12);
  --shadow: 0 18px 40px rgba(42, 23, 39, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--offwhite);
  color: var(--charcoal);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner,
.footer-inner,
.section-inner {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.brand {
  text-decoration: none;
  color: var(--plum-900);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  color: rgba(45, 38, 44, 0.82);
  font-size: 0.95rem;
}
.site-nav a.active,
.site-nav a:hover { color: var(--plum-900); }

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
}
.button { background: var(--plum-900); color: var(--white); }
.button-secondary { background: var(--white); color: var(--plum-900); border-color: var(--border); }
.button-ghost { background: transparent; color: var(--plum-900); border-color: var(--border); }

.hero {
  background: var(--plum-900);
  color: var(--white);
  padding: 88px 0 72px;
}
.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  opacity: 0.82;
  margin-bottom: 18px;
}
.hero h1,
.page-intro h1,
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 0.98;
  margin: 0 0 22px;
}
.hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
.hero p.lead {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  max-width: 760px;
  color: rgba(255,255,255,0.86);
}
.hero .sublead {
  margin-top: 20px;
  max-width: 720px;
  color: rgba(255,255,255,0.78);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card.dark {
  background: var(--plum-900);
  color: var(--white);
}
.card.soft { background: var(--offwhite-dark); }
.quote {
  border-left: 4px solid var(--plum-900);
  padding-left: 16px;
  color: var(--plum-800);
  font-style: italic;
  font-weight: 600;
}

.section {
  padding: 72px 0;
}
.section.soft-bg { background: var(--offwhite-dark); }
.section.sage-bg { background: rgba(220, 232, 223, 0.5); }
.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.page-intro {
  max-width: 860px;
}
.page-intro h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); color: var(--plum-900); }
.page-intro p,
.section-copy,
.card p,
.card li { color: rgba(45, 38, 44, 0.8); }
.section-title {
  color: var(--plum-900);
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.kicker {
  color: rgba(106, 61, 99, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.list {
  margin: 0;
  padding-left: 18px;
}
.list li { margin-bottom: 12px; }
.contact-link {
  color: var(--plum-900);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.notice {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.site-footer {
  background: var(--plum-900);
  color: var(--white);
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.2fr 1fr;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a,
.footer-email a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
}
.footer-links a:hover,
.footer-email a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.founder-image {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.founder-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--offwhite);
    border-bottom: 1px solid var(--border);
    padding: 14px 16px 20px;
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    gap: 14px;
  }
  .header-cta { display: none; }
  .section { padding: 56px 0; }
  .card { padding: 22px; }
}
