:root {
  color-scheme: dark;
  --ink: #f7f7f5;
  --muted: #a8aaa8;
  --paper: #fbfaf6;
  --paper-ink: #171715;
  --line: rgba(255, 255, 255, 0.14);
  --soft-line: rgba(23, 23, 21, 0.14);
  --gold: #d8b36a;
  --clay: #9f624b;
  --sage: #879a88;
  --blue: #6d93b8;
  --black: #060706;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 14px clamp(18px, 4vw, 44px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 7, 6, 0.72);
  backdrop-filter: blur(20px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--black);
  font-size: 0.88rem;
}

.nav-links {
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-cta {
  min-width: 76px;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.hero {
  min-height: calc(100svh - 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1460px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px) 52px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 7.8rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 4.4rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.hero-lede,
.section-copy p,
.product-band p,
.audience li,
.cta-section p,
.faq p {
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.hero-lede {
  max-width: 650px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.program-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  color: var(--muted);
}

.program-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--black);
  border-color: var(--ink);
}

.button.secondary {
  color: var(--ink);
}

.button.light.primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--paper-ink);
}

.button.light.secondary {
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-visual {
  position: relative;
  margin: 0;
  min-height: 600px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18% 10% 12%;
  background: radial-gradient(circle, rgba(216, 179, 106, 0.2), transparent 62%);
  filter: blur(24px);
}

.hero-visual img {
  position: relative;
  width: min(760px, 58vw);
  margin-left: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.48));
}

.statement {
  padding: clamp(74px, 11vw, 150px) clamp(18px, 5vw, 72px);
  background: var(--paper);
  color: var(--paper-ink);
}

.statement p {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 5.6rem;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
}

.split-section,
.audience,
.faq {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 138px) clamp(18px, 4vw, 36px);
}

.split-section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
}

.section-copy {
  max-width: 860px;
}

.feature-grid,
.quote-row {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-grid article {
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.feature-grid span {
  display: block;
  margin-bottom: 64px;
  color: var(--gold);
  font-weight: 800;
}

.feature-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.product-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(62px, 8vw, 104px) clamp(18px, 5vw, 72px);
  background: linear-gradient(135deg, var(--sage), var(--blue));
  color: #07100c;
}

.product-band > * {
  max-width: 660px;
}

.product-band .eyebrow,
.product-band p {
  color: rgba(7, 16, 12, 0.74);
}

.product-band h2 {
  margin-bottom: 0;
}

.dark {
  max-width: none;
  padding-left: max(clamp(18px, 5vw, 72px), calc((100vw - var(--max)) / 2));
  padding-right: max(clamp(18px, 5vw, 72px), calc((100vw - var(--max)) / 2));
  background: #10110f;
}

.quote-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

blockquote {
  min-height: 180px;
  margin: 0;
  padding: 26px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.045);
  font-size: 2.45rem;
  line-height: 1.12;
  font-weight: 800;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.audience ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cta-section {
  display: grid;
  place-items: center;
  min-height: 660px;
  padding: clamp(74px, 10vw, 130px) 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 15%, rgba(216, 179, 106, 0.2), transparent 32%),
    linear-gradient(180deg, #080908, #14100d 60%, #060706);
}

.cta-section > * {
  max-width: 760px;
}

.cta-section .hero-actions {
  justify-content: center;
}

.price-panel {
  width: min(100%, 520px);
  margin: 28px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  text-align: left;
}

.price-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: 1;
}

.price-panel p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.lead-form {
  display: grid;
  gap: 14px;
  width: min(100%, 520px);
  margin: 18px auto 0;
  text-align: left;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  font: inherit;
}

.lead-form input {
  min-height: 48px;
  padding: 0 14px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 112px;
  padding: 13px 14px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(216, 179, 106, 0.64);
  outline-offset: 2px;
}

.lead-form button {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.faq h2 {
  max-width: 680px;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 1.32rem;
  font-weight: 800;
}

details p {
  max-width: 760px;
  padding-bottom: 24px;
}

.site-footer {
  justify-content: center;
  gap: 24px;
  min-height: 86px;
  padding: 24px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer span {
  color: var(--ink);
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.archive-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px clamp(18px, 4vw, 36px) 44px;
}

.archive-hero h1 {
  margin-bottom: 18px;
}

.archive-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

.archive-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 36px) 120px;
}

