:root {
  --cream: #f5f1e8;
  --paper: #fbf8f2;
  --ink: #3e3a34;
  --muted: #6d665d;
  --brown: #84644d;
  --brown-dark: #694d3b;
  --teal: #079d87;
  --navy: #17213f;
  --gold: #c2a167;
  --line: rgba(62, 58, 52, .18);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Libre Franklin", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: var(--serif); font-size: 18px; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.licenseos-banner {
  position: absolute;
  top: 106px;
  left: 0;
  z-index: 30;
  width: 290px;
  padding: 30px 38px 34px 28px;
  overflow: hidden;
  color: var(--navy);
  background: #dfcba6;
  font-family: var(--sans);
  box-shadow: 12px 18px 38px rgba(62,58,52,.13);
}
.licenseos-banner:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background:
    repeating-linear-gradient(7deg, transparent 0 7px, rgba(255,255,255,.38) 8px, transparent 9px 15px),
    repeating-linear-gradient(94deg, transparent 0 31px, rgba(105,77,59,.12) 32px, transparent 33px 57px);
}
.licenseos-banner:after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  width: 18px;
  background: var(--paper);
  clip-path: polygon(58% 0, 40% 4%, 65% 8%, 35% 13%, 61% 18%, 43% 23%, 70% 28%, 38% 34%, 59% 39%, 33% 45%, 68% 51%, 42% 57%, 72% 63%, 37% 69%, 64% 75%, 41% 81%, 70% 87%, 44% 93%, 61% 100%, 100% 100%, 100% 0);
}
.licenseos-banner-inner {
  position: relative;
  z-index: 1;
  display: block;
}
.licenseos-banner-heading h2 {
  margin: 0 0 22px;
  color: var(--navy);
  font: 600 30px/1.02 var(--serif);
  letter-spacing: -.035em;
}
.licenseos-banner ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}
.licenseos-banner li { position: relative; padding: 7px 0 7px 18px; border-top: 1px solid rgba(23,33,63,.14); }
.licenseos-banner li:last-child { border-bottom: 1px solid rgba(23,33,63,.14); }
.licenseos-banner li:before {
  content: "";
  position: absolute;
  top: 1.15em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.licenseos-banner a {
  display: block;
  padding: 13px 15px;
  color: var(--cream);
  background: var(--navy);
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.licenseos-banner a span { margin-left: 8px; }

.site-header {
  position: sticky; top: 0; z-index: 20; min-height: 72px; padding: 0 4vw;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(251, 248, 242, .95); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px);
}
.wordmark { font-family: var(--sans); font-size: 15px; font-weight: 600; letter-spacing: -.02em; }
.site-nav { display: flex; align-items: center; gap: 28px; font-family: var(--sans); font-size: 12px; font-weight: 600; }
.site-nav a:not(.nav-action) { padding: 27px 0 24px; border-bottom: 3px solid transparent; }
.site-nav a:hover { border-color: var(--brown); }
.nav-action { padding: 11px 16px; color: var(--paper); background: var(--brown); }
.nav-action span, .text-link span, .button span { margin-left: 8px; }
.menu-toggle { display: none; padding: 8px 12px; color: var(--ink); background: transparent; border: 1px solid var(--line); font: 600 12px var(--sans); }

@media (min-width: 1680px) and (max-width: 1799px) {
  .licenseos-banner {
    width: 220px;
    padding: 24px 30px 28px 22px;
  }
  .licenseos-banner-heading h2 { font-size: 25px; }
  .licenseos-banner ul,
  .licenseos-banner a { font-size: 11px; }
}

@media (max-width: 1679px) {
  .licenseos-banner { display: none; }
}

.panel { padding: 110px max(7vw, calc((100vw - 1200px) / 2)); }
.eyebrow { margin: 0 0 22px; font: 700 11px/1.2 var(--sans); letter-spacing: .18em; color: var(--brown); }
.eyebrow.light { color: #d9bf8b; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.035em; line-height: .96; }
h1 { margin-bottom: 32px; font-size: clamp(64px, 7.5vw, 112px); font-weight: 600; }
h2 { margin-bottom: 30px; font-size: clamp(48px, 5vw, 78px); font-weight: 600; }
h3 { margin-bottom: 6px; font-size: 24px; line-height: 1.2; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 22px; border: 1px solid transparent; font: 700 13px/1.2 var(--sans); transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-brown { color: white; background: var(--brown); }
.button-brown:hover { background: var(--brown-dark); }
.button-outline { color: var(--brown); border-color: var(--brown); background: transparent; }
.button-cream { color: var(--navy); background: var(--cream); }
.text-link { display: inline-block; padding-bottom: 4px; border-bottom: 1px solid currentColor; color: var(--brown); font: 700 13px var(--sans); }
.text-link.light { color: var(--cream); }

.hero {
  position: relative; overflow: hidden; min-height: calc(100vh - 72px); padding: 80px max(7vw, calc((100vw - 1200px) / 2));
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 5vw; background: var(--cream);
}
.hero:before { content: ""; position: absolute; inset: 0 0 0 58%; background: #ebe2d4; }
.hero-copy, .hero-book { position: relative; z-index: 1; }
.hero-tagline { max-width: 680px; margin-bottom: 22px; font-size: clamp(22px, 2.1vw, 31px); font-weight: 700; line-height: 1.25; }
.hero-text { max-width: 650px; color: var(--muted); font-size: 19px; }
.hero-book { min-height: 650px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-book img { position: relative; z-index: 2; width: min(450px, 36vw); height: auto; filter: drop-shadow(0 28px 22px rgba(53, 42, 34, .2)); }
.book-note { position: relative; z-index: 2; max-width: 420px; margin: 4px auto 0; color: var(--muted); text-align: center; font-size: 14px; font-style: italic; }
.orbit { position: absolute; border: 1px solid rgba(132, 100, 77, .22); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; }
.orbit-two { width: 660px; height: 660px; }

.opportunity { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px 9vw; background: var(--paper); }
.section-title { align-self: start; }
.benefit-stack article { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 25px 0; border-top: 1px solid var(--line); }
.benefit-stack article:last-child { border-bottom: 1px solid var(--line); }
.benefit-stack span, .asset-list span { color: var(--brown); font: 600 12px var(--sans); }
.benefit-stack p, .asset-list p { margin: 0; color: var(--muted); }
.section-summary { grid-column: 2; max-width: 720px; margin: 20px 0 0; font-size: 21px; }

.framework { min-height: 820px; display: grid; grid-template-columns: .95fr .72fr .8fr; align-items: center; gap: 5vw; color: #f3eee4; background: var(--teal); }
.framework-copy p:not(.eyebrow) { max-width: 490px; }
.framework-image { align-self: stretch; margin: -110px 0; overflow: hidden; background: #e7d4b2; }
.framework-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(.94); }
.framework-points article { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.28); }
.framework-points article:last-child { border-bottom: 1px solid rgba(255,255,255,.28); }
.framework-points span { display: block; margin-bottom: 12px; color: #d9bf8b; font: 600 12px var(--sans); }
.framework-points p { margin: 0; color: rgba(255,255,255,.78); font-size: 16px; }

.assets { display: grid; grid-template-columns: .8fr 1.15fr; gap: 48px 8vw; background: var(--cream); }
.assets .section-title { grid-column: 1 / -1; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.assets .section-title h2 { max-width: 760px; margin: 0; }
.asset-visual { align-self: stretch; min-height: 520px; overflow: hidden; }
.asset-visual img { width: 100%; height: 100%; object-fit: cover; filter: sepia(.12) saturate(.75); }
.asset-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.asset-list article { padding: 25px 0; border-top: 1px solid var(--line); }
.asset-list article:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }

.system { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; color: var(--cream); background: var(--navy); }
.system-intro p:not(.eyebrow) { max-width: 550px; color: rgba(255,255,255,.75); }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 76px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.2); }
.steps li:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }
.steps span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: var(--navy); background: var(--gold); font: 700 18px var(--sans); }
.steps p { margin: 0; color: rgba(255,255,255,.7); }

.sample { display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 9vw; background: var(--cream); }
.sample-copy > p:not(.eyebrow) { max-width: 620px; font-size: 20px; }
.sample-copy ul { margin: 28px 0 0; padding: 0; list-style: none; }
.sample-copy li { padding: 13px 0 13px 28px; border-top: 1px solid var(--line); position: relative; }
.sample-copy li:last-child { border-bottom: 1px solid var(--line); }
.sample-copy li:before { content: "✓"; position: absolute; left: 0; color: var(--brown); font-family: var(--sans); font-weight: 700; }
.sample-form-card { padding: clamp(30px, 5vw, 62px); color: var(--cream); background: var(--brown); box-shadow: 24px 24px 0 #e5dbc9; }
.sample-form-card h3 { margin-bottom: 28px; font-size: clamp(30px, 3vw, 44px); }
.form-kicker { margin-bottom: 14px; color: #e2cba3; font: 700 11px var(--sans); letter-spacing: .18em; }
.tinyemail-form-host { min-height: 82px; margin-bottom: 16px; }
.sample-fallback { width: 100%; color: var(--brown); background: var(--cream); }
.consent-copy { margin: 18px 0 0; color: rgba(255,255,255,.7); font: 400 11px/1.5 var(--sans); }

.licenseos { display: grid; grid-template-columns: .35fr 1fr .65fr; align-items: center; gap: 5vw; color: var(--cream); background: var(--teal); }
.licenseos-mark { width: 160px; height: 160px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; font: 700 56px var(--serif); }
.licenseos-mark span { margin-left: -22px; margin-top: 56px; font: 700 15px var(--sans); letter-spacing: .12em; }
.licenseos p { color: rgba(255,255,255,.8); }
.licenseos-action { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.25); }

.about { display: grid; grid-template-columns: .85fr 1fr; align-items: stretch; gap: 8vw; background: var(--paper); }
.about-photo { min-height: 650px; overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { align-self: center; max-width: 650px; }
.about-copy .lead { font-size: 25px; font-weight: 600; line-height: 1.45; }
.about-copy p:not(.eyebrow):not(.lead) { color: var(--muted); }

.consult { text-align: center; color: var(--cream); background: var(--navy); }
.consult h2 { max-width: 1050px; margin-left: auto; margin-right: auto; }
.consult > p:not(.eyebrow) { max-width: 690px; margin: 0 auto 34px; color: rgba(255,255,255,.75); font-size: 20px; }
.site-footer { padding: 46px 5vw; display: grid; grid-template-columns: 1fr auto; gap: 22px 60px; color: #ded7ca; background: #22211f; font-family: var(--sans); font-size: 12px; }
.site-footer p { margin: 7px 0 0; color: #9f998f; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.site-footer > p { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }

.article-shell { background: var(--paper); }
.article-header { position: sticky; top: 0; z-index: 20; }
.article-hero { padding: 110px max(7vw, calc((100vw - 1120px) / 2)) 84px; color: var(--cream); background: var(--navy); }
.article-hero .eyebrow { color: var(--gold); }
.article-hero h1 { max-width: 980px; margin-bottom: 28px; font-size: clamp(54px, 7vw, 96px); }
.article-hero > p:not(.eyebrow) { max-width: 760px; margin-bottom: 0; color: rgba(255,255,255,.76); font-size: 22px; }
.article-hub { padding: 90px max(7vw, calc((100vw - 1120px) / 2)) 120px; }
.article-hub-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 7vw; margin-bottom: 70px; }
.article-hub-intro h2 { margin: 0; font-size: clamp(44px, 5vw, 70px); }
.article-hub-intro p { margin: 0; color: var(--muted); font-size: 20px; }
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.article-card { min-height: 330px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); background: var(--cream); transition: transform .18s ease, box-shadow .18s ease; }
.article-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(62,58,52,.10); }
.article-card .eyebrow { margin-bottom: 18px; }
.article-card h2 { margin-bottom: 18px; font-size: 34px; line-height: 1.05; }
.article-card p { color: var(--muted); font-size: 16px; }
.article-card .text-link { margin-top: auto; align-self: flex-start; }
.article-card.placeholder { opacity: .7; }
.article-card.placeholder .text-link { border: 0; color: var(--muted); cursor: default; }
.article-breadcrumbs { margin-bottom: 34px; font: 600 12px var(--sans); color: rgba(255,255,255,.72); }
.article-breadcrumbs a { border-bottom: 1px solid rgba(255,255,255,.45); }
.article-meta { color: rgba(255,255,255,.68); font: 600 12px var(--sans); letter-spacing: .04em; }
.article-body { max-width: 820px; margin: 0 auto; padding: 80px 28px 110px; }
.article-body .lead { color: var(--ink); font-size: 25px; line-height: 1.5; }
.article-body h2 { margin: 58px 0 22px; font-size: clamp(36px, 4vw, 54px); line-height: 1.05; }
.article-body h3 { margin-top: 36px; font-size: 27px; }
.article-body p, .article-body li { color: #504b44; line-height: 1.78; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-callout { margin: 52px 0; padding: 30px; border-left: 6px solid var(--teal); background: var(--cream); }
.article-callout h2 { margin-top: 0; font-size: 36px; }
.article-callout p:last-child { margin-bottom: 0; }
.article-disclaimer { padding-top: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }

@media (max-width: 1279px) {
  .site-nav { gap: 20px; }
}

@media (max-width: 980px) {
  .panel { padding: 80px 6vw; }
  .site-nav { display: none; position: absolute; inset: 72px 0 auto; padding: 22px 6vw; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); }
  .site-nav.open { display: flex; }
  .site-nav a:not(.nav-action) { padding: 13px 0; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding: 70px 6vw; grid-template-columns: 1fr; }
  .hero:before { inset: 58% 0 0; }
  .hero-book { min-height: 500px; }
  .hero-book img { width: min(420px, 72vw); }
  .opportunity, .assets, .system, .sample, .about { grid-template-columns: 1fr; }
  .section-summary { grid-column: auto; }
  .framework { grid-template-columns: 1fr 1fr; }
  .framework-image { min-height: 630px; margin: -80px 0; }
  .framework-points { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
  .assets .section-title { display: block; }
  .licenseos { grid-template-columns: auto 1fr; }
  .licenseos-action { grid-column: 1 / -1; padding: 28px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .about-photo { min-height: 560px; max-height: 700px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-hub-intro { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .site-header { min-height: 64px; padding: 0 20px; }
  .site-nav { top: 64px; }
  .panel, .hero { padding: 62px 22px; }
  h1 { font-size: 56px; }
  h2 { font-size: 44px; }
  .hero:before { inset: 62% 0 0; }
  .hero-book { min-height: 400px; }
  .book-note { font-size: 12px; }
  .orbit-one { width: 340px; height: 340px; }
  .orbit-two { width: 430px; height: 430px; }
  .framework { grid-template-columns: 1fr; }
  .framework-image { min-height: 520px; margin: 12px 0; }
  .framework-points { grid-column: auto; grid-template-columns: 1fr; gap: 0; }
  .asset-list { grid-template-columns: 1fr; }
  .asset-list article:nth-last-child(2) { border-bottom: 0; }
  .asset-visual { min-height: 340px; }
  .sample-form-card { box-shadow: 12px 12px 0 #e5dbc9; }
  .licenseos { grid-template-columns: 1fr; }
  .licenseos-mark { width: 120px; height: 120px; }
  .licenseos-action { grid-column: auto; }
  .about-photo { min-height: 430px; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > p { grid-column: auto; }
  .article-hero { padding: 72px 22px 60px; }
  .article-hero h1 { font-size: 52px; }
  .article-hero > p:not(.eyebrow) { font-size: 18px; }
  .article-hub { padding: 62px 22px 80px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-body { padding: 58px 22px 80px; }
  .article-body .lead { font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
