/* stephaniepculver.com — shared styles */
/* Brand: Midnight Navy / Slate Blue / Warm Gold · DM Serif Display / DM Sans */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=DM+Sans:wght@400;500;700&display=swap');

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

:root {
  --navy: #0D1B2A;
  --navy-mid: #162330;
  --blue: #2C5F8A;
  --blue-light: #3a78ab;
  --accent: #B8962E;
  --accent-hover: #9a7d26;
  --off-white: #F7F6F4;
  --gray-light: #E9EAEB;
  --gray-mid: #6B7280;
  --text: #1C1C1E;
  --text-mid: #6B7280;
  --line: #D1D5DB;
  --font: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max: 860px;
  --max-wide: 1100px;
}

html { font-size: 17px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER / NAV ─── */
.site-header {
  background: var(--navy);
  padding: 0 24px;
  position: relative;
}
.site-header nav {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-toggle { display: flex; background: none; border: none; cursor: pointer; padding: 4px 0; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: all 0.2s; }
.nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px 24px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.08); z-index: 100; }
.nav-links.open { display: flex; }
.nav-link { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; transition: color 0.18s; }
.nav-link:hover { color: #fff; }
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-decoration: none;
}
.logo-name {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.logo-sub {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s;
}
.nav-cta:hover { background: var(--accent-hover); }

/* ─── HERO ─── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 24px 72px;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  margin-left: 12px;
  transition: border-color 0.18s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.65); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ─── PROOF BAR ─── */
.proof-bar {
  background: var(--navy-mid);
  padding: 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.proof-bar-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  justify-content: center;
}
.proof-stat {
  text-align: center;
  color: #fff;
}
.proof-stat .num {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.proof-stat .lbl {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
  letter-spacing: 0.03em;
}

/* ─── SECTION ─── */
.section {
  padding: 72px 24px;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-wide {
  max-width: var(--max-wide);
}
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section h2 {
  font-family: var(--font);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}
.section-intro {
  font-size: 1.06rem;
  color: var(--text-mid);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h2 { color: #fff; }
.bg-navy .section-label { color: var(--accent); }
.bg-navy .section-intro { color: rgba(255,255,255,0.7); }

/* ─── SPRINT CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
#sprints .card-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 12px;
  gap: 24px;
}
#sprints .card-grid .card {
  flex: 0 0 250px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
}
.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.card h3 {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.card-proof {
  font-size: 0.82rem;
  color: var(--text-mid);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: auto;
  margin-bottom: 18px;
}
.card-proof strong { color: var(--navy); }
.card-link {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: auto;
}
.card-link:hover { text-decoration: underline; }

/* ─── PROBLEM / DELIVERABLE BLOCKS ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.two-col h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.two-col ul {
  list-style: none;
  padding: 0;
}
.two-col ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.two-col ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.two-col ul li:last-child { border-bottom: none; }

/* ─── DELIVERABLE BOX ─── */
.deliverable-box {
  background: var(--gray-light);
  border-left: 4px solid var(--blue);
  border-radius: 4px;
  padding: 28px 32px;
  margin-bottom: 48px;
}
.deliverable-box h3 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.deliverable-box ul {
  list-style: none;
  padding: 0;
}
.deliverable-box ul li {
  padding: 7px 0;
  font-size: 0.97rem;
  color: var(--text);
  display: flex;
  gap: 10px;
}
.deliverable-box ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── PROOF CALLOUT ─── */
.proof-callout {
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  padding: 36px 40px;
  margin-bottom: 48px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.proof-callout .proof-number {
  font-family: var(--font-sans);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}
.proof-callout .proof-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.proof-callout .proof-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* ─── BIO / PERSON ─── */
.bio-block {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.bio-text h3 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}
.bio-text .title-line {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.bio-text p {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}
.bio-link {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 8px;
}
.bio-link:hover { text-decoration: underline; }

/* ─── CREDENTIAL PILLS ─── */
.cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.cred-pill {
  background: var(--gray-light);
  border: 1px solid var(--line);
  color: var(--text-mid);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ─── SCOPE GRID ─── */
.scope-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.scope-item {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.scope-item .scope-num {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 8px;
}
.scope-item h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.scope-item p {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ─── CTA BAND ─── */
.cta-band {
  background: var(--navy);
  padding: 72px 24px;
  text-align: center;
  color: #fff;
}
.cta-band-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.cta-band h2 {
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 400;
  margin-bottom: 16px;
  color: #fff;
}
.cta-band p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-band .btn-primary { font-size: 1.05rem; padding: 15px 36px; }

/* ─── OFFER BOX ─── */
.offer-box {
  background: var(--off-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 36px;
  margin-bottom: 48px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.offer-meta h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.offer-meta .price {
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.offer-meta .duration {
  font-size: 0.88rem;
  color: var(--text-mid);
}
.offer-detail { flex: 1; min-width: 200px; }
.offer-detail p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ─── FOOTER ─── */
footer {
  background: #0a131d;
  color: var(--gray-mid);
  padding: 36px 24px;
  text-align: center;
  font-size: 0.85rem;
}
footer a { color: var(--gray-mid); text-decoration: none; }
footer a:hover { color: #fff; }

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .hero { padding: 56px 20px 48px; }
  .hero h1 { font-size: 1.9rem; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .offer-box { flex-direction: column; gap: 20px; }
  .proof-callout { flex-direction: column; gap: 16px; }
  .bio-block { flex-direction: column; }
  .btn-secondary { margin-left: 0; }
  .section { padding: 52px 20px; }
  .cta-band { padding: 56px 20px; }
  .proof-bar-inner { gap: 24px 32px; }
  .proof-stat .num { font-size: 1.35rem; }
}
