/* ---- Alder VC — Shared Styles ---- */

:root {
  --ink: #0f172a;
  --paper: #fffaf2;
  --alder: #0b6b4f;
  --moss: #cde8a0;
  --coral: #ff6b5b;
  --marigold: #ffcc3d;
  --sky: #7cc4ff;
  --plum: #7a4edb;
  --line: #1a1a1a;
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Helvetica Neue', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ----- Nav ----- */
nav {
  padding: 22px 0;
  border-bottom: 2px solid var(--line);
  background: var(--paper);
  position: sticky; top: 0; z-index: 50;
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--alder);
  border: 2px solid var(--line);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: ""; position: absolute; inset: 6px;
  background: var(--marigold); border-radius: 50%;
}
.nav-links { display: flex; gap: 28px; font-weight: 600; }
.nav-links a:hover { color: var(--coral); }
.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 999px;
  border: 2px solid var(--line);
  font-weight: 700;
}
.nav-cta:hover { background: var(--coral); }

/* ----- Buttons ----- */
.btn {
  padding: 14px 24px; border-radius: 999px;
  border: 2px solid var(--line);
  font-weight: 700; font-size: 16px;
  display: inline-block;
  cursor: pointer;
}
.btn-primary { background: var(--coral); color: var(--paper); }
.btn-primary:hover { background: var(--ink); }
.btn-ghost { background: var(--paper); }
.btn-ghost:hover { background: var(--marigold); }

/* ----- Section Base ----- */
section.band {
  padding: 90px 0;
  border-bottom: 2px solid var(--line);
}
.eyebrow {
  display: inline-block;
  background: var(--ink); color: var(--paper);
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -1.2px;
  font-weight: 900;
  max-width: 18ch;
}
h2 em { font-style: normal; color: var(--coral); }
h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.3px; }
.section-lede {
  margin-top: 24px; max-width: 64ch;
  font-size: 19px; font-weight: 500;
}

/* ----- Cards ----- */
.card {
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 6px 6px 0 var(--line);
}
.card.yes { background: #eefbe5; }
.card.no { background: #ffe7e3; }
.card h3 { margin-bottom: 14px; }
.card ul { list-style: none; }
.card li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.2);
  font-weight: 500;
}
.card li:last-child { border-bottom: none; }

/* ----- Dot ----- */
.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

/* ----- Page Hero (inner pages) ----- */
.page-hero {
  padding: 80px 0 90px;
  border-bottom: 2px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -1.5px;
  font-weight: 900;
  max-width: 16ch;
  margin-top: 16px;
}
.page-hero h1 em { font-style: normal; color: var(--alder); }
.page-hero p {
  margin-top: 24px;
  max-width: 58ch;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
}

/* ----- Big CTA Band ----- */
.bigcta { background: var(--coral); color: var(--paper); text-align: center; padding: 110px 0; }
.bigcta h2 { color: var(--paper); margin: 0 auto; }
.bigcta h2 em { color: var(--marigold); }
.bigcta p { margin: 24px auto 36px; max-width: 56ch; font-size: 19px; font-weight: 500; }
.bigcta .btn { background: var(--ink); color: var(--paper); font-size: 18px; padding: 18px 32px; }
.bigcta .btn:hover { background: var(--paper); color: var(--ink); }

/* ----- Footer ----- */
footer { background: var(--ink); color: var(--paper); padding: 50px 0 40px; }
footer .wrap {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; align-items: center;
}
footer .logo { color: var(--paper); }
footer .logo-mark { background: var(--marigold); }
footer .logo-mark::after { background: var(--coral); }
footer nav { background: none; border: none; padding: 0; position: static; }
footer .foot-links { display: flex; gap: 24px; font-size: 14px; font-weight: 600; opacity: 0.85; }
footer .foot-links a:hover { opacity: 1; color: var(--marigold); }
footer small { opacity: 0.7; font-size: 13px; }

/* ----- Mobile hamburger ----- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.15s ease;
}

.nav-dropdown {
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 24px 28px 28px;
  border-top: 2px solid var(--line);
  background: var(--paper);
}
.nav-dropdown a {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.nav-dropdown a:hover { color: var(--alder); }
.nav-dropdown-cta {
  display: inline-block;
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid var(--line);
  font-weight: 700;
  align-self: flex-start;
  margin-top: 4px;
}
.nav-dropdown-cta:hover { background: var(--alder) !important; }

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  nav.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  nav.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  nav.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  nav.nav-open .nav-dropdown { display: flex; }
}
@media (max-width: 600px) {
  section.band { padding: 60px 0; }
  .page-hero { padding: 60px 0 70px; }
  .bigcta { padding: 80px 0; }
}

/* Related posts section */
.post-related { padding: 60px 0; border-bottom: 2px solid var(--line); }
.post-related h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.5; margin-bottom: 20px; }
.related-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.related-list li { border-left: 3px solid var(--alder); padding-left: 16px; }
.related-list li a { font-size: 17px; font-weight: 700; color: var(--ink); text-decoration: none; line-height: 1.3; }
.related-list li a:hover { color: var(--alder); }
.related-list li span { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.45; margin-top: 3px; }