.post-card {
  min-height: 254px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.post-card a {
  display: grid;
  align-content: space-between;
  min-height: 100%;
  padding: 24px;
}

.post-card time,
.article-header time,
.back-link {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.post-card h2 {
  margin: 54px 0 14px;
  font-size: 2rem;
  line-height: 1.08;
}

.post-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.featured-post {
  grid-column: 1 / -1;
  min-height: 340px;
  background:
    radial-gradient(circle at 84% 12%, rgba(216, 179, 106, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.06);
}

.featured-post h2 {
  max-width: 860px;
  font-size: 3.65rem;
}

.featured-post p {
  max-width: 680px;
  font-size: 1.12rem;
}

.article-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 86px clamp(18px, 5vw, 48px) 120px;
}

.article-header {
  margin-bottom: 54px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
}

.article-header time {
  display: block;
  margin-bottom: 18px;
}

.article-header h1 {
  max-width: 940px;
  font-size: 5.3rem;
}

.article-header p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

.article-content {
  max-width: 760px;
  color: #e2e1dc;
}

.article-content p {
  margin-bottom: 1.25em;
  font-size: 1.24rem;
  line-height: 1.78;
}

.article-content p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.08em 0 0;
  color: var(--gold);
  font-size: 4.6rem;
  line-height: 0.8;
  font-weight: 800;
}

.article-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 760px;
  margin-top: 58px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.article-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.not-found {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: 1280px;
  min-height: calc(100svh - 64px);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 72px);
}

.not-found h1 {
  font-size: 5.4rem;
}

.not-found p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.not-found img {
  border-radius: 8px;
  opacity: 0.72;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  max-width: var(--max);
  min-height: 660px;
  margin: 0 auto;
  padding: clamp(64px, 9vw, 118px) clamp(18px, 4vw, 36px);
}

.service-hero h1 {
  font-size: 6.2rem;
}

.service-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.service-status {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.service-status span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-status strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1.12;
}

.service-status p {
  margin: 0;
  font-size: 1rem;
}

.feature-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 1.4rem;
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .hero,
  .product-band,
  .audience {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .statement p {
    font-size: 4.2rem;
  }

  blockquote {
    font-size: 2.15rem;
  }

  .hero-visual {
    min-height: 0;
    order: -1;
  }

  .hero-visual img {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .quote-row {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .feature-grid span {
    margin-bottom: 42px;
  }

  .archive-list {
    grid-template-columns: 1fr;
  }

  .featured-post h2,
  .article-header h1 {
    font-size: 4rem;
  }

  .not-found {
    grid-template-columns: 1fr;
  }

  .not-found h1 {
    font-size: 4rem;
  }

  .service-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-hero h1 {
    font-size: 4.2rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 58px;
  }

  .brand {
    font-size: 0.94rem;
  }

  .nav-cta {
    min-width: 68px;
    padding-inline: 13px;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-lede,
  .section-copy p,
  .product-band p,
  .audience li,
  .cta-section p,
  .faq p {
    font-size: 1.04rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    flex: 1 1 170px;
  }

  .statement p {
    font-size: 2.42rem;
  }

  blockquote {
    font-size: 1.75rem;
  }

  .archive-hero {
    padding-top: 62px;
  }

  .post-card,
  .featured-post {
    min-height: 230px;
  }

  .post-card h2,
  .featured-post h2 {
    margin-top: 40px;
    font-size: 1.72rem;
  }

  .article-shell {
    padding-top: 58px;
  }

  .article-header h1 {
    font-size: 3rem;
  }

  .article-content p {
    font-size: 1.1rem;
    line-height: 1.72;
  }

  .article-cta {
    display: grid;
  }

  .not-found h1 {
    font-size: 3rem;
  }

  .service-hero h1 {
    font-size: 3.1rem;
  }

  .product-band,
  .cta-section {
    text-align: left;
  }

  .cta-section {
    place-items: stretch;
  }

  .cta-section .hero-actions {
    justify-content: flex-start;
  }

  .price-panel {
    margin-inline: 0;
  }

  .lead-form {
    margin-inline: 0;
  }

  .site-footer {
    flex-wrap: wrap;
  }
}
