/* duotone-modern — site 10 — LLC Launchpad */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, p, ul, ol, figure { margin: 0; padding: 0; }

:root {
  --bg: #fdf3ec;
  --text: #1a1d4a;
  --accent: #1a1d4a;
  --muted: #6c6f8a;
  --surface: #1a1d4a;
  --peach: #fdf3ec;
  --peach-deep: #f6e3d2;
  --indigo: #1a1d4a;
  --indigo-soft: #2a2e6b;
  --heading-font: 'Bricolage Grotesque', system-ui, sans-serif;
  --body-font: 'Inter', system-ui, sans-serif;
  --max: 1180px;
}

body {
  background: var(--peach);
  color: var(--indigo);
  font-family: var(--body-font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--indigo); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }

img { max-width: 100%; height: auto; display: block; }

/* ===== Header ===== */
.site-header {
  background: var(--indigo);
  color: var(--peach);
  padding: 18px 28px;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-wrap img { height: 52px; width: auto; }
.brand-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--peach);
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-nav a {
  color: var(--peach);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s ease;
}
.site-nav a:hover { border-bottom-color: var(--peach-deep); }
.site-nav a.active { border-bottom-color: var(--peach); }

/* ===== Hero (diagonal split) ===== */
.hero {
  background: var(--indigo);
  color: var(--peach);
  position: relative;
  padding: 70px 28px 130px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 70px));
  margin-bottom: -40px;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  font-family: var(--body-font);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-deep);
  margin-bottom: 18px;
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--peach-deep);
  border-radius: 999px;
}
.hero h1 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  color: var(--peach);
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--peach-deep);
  letter-spacing: -0.04em;
}
.hero-sub {
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--peach-deep);
  max-width: 38em;
}
.hero-image {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45);
  transform: rotate(-1.2deg);
}
.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

/* ===== Main content ===== */
main { background: var(--peach); }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 28px;
}

.content h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 56px 0 18px;
  color: var(--indigo);
  position: relative;
  padding-left: 22px;
}
.content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 6px;
  height: 0.85em;
  background: var(--indigo);
  transform: skewY(-12deg);
}
.content h2:first-child { margin-top: 0; }

.content h3 {
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 30px 0 10px;
  color: var(--indigo);
  letter-spacing: -0.01em;
}

.content p {
  margin: 0 0 18px;
  color: var(--indigo);
  max-width: 70ch;
}
.content p strong { font-weight: 600; }
.content ul, .content ol {
  margin: 0 0 22px 22px;
  color: var(--indigo);
}
.content li { margin-bottom: 8px; }

.content a {
  color: var(--indigo);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: var(--indigo);
  font-weight: 500;
}

/* Inline images */
.inline-figure {
  margin: 36px 0;
  position: relative;
}
.inline-figure img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 2px;
}
.inline-figure.tilt-l img { transform: rotate(-0.8deg); box-shadow: 16px 16px 0 0 var(--indigo); }
.inline-figure.tilt-r img { transform: rotate(0.6deg); box-shadow: -14px 14px 0 0 var(--indigo); }
.inline-figure figcaption {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* Pull-quote / callout — diagonal indigo strip */
.pullquote {
  background: var(--indigo);
  color: var(--peach);
  padding: 50px 36px;
  margin: 50px -28px;
  clip-path: polygon(0 24px, 100% 0, 100% calc(100% - 24px), 0 100%);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 1.45rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.pullquote span {
  display: block;
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: var(--peach-deep);
}

/* Two-column lead */
.lead-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}
.lead-grid .lead-num {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: clamp(3.4rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--indigo);
  border-top: 3px solid var(--indigo);
  padding-top: 14px;
}

/* ===== Footer (two-tone) ===== */
.site-footer {
  background: var(--indigo);
  color: var(--peach);
  padding: 70px 28px 30px;
  position: relative;
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
  margin-top: 60px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}
.footer-brand h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--peach);
}
.footer-brand p {
  color: var(--peach-deep);
  font-size: 0.98rem;
  max-width: 30em;
  margin-bottom: 20px;
}
.footer-brand small {
  color: var(--peach-deep);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.footer-pages h4 {
  font-family: var(--body-font);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach-deep);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-pages ul { list-style: none; }
.footer-pages li { margin-bottom: 10px; }
.footer-pages a {
  color: var(--peach);
  text-decoration: none;
  font-size: 0.96rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}
.footer-pages a:hover { border-bottom-color: var(--peach); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-image img { height: 280px; }
  .lead-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 14px; align-items: flex-start; }
  .site-nav { width: 100%; overflow-x: auto; }
  .site-nav ul { gap: 18px; padding-bottom: 4px; white-space: nowrap; }
  .hero { padding: 50px 22px 100px; clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 40px)); }
  .container { padding: 44px 22px; }
  .pullquote { margin: 40px -22px; padding: 40px 24px; font-size: 1.2rem; }
  .site-footer { padding: 60px 22px 28px; clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%); }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 2rem; }
  .content h2 { font-size: 1.45rem; }
  .inline-figure.tilt-l img,
  .inline-figure.tilt-r img { transform: none; box-shadow: 8px 8px 0 0 var(--indigo); }
}
