  :root {
    --paper: #f1e9d8;
    --paper-soft: #e8dec7;
    --paper-deep: #d6c8a9;
    --ink: #1c1813;
    --ink-soft: #4a3f32;
    --ink-muted: #7a6b57;
    --terracotta: #b95a3e;
    --terracotta-deep: #973f26;
    --forest: #2c4a3e;
    --sage: #9ca38b;
    --blue-grey: #637784;
    --rule: rgba(28, 24, 19, 0.18);
    --rule-soft: rgba(28, 24, 19, 0.08);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Newsreader", Georgia, serif;
    font-weight: 380;
    font-size: 17px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      radial-gradient(circle at 18% 24%, rgba(185, 90, 62, 0.035) 0%, transparent 40%),
      radial-gradient(circle at 80% 18%, rgba(99, 119, 132, 0.05) 0%, transparent 34%),
      radial-gradient(circle at 76% 78%, rgba(44, 74, 62, 0.05) 0%, transparent 42%);
    z-index: 1;
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.09 0 0 0 0 0.07 0 0 0 0.16 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
    z-index: 2;
  }

  main, header, footer { position: relative; z-index: 3; }
  img { display: block; max-width: 100%; }
  a { color: inherit; }

  .container { width: min(1240px, calc(100% - 80px)); margin: 0 auto; }
  .narrow { width: min(760px, calc(100% - 80px)); margin: 0 auto; }

  @media (max-width: 720px) { .container, .narrow { width: calc(100% - 48px); } }

  .display {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    font-weight: 390;
    line-height: 0.98;
  }

  .label {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 9, "SOFT" 0;
    font-weight: 520;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  /* ── Nav ── */

  nav.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 24px;
    border-bottom: 1px solid var(--rule);
    gap: 20px;
  }

  .brand {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 9, "SOFT" 100;
    font-weight: 540;
    font-size: 22px;
    text-decoration: none;
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    flex-shrink: 0;
  }

  .brand-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
    display: inline-block;
    transform: translateY(-2px);
  }

  .top-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--ink-soft);
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .top-meta a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s ease; }
  .top-meta a:hover { color: var(--terracotta); }
  .top-meta a:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; border-radius: 4px; }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--terracotta);
    color: var(--paper) !important;
    border-radius: 999px;
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 9, "SOFT" 0;
    font-weight: 520;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
  }

  .nav-cta:hover { background: var(--terracotta-deep) !important; transform: translateY(-1px); color: var(--paper) !important; }

  .lang-switcher {
    display: flex;
    gap: 1px;
    background: var(--paper-soft);
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 3px;
    align-items: center;
    flex-shrink: 0;
  }

  .lang-btn {
    border: none;
    background: transparent;
    padding: 5px 10px;
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 9, "SOFT" 0;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--ink-muted);
    cursor: pointer;
    border-radius: 999px;
    transition: background 0.18s ease, color 0.18s ease;
    letter-spacing: 0.01em;
    line-height: 1;
  }

  .lang-btn.active { background: var(--ink); color: var(--paper); }
  .lang-btn:hover:not(.active) { color: var(--ink); }
  .lang-btn:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

  @media (max-width: 900px) { .top-links { display: none !important; } }
  @media (max-width: 560px) { nav.top { padding: 22px 0 18px; } }

  /* ── Hero ── */

  .hero {
    min-height: 720px;
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
  }

  .hero-art {
    position: absolute;
    inset: 0 0 0 auto;
    width: 66%;
    pointer-events: none;
    z-index: 0;
  }

  .hero-art picture, .hero-art img { width: 100%; height: 100%; }

  .hero-art img {
    object-fit: cover;
    object-position: center;
    opacity: 0.82;
    filter: saturate(0.92) contrast(0.96);
  }

  .hero-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, var(--paper) 0%, rgba(241, 233, 216, 0.92) 24%, rgba(241, 233, 216, 0.58) 54%, rgba(241, 233, 216, 0.1) 100%),
      linear-gradient(0deg, rgba(241, 233, 216, 0.56), rgba(241, 233, 216, 0.02) 52%, rgba(241, 233, 216, 0.38));
  }

  .hero-content { position: relative; z-index: 2; max-width: 780px; }

  .hero-marker { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 70px; }

  .hero-headline { font-size: 118px; max-width: 11ch; margin-bottom: 48px; }

  .hero-headline em { font-style: italic; color: var(--terracotta); font-variation-settings: "opsz" 144, "SOFT" 80; }

  .hero-lede { font-size: 21px; line-height: 1.5; color: var(--ink-soft); max-width: 39ch; font-weight: 400; margin-bottom: 34px; }

  .hero-lede strong { color: var(--ink); font-weight: 540; }

  .hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

  .cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 56px;
    background: var(--ink);
    color: var(--paper);
    padding: 16px 26px;
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 14, "SOFT" 50;
    font-weight: 470;
    font-size: 15px;
    text-decoration: none;
    border-radius: 999px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    border: 1px solid var(--ink);
    cursor: pointer;
  }

  .cta:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-1px); }

  .cta-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
  .cta-secondary:hover { background: var(--ink); color: var(--paper); }

  .hero-aside { font-size: 13px; color: var(--ink-muted); font-style: italic; font-variation-settings: "opsz" 72; }

  @media (max-width: 960px) {
    .hero { min-height: auto; padding: 72px 0 80px; }
    .hero-art { width: 100%; opacity: 0.48; }
    .hero-art::after { background: rgba(241, 233, 216, 0.72); }
    .hero-headline { font-size: 76px; }
  }

  @media (max-width: 560px) {
    .hero-headline { font-size: 54px; }
    .hero-marker { margin-bottom: 48px; }
    .hero-lede { font-size: 18px; }
  }

  /* ── Sections ── */

  section { padding: 120px 0 130px; border-top: 1px solid var(--rule); }
  section:first-of-type { border-top: none; }

  .section-grid { display: grid; grid-template-columns: 210px 1fr; gap: 74px; align-items: start; }

  @media (max-width: 880px) {
    section { padding: 90px 0 100px; }
    .section-grid { grid-template-columns: 1fr; gap: 28px; }
  }

  .section-title {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 144, "SOFT" 60;
    font-weight: 360;
    font-size: 72px;
    line-height: 1;
    max-width: 13ch;
    margin-bottom: 26px;
  }

  .section-title em { font-style: italic; color: var(--terracotta); font-variation-settings: "opsz" 144, "SOFT" 100; }

  .section-intro { color: var(--ink-soft); font-size: 18px; max-width: 42ch; line-height: 1.6; }

  @media (max-width: 760px) { .section-title { font-size: 46px; } }

  /* ── Comparison section ── */

  .comparison-tabs { display: flex; gap: 8px; margin-top: 64px; margin-bottom: 28px; flex-wrap: wrap; }

  .comparison-tab {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 14, "SOFT" 30;
    font-weight: 440;
    font-size: 14px;
    padding: 10px 22px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .comparison-tab.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .comparison-tab:hover:not(.active) { border-color: var(--ink); color: var(--ink); }

  .comparison-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--rule);
    border-radius: 12px;
    overflow: hidden;
  }

  .comparison-col { padding: 48px 44px; background: var(--paper); }
  .comparison-col-eveil { background: var(--forest); color: var(--paper); }

  .comparison-col-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule-soft);
  }

  .comparison-col-eveil .comparison-col-header { border-bottom-color: rgba(241, 233, 216, 0.15); }

  .comparison-col-label {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 9, "SOFT" 0;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--ink-muted);
  }

  .comparison-col-eveil .comparison-col-label { color: rgba(241, 233, 216, 0.5); }

  .comparison-col-sublabel {
    font-family: "Fraunces", Georgia, serif;
    font-size: 11px;
    font-style: italic;
    color: var(--ink-muted);
    text-align: right;
    font-variation-settings: "opsz" 30;
    max-width: 18ch;
    line-height: 1.3;
  }

  .comparison-col-eveil .comparison-col-sublabel { color: rgba(241, 233, 216, 0.4); }

  .comparison-excerpt {
    font-family: "Newsreader", Georgia, serif;
    font-variation-settings: "opsz" 32;
    font-size: 19px;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 34px;
  }

  .comparison-col-eveil .comparison-excerpt { color: rgba(241, 233, 216, 0.92); }
  .comparison-excerpt em { font-style: italic; color: var(--terracotta); }
  .comparison-col-eveil .comparison-excerpt em { color: var(--sage); }

  .comparison-annotations { list-style: none; display: flex; flex-direction: column; gap: 9px; }

  .comparison-annotations li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--ink-muted);
    line-height: 1.45;
  }

  .comparison-col-eveil .comparison-annotations li { color: rgba(241, 233, 216, 0.55); }

  .comparison-annotations li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ink-muted);
    flex: 0 0 auto;
    margin-top: 7px;
  }

  .comparison-col-eveil .comparison-annotations li::before { background: var(--sage); }

  .comparison-footnote {
    margin-top: 22px;
    font-size: 13.5px;
    font-style: italic;
    color: var(--ink-muted);
    font-variation-settings: "opsz" 72;
    max-width: 72ch;
    line-height: 1.5;
  }

  .comparison-bottom { margin-top: 44px; display: flex; justify-content: center; }

  @media (max-width: 840px) {
    .comparison-split { grid-template-columns: 1fr; }
    .comparison-col { padding: 36px 28px; }
    .comparison-excerpt { font-size: 17px; }
  }

  @media (max-width: 480px) {
    .comparison-tabs { gap: 6px; }
    .comparison-tab { font-size: 13px; padding: 9px 16px; }
    .comparison-split { grid-template-columns: 1fr; }
    .comparison-col { padding: 28px 22px; }
  }

  /* ── Manifesto ── */

  .manifesto-text { max-width: 680px; }

  .manifesto-text h2 {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 72, "SOFT" 60;
    font-weight: 360;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 34px;
  }

  .manifesto-text h2 em { font-style: italic; color: var(--terracotta); }
  .manifesto-text p { margin-bottom: 22px; font-size: 18px; color: var(--ink-soft); }
  .manifesto-text strong { color: var(--ink); font-weight: 540; }

  .manifesto-signature { margin-top: 34px; font-style: italic; font-size: 15px; color: var(--ink-muted); font-variation-settings: "opsz" 72; }

  @media (max-width: 760px) { .manifesto-text h2 { font-size: 34px; } }

  /* ── Topics ── */

  .topics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 24px;
    margin-top: 72px;
  }

  .topic {
    min-width: 0;
    transition: transform 0.24s ease;
  }

  .topic:has(a):hover { transform: translateY(-5px); cursor: pointer; }

  .topic a { display: block; }
  .topic a .topic-cover-img,
  .topic-cover-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    border-radius: 8px 5px 5px 8px;
    box-shadow: 14px 24px 36px -18px rgba(28, 24, 19, 0.38);
    background: var(--paper-soft);
  }

  .topic-caption {
    margin-top: 13px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    color: var(--ink-muted);
    font-family: "Fraunces", Georgia, serif;
    font-size: 11px;
    text-transform: uppercase;
  }

  .topic-caption strong {
    color: var(--ink);
    font-weight: 520;
  }

  @media (max-width: 1080px) { .topics-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
  @media (max-width: 720px) {
    .topics-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
  }
  @media (max-width: 480px) {
    .topics-grid { grid-template-columns: 1fr; }
    .topic { width: min(100%, 280px); margin: 0 auto; }
  }

  /* ── Pullquote ── */

  .pullquote { background: var(--forest); color: var(--paper); border-top: none; }

  .pullquote-text {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-style: italic;
    font-weight: 330;
    font-size: 50px;
    line-height: 1.16;
    max-width: 22ch;
    margin: 0 auto;
    text-align: center;
  }

  .pullquote-attribution { margin-top: 34px; text-align: center; font-family: "Fraunces", Georgia, serif; font-size: 12px; text-transform: uppercase; color: rgba(241, 233, 216, 0.68); }

  @media (max-width: 720px) { .pullquote-text { font-size: 32px; } }

  /* ── Values ── */

  .values-list { display: flex; flex-direction: column; margin-top: 72px; }

  .value-row {
    display: grid;
    grid-template-columns: 64px 1fr 64px;
    gap: 28px;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid var(--rule);
  }

  .value-row:last-child { border-bottom: 1px solid var(--rule); }
  .value-num { font-family: "Fraunces", Georgia, serif; font-size: 12px; color: var(--ink-muted); }

  .value-content { display: grid; grid-template-columns: minmax(0, 1fr) 130px minmax(0, 1fr); gap: 24px; align-items: center; }

  .value-pole {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 30, "SOFT" 60;
    font-weight: 410;
    font-size: 21px;
    line-height: 1.18;
  }

  .value-pole.right { text-align: right; }

  .value-slider { height: 2px; background: var(--rule); position: relative; border-radius: 2px; }

  .value-slider::before {
    content: "";
    position: absolute;
    left: var(--pos);
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ink);
  }

  .value-arrow { color: var(--terracotta); }

  @media (max-width: 760px) {
    .value-row { grid-template-columns: 40px 1fr; gap: 14px; }
    .value-arrow { display: none; }
    .value-content { grid-template-columns: 1fr; gap: 10px; }
    .value-pole, .value-pole.right { text-align: left; font-size: 18px; }
    .value-slider { width: 160px; }
  }

  /* ── Sample spread ── */

  .sample { background: var(--paper-soft); }
  .sample-header { text-align: center; margin-bottom: 70px; }
  .sample-header .section-title { margin: 16px auto 0; max-width: 16ch; }

  .spread {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    box-shadow: 0 30px 60px -34px rgba(28, 24, 19, 0.22), 0 8px 20px -10px rgba(28, 24, 19, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1080px;
    margin: 0 auto;
  }

  .spread-figure { min-height: 520px; border-right: 1px solid var(--rule-soft); background: var(--paper); }
  .spread-figure picture, .spread-figure img { width: 100%; height: 100%; }
  .spread-figure img { object-fit: cover; }

  .spread-copy { padding: 62px 56px; display: flex; flex-direction: column; justify-content: center; }

  .spread-narration-text { font-family: "Newsreader", Georgia, serif; font-variation-settings: "opsz" 32; font-size: 24px; line-height: 1.55; color: var(--ink); }

  .spread-narration-text em { font-style: italic; color: var(--terracotta); }

  .spread-page-num { margin-top: 32px; font-family: "Fraunces", Georgia, serif; font-size: 11px; text-transform: uppercase; color: var(--ink-muted); }

  .spread-caption { text-align: center; margin-top: 30px; font-style: italic; font-size: 14px; color: var(--ink-muted); font-variation-settings: "opsz" 72; }

  @media (max-width: 820px) {
    .spread { grid-template-columns: 1fr; }
    .spread-figure { min-height: auto; border-right: none; border-bottom: 1px solid var(--rule-soft); }
    .spread-copy { padding: 42px 32px; }
    .spread-narration-text { font-size: 21px; }
  }

  

  /* ── Styles ── */

  .styles { background: var(--paper-soft); }

  .style-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 72px; }

  .style-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .style-card:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -26px rgba(28, 24, 19, 0.32); }

  .style-card picture, .style-card img { width: 100%; aspect-ratio: 1 / 1; }
  .style-card img { object-fit: cover; background: var(--paper); }

  .style-card-body { padding: 22px 22px 24px; border-top: 1px solid var(--rule-soft); }

  .style-kicker { display: block; font-family: "Fraunces", Georgia, serif; font-size: 11px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 9px; }

  .style-card h3 { font-family: "Fraunces", Georgia, serif; font-variation-settings: "opsz" 30, "SOFT" 50; font-weight: 460; font-size: 22px; line-height: 1.12; margin-bottom: 10px; }

  .style-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.5; }

  .print-note { display: grid; grid-template-columns: 1fr 2fr; gap: 44px; align-items: start; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--rule); color: var(--ink-soft); }

  .print-note strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 23px; line-height: 1.2; color: var(--ink); font-weight: 440; }

  @media (max-width: 1040px) { .style-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) {
    .style-grid { grid-template-columns: 1fr; }
    .print-note { grid-template-columns: 1fr; gap: 14px; }
  }

  /* ── Process ── */

  .process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; align-items: start; margin-top: 84px; }

  .step-num {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-style: italic;
    font-weight: 300;
    font-size: 88px;
    line-height: 1;
    color: var(--terracotta);
    margin-bottom: 28px;
  }

  .step-title { font-family: "Fraunces", Georgia, serif; font-variation-settings: "opsz" 30, "SOFT" 50; font-weight: 460; font-size: 26px; margin-bottom: 14px; }

  .step-desc { color: var(--ink-soft); font-size: 16px; line-height: 1.6; max-width: 32ch; }

  .step-meta { display: block; margin-top: 18px; font-family: "Fraunces", Georgia, serif; font-size: 12px; text-transform: uppercase; color: var(--ink-muted); }

  @media (max-width: 880px) { .process-steps { grid-template-columns: 1fr; gap: 44px; } }

  /* ── Pricing ── */

  .pricing { background: var(--paper-deep); }
  .pricing-header { text-align: center; margin-bottom: 70px; }
  .pricing-header .section-title { margin: 16px auto 0; max-width: 16ch; }

  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .pricing-note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    font-size: 13.5px;
    color: var(--ink-muted);
    font-style: italic;
    font-variation-settings: "opsz" 72;
    text-align: center;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
  }


  .plan {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 38px 30px 34px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .plan:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(28, 24, 19, 0.22); }

  .plan.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }

  .plan.featured .plan-eyebrow,
  .plan.featured .plan-desc,
  .plan.featured .plan-features li,
  .plan.featured .plan-price-currency,
  .plan.featured .plan-price-unit { color: rgba(241, 233, 216, 0.78); }

  .plan-featured-mark { position: absolute; top: -10px; right: 20px; background: var(--terracotta); color: var(--paper); font-family: "Fraunces", Georgia, serif; font-size: 10px; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }

  .plan-eyebrow { font-family: "Fraunces", Georgia, serif; font-size: 11px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 14px; }

  .plan-name { font-family: "Fraunces", Georgia, serif; font-variation-settings: "opsz" 72, "SOFT" 60; font-weight: 410; font-size: 28px; line-height: 1.05; margin-bottom: 12px; }

  .plan-desc { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin-bottom: 24px; min-height: 48px; }

  .plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 26px; }

  .plan-price-amount { font-family: "Fraunces", Georgia, serif; font-variation-settings: "opsz" 72, "SOFT" 60; font-weight: 350; font-size: 50px; line-height: 1; }

  .plan-price-currency { font-family: "Fraunces", Georgia, serif; font-size: 16px; color: var(--ink-muted); }
  .plan-price-unit { font-size: 13px; color: var(--ink-muted); font-style: italic; }

  .plan-features { list-style: none; margin-bottom: 30px; }

  .plan-features li { padding: 8px 0; font-size: 14px; color: var(--ink-soft); border-top: 1px solid var(--rule-soft); display: flex; gap: 10px; }
  .plan-features li:first-child { border-top: none; }

  .plan-features li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--terracotta); flex: 0 0 auto; margin-top: 9px; }

  .plan .cta { width: 100%; }

  .plan.featured .cta { background: var(--paper); color: var(--ink); border-color: var(--paper); }
  .plan.featured .cta:hover { background: var(--terracotta); color: var(--paper); border-color: var(--terracotta); }

  @media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } .plan-desc { min-height: 0; } }

  /* ── Final CTA ── */

  .final-cta { text-align: center; padding: 150px 0 165px; }

  .final-cta-title { font-family: "Fraunces", Georgia, serif; font-variation-settings: "opsz" 144, "SOFT" 80; font-weight: 330; font-size: 96px; line-height: 0.98; max-width: 14ch; margin: 0 auto 36px; }

  .final-cta-title em { font-style: italic; color: var(--terracotta); }

  .final-cta-sub { font-size: 18px; color: var(--ink-soft); max-width: 46ch; margin: 0 auto 46px; line-height: 1.55; }

  .final-cta-form { display: inline-flex; align-items: stretch; background: var(--paper); border: 1px solid var(--ink); border-radius: 999px; overflow: hidden; }

  .final-cta-form input { border: none; background: transparent; padding: 18px 25px; font-family: "Newsreader", Georgia, serif; font-size: 16px; color: var(--ink); min-width: 280px; outline: none; }

  .final-cta-form input::placeholder { color: var(--ink-muted); font-style: italic; }

  .final-cta-form button { border: none; background: var(--ink); color: var(--paper); padding: 18px 30px; font-family: "Fraunces", Georgia, serif; font-size: 15px; cursor: pointer; transition: background 0.25s ease; }

  .final-cta-form button:hover { background: var(--terracotta); }

  @media (max-width: 620px) {
    .final-cta-title { font-size: 52px; }
    .final-cta-form { flex-direction: column; border-radius: 16px; width: 100%; max-width: 360px; }
    .final-cta-form input { min-width: 0; width: 100%; text-align: center; }
  }

  /* ── Footer ── */

  footer { border-top: 1px solid var(--rule); padding: 48px 0 60px; }

  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }

  .footer-brand-name { font-family: "Fraunces", Georgia, serif; font-variation-settings: "opsz" 144, "SOFT" 80; font-weight: 360; font-size: 36px; margin-bottom: 8px; }

  .footer-tag { font-style: italic; color: var(--ink-soft); font-size: 14px; max-width: 28ch; }

  .footer-col h4 { font-family: "Fraunces", Georgia, serif; font-size: 11px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }

  .footer-col ul { list-style: none; }
  .footer-col li { padding: 5px 0; }

  .footer-col a { color: var(--ink); text-decoration: none; font-size: 14.5px; transition: color 0.2s ease; }
  .footer-col a:hover { color: var(--terracotta); }

  .footer-bottom { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding-top: 26px; border-top: 1px solid var(--rule); font-family: "Fraunces", Georgia, serif; font-size: 12px; text-transform: uppercase; color: var(--ink-muted); }

  @media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } .footer-bottom { flex-direction: column; align-items: flex-start; } }

  /* ── Animations ── */

  .fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) forwards; }
  .fade-up.d1 { animation-delay: 0.05s; }
  .fade-up.d2 { animation-delay: 0.18s; }
  .fade-up.d3 { animation-delay: 0.32s; }
  .fade-up.d4 { animation-delay: 0.46s; }

  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

  .reveal { opacity: 1; transform: none; }

  /* ── Comparison controls bar ── */

  .comparison-controls {
    display: flex;
    align-items: stretch;
    margin-top: 22px;
    margin-bottom: 14px;
    border: 1px solid var(--rule);
    border-radius: 8px;
    overflow: hidden;
    background: var(--paper-soft);
  }

  .ctrl-group {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 18px;
    flex: 1;
  }

  .ctrl-group + .ctrl-group { border-left: 1px solid var(--rule); }
  .ctrl-group:first-child { flex: 1.8; min-width: 0; }

  .ctrl-group-label {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 9, "SOFT" 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-muted);
    flex-shrink: 0;
  }

  .ctrl-names {
    display: flex;
    gap: 4px;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    min-width: 0;
  }

  .ctrl-names::-webkit-scrollbar { display: none; }

  .ctrl-name-pill {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 14, "SOFT" 30;
    font-weight: 440;
    font-size: 13px;
    padding: 5px 13px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all 0.15s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .ctrl-name-pill.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .ctrl-name-pill:hover:not(.active) { border-color: var(--ink); color: var(--ink); }


  .ctrl-slider-inline {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 1;
    min-width: 0;
  }

  .ctrl-pole-sm {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 30, "SOFT" 60;
    font-size: 12px;
    color: var(--ink-muted);
    white-space: nowrap;
    width: 42px;
    flex-shrink: 0;
  }

  .ctrl-pole-sm.right { text-align: right; }

  .ctrl-range {
    -webkit-appearance: none;
    appearance: none;
    height: 2px;
    background: var(--rule);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    flex: 1;
    min-width: 60px;
  }

  .ctrl-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ink);
    cursor: pointer;
    transition: background 0.15s ease, transform 0.12s ease;
  }

  .ctrl-range::-webkit-slider-thumb:hover { background: var(--terracotta); transform: scale(1.2); }
  .ctrl-range::-moz-range-thumb { width: 14px; height: 14px; border-radius: 50%; background: var(--ink); border: none; cursor: pointer; }

  @media (max-width: 860px) {
    .comparison-controls { flex-direction: column; }
    .ctrl-group + .ctrl-group { border-left: none; border-top: 1px solid var(--rule); }
    .ctrl-group:first-child { flex: auto; }
  }

  /* Book compare teaser */
  .book-compare-teaser {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding: 20px 28px;
    border: 1px dashed var(--rule);
    border-radius: 8px;
    background: rgba(28, 24, 19, 0.02);
  }

  .bct-covers {
    display: flex;
    align-items: end;
    gap: 8px;
    flex: 0 0 auto;
  }

  .bct-cover {
    width: 62px;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 12px 18px -12px rgba(28, 24, 19, 0.5);
    background: var(--paper-soft);
  }

  .bct-cover:last-child {
    width: 70px;
    transform: translateY(-3px);
  }

  .bct-badge {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 9, "SOFT" 0;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-muted);
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .bct-text { font-size: 15px; color: var(--ink-soft); flex: 1; min-width: 200px; line-height: 1.45; }

  .bct-link {
    font-family: "Fraunces", Georgia, serif;
    font-variation-settings: "opsz" 14, "SOFT" 30;
    font-size: 13px;
    color: var(--terracotta);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease;
  }

  .bct-link:hover { color: var(--terracotta-deep); }

  .comparison-personalized-link { color: var(--terracotta); text-decoration: none; font-style: normal; }

  @keyframes panelFadeIn {
    from { opacity: 0.4; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .panel-animating { animation: panelFadeIn 0.35s cubic-bezier(0.2, 0.6, 0.2, 1) forwards; }

  @media (max-width: 760px) {
    .ctrl-hint { padding-left: 0; }
  }

  /* ── End controls ── */

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fade-up, .reveal { animation: none; opacity: 1; transform: none; transition: none; }
    .style-card, .plan, .cta { transition: none; }
  }

  /* ── More topics waiting in the workshop ── */
  .topics-more {
    margin: 36px auto 0; padding: 22px 28px 4px; text-align: center;
    max-width: 720px; border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 15px; line-height: 1.65; color: var(--ink-muted);
  }
  .topics-more-label {
    display: block; margin-bottom: 8px;
    font-family: "Fraunces", Georgia, serif; font-weight: 540; color: var(--ink-soft);
  }
  .topics-more-list { font-style: italic; }

  /* ── FAQ ── */
  .faq-list { display: flex; flex-direction: column; margin-top: 28px; max-width: 760px; }
  .faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 18px 0; }
  .faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
  .faq-item summary {
    cursor: pointer; list-style: none;
    font-family: "Fraunces", Georgia, serif; font-weight: 540;
    font-size: 19px; color: var(--ink, #1c1813);
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; font-size: 22px; color: var(--ink-muted, #7a6b57); transition: transform 0.2s; flex-shrink: 0; }
  .faq-item[open] summary::after { content: '−'; }
  .faq-item p { margin-top: 12px; color: var(--ink-soft, #4a3f32); font-size: 16px; line-height: 1.65; }
  .faq-header { text-align: center; margin-bottom: 50px; }
  .faq-header .section-title { margin: 16px auto 0; max-width: 22ch; }
  .faq-list { margin-left: auto; margin-right: auto; }


  /* ── Consent banner ── */
  .consent-banner {
    position: fixed; bottom: 16px; left: 16px; right: 16px;
    max-width: 540px; margin: 0 auto; z-index: 9999;
    background: var(--ink, #1c1813); color: var(--paper, #f1e9d8);
    padding: 16px 20px; border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    font-size: 13px; line-height: 1.5;
    display: flex; flex-direction: column; gap: 12px;
  }
  .consent-text { margin: 0; }
  .consent-text a { color: inherit; text-decoration: underline; }
  .consent-actions { display: flex; gap: 8px; justify-content: flex-end; }
  .consent-btn {
    padding: 8px 16px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.3); background: transparent;
    color: inherit; cursor: pointer; font-family: inherit; font-size: 13px;
  }
  .consent-btn.consent-accept { background: var(--terracotta, #b95a3e); border-color: var(--terracotta, #b95a3e); }
  .consent-btn:hover { opacity: 0.9; }
  @media (min-width: 560px) { .consent-banner { flex-direction: row; align-items: center; } .consent-actions { flex-shrink: 0; } }

  /* ── Skip-to-content link (visible only on keyboard focus) ── */
  .skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 10000;
    padding: 10px 18px;
    background: var(--ink);
    color: var(--paper);
    font-family: "Fraunces", Georgia, serif;
    font-size: 13px;
    text-decoration: none;
    border-radius: 6px;
    transition: top 0.15s ease;
  }
  .skip-link:focus { top: 12px; outline: 2px solid var(--terracotta); outline-offset: 2px; }

