  /* ---------- Foundations ---------- */
  :root {
    --green: #1F5E45;
    --green-deep: #174433;
    --green-soft: #2A6E54;
    --cream: #EAE5DC;
    --cream-warm: #F0EBE1;
    --pink: #E76F84;
    --yellow: #EDB73C;
    --orange: #E36D2A;
    --brown: #8E5128;
    --ink: #1E2A24;
    --muted: rgba(31,94,69,0.55);
    --rule: rgba(31,94,69,0.18);
  }

  @page {
    size: 1600px 900px;
    margin: 0;
  }

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

  html, body {
    font-family: 'Poppins', 'Liberation Sans', sans-serif;
    color: var(--green);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  /* ---------- Font ---------- */
  .font-beth {
    font-family: "Beth Ellen", cursive;
  }

  .font-lemonada {
    font-family: "Lemonada", cursive;
    font-optical-sizing: auto;
  }

  .font-barlow {
      font-family: "Barlow Condensed", sans-serif;
  }

#gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:  var(--green);
}

#gate[hidden] { display: none; }

.gate-card {
  background: var(--cream-warm);
  max-width: 400px;
  width: 90%;
  border-radius: 4px;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.gate-mark {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--green);
  text-align: left;
  margin-bottom: 24px;
}

.gate-mark .kana {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.22em;
  letter-spacing: 0.05em;
  margin-bottom: 0.04em;
  line-height: 1;
}

.gate-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: 0.6;
  margin-bottom: 28px;
  text-align: center;
}

#gate-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--cream);
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--brown);
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.15s;
}

#gate-input:focus {
  border-color: var(--green);
}

#gate-btn {
  width: 100%;
  padding: 13px 14px;
  background: var(--green);
  color: var(--cream-warm);
  border: none;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  margin-bottom: 12px;
}

#gate-btn:hover { background: var(--green-deep); }

#gate-error {
  font-size: 12px;
  font-style: italic;
  color: var(--pink);
  margin-top: 4px;
  text-align: center;
}

#gate-error[hidden] { display: none; }


    /* ---------- Page System ---------- */
  .page {
    width: 1600px;
    height: 900px;
    position: relative;
    overflow: hidden;
    page-break-after: always;
    background: var(--cream);
    display: flex;
    flex-direction: column;
  }
  .page:last-child { page-break-after: auto; }

  .page--green { background: var(--green); color: var(--cream); }
  .page--green .page-num,
  .page--green .page-kicker,
  .page--green .page-meta { color: rgba(234,229,220,0.65); }

  /* Page chrome */
  .page-header {
    position: absolute;
    top: 48px;
    left: 80px;
    right: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .page-header .brand-mark {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px;
  }
  .page-footer {
    position: absolute;
    bottom: 40px;
    left: 80px;
    right: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .page-footer .page-num { font-weight: 600; color: var(--green); }
  .page--green .page-footer .page-num { color: var(--cream); }

  .page-content {
    position: absolute;
    top: 130px;
    left: 80px;
    right: 80px;
    bottom: 100px;
  }

  /* ---------- Typography ---------- */
  .display {
    font-family: 'Lora', 'DejaVu Serif', serif;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
  }
  .display-italic {
    font-family: 'Lora', 'DejaVu Serif', serif;
    font-style: italic;
    font-weight: 500;
    line-height: 1.1;
  }

  h1.title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 76px;
    line-height: 1.05;
    letter-spacing: -0.015em;
  }
  h2.section-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.08;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }
  h2.section-title em {
    font-style: italic;
    font-weight: 500;
  }
  h3.subhead {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 14px;
  }
  h4.minihead {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
  }
  .kicker {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1.5px solid var(--green);
  }
  .page--green .kicker { color: var(--cream); border-bottom-color: var(--cream); }

  p, li { font-size: 16px; line-height: 1.55; }
  .lead { font-size: 19px; line-height: 1.5; font-weight: 400; color: rgba(31,94,69,0.75); }
  .small { font-size: 13px; line-height: 1.5; }
  .meta-num {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 14px;
    font-style: italic;
  }

  /* ---------- Helpers ---------- */
  .rule { height: 1px; background: var(--rule); width: 100%; margin: 24px 0; }
  .rule--cream { background: rgba(234,229,220,0.22); }
  .tag {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--green);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .tag--filled { background: var(--green); color: var(--cream); border-color: var(--green); }
  .tag--pink { background: var(--pink); color: #fff; border-color: var(--pink); }
  .tag--cream { background: var(--cream); color: var(--green); border-color: var(--cream); }

  /* Decorative hibiscus corner */
  .hibiscus-bg {
    position: absolute;
    width: 200px;
    opacity: 0.10;
    pointer-events: none;
  }

  /* ===== PAGE 1 — COVER ===== */
  .cover {
    background: var(--green);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .cover-inner {
    text-align: center;
    z-index: 2;
  }
  .cover-logo {
    width: 600px;
    margin: 0 auto 50px;
    display: block;
  }
  .cover-kicker {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(234,229,220,0.7);
    margin-bottom: 24px;
  }
  .cover-title {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 56px;
    color: var(--cream);
    margin-bottom: 70px;
  }
  .cover-meta {
    display: flex;
    justify-content: center;
    gap: 60px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(234,229,220,0.7);
  }
  .cover-meta span strong { color: var(--cream); font-weight: 600; }
  .cover-corner-top, .cover-corner-bottom {
    position: absolute;
    width: 260px;
    opacity: 0.12;
  }
  .cover-corner-top { top: 0; right: 60px; transform: rotate(90deg) }
  .cover-corner-bottom { bottom: 0; left: 60px; transform: rotate(270deg); }
  /* Cover uses pink hibiscus — give them more presence */
  .cover .cover-corner-top, .cover .cover-corner-bottom { opacity: 0.85; }

  /* ===== TABLE OF CONTENTS ===== */
  .toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 80px;
    margin-top: 40px;
  }
  .toc-item {
    display: flex;
    align-items: baseline;
    padding: 13px 0;
    border-bottom: 1px solid var(--rule);
    gap: 24px;
  }
  .toc-num {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    width: 30px;
    font-weight: 500;
  }
  .toc-title {
    flex: 1;
    font-family: 'Lora', serif;
    font-size: 19px;
    font-weight: 500;
  }
  .toc-page {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--green);
    font-weight: 500;
  }

  /* ===== SECTION DIVIDER ===== */
  .divider {
    background: var(--green);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  .divider-inner { max-width: 900px; }
  .divider-num {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 18px;
    color: rgba(234,229,220,0.6);
    margin-bottom: 24px;
    letter-spacing: 0.1em;
  }
  .divider-title {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 80px;
    line-height: 1.05;
    margin-bottom: 28px;
  }
  .divider-title em { font-style: italic; }
  .divider-sub {
    font-size: 15px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(234,229,220,0.75);
  }

  /* ===== TWO COL LAYOUT ===== */
  .two-col {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    height: 100%;
  }
  .two-col .left h2 { font-size: 44px; }
  .two-col .left p { color: rgba(31,94,69,0.75); }
  .page--green .two-col .left p { color: rgba(234,229,220,0.75); }

  /* ===== THREE COL LAYOUT ===== */
  .three-col {
    display: grid;
    grid-template-columns:  1fr 1fr 1fr;
    gap: 24px;
    height: 100%;
  }
  /* ===== MARKET CHART ===== */
  .market-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    margin-top: 30px;
  }
  .funnel { display: flex; flex-direction: column; gap: 16px; }
  .funnel-tier {
    background: rgba(31,94,69,0.06);
    border-left: 4px solid var(--green);
    padding: 18px 24px;
    border-radius: 4px;
  }
  .funnel-tier .tier-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 4px;
  }
  .funnel-tier .tier-num {
    font-family: 'Lora', serif;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .funnel-tier .tier-desc { font-size: 12px; line-height: 1.45; color: rgba(31,94,69,0.7); }
  .funnel-tier.t1 { background: rgba(31,94,69,0.04); }
  .funnel-tier.t2 { background: rgba(31,94,69,0.08); border-left-color: var(--green-soft); }
  .funnel-tier.t3 { background: rgba(231,111,132,0.10); border-left-color: var(--pink); }
  .funnel-tier.t4 { background: rgba(237,183,60,0.18); border-left-color: var(--yellow); }

  /* ===== COMPARISON CARDS ===== */
  .compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
  }
  .compare-card {
    background: rgba(31,94,69,0.05);
    border-radius: 8px;
    padding: 30px 26px;
  }
  .page--green .compare-card { background: rgba(234,229,220,0.07); }
  .compare-card .label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
    font-weight: 600;
  }
  .page--green .compare-card .label { color: var(--cream); }
  .compare-card h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .compare-card .pro { font-size: 14px; line-height: 1.4; margin-bottom: 18px; opacity: 0.85; }
  .compare-card .con {
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    font-size: 14px;
    line-height: 1.4;
    font-style: italic;
    opacity: 0.75;
  }
  .page--green .compare-card .con { border-top-color: rgba(234,229,220,0.18); }

  /* ===== VALUE GRID ===== */
  .value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 32px;
  }
  .value-card {
    border: 1px solid var(--rule);
    padding: 28px 30px;
    border-radius: 6px;
    background: rgba(234,229,220,0.4);
  }
  .value-card .num {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .value-card h3 {
    font-family: 'Lora', serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .value-card p { font-size: 14px; line-height: 1.5; color: rgba(31,94,69,0.75); }

  /* ===== PROMISE PAGE ===== */
  .promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
  }
  .promise {
    padding: 50px 50px;
    background: rgba(234,229,220,0.5);
    border-radius: 10px;
    border: 1px solid var(--rule);
  }
  .promise.dark { background: var(--green); color: var(--cream); border-color: var(--green); }
  .promise.dark h4 { color: var(--cream); }
  .promise.dark .quote { color: var(--cream); }
  .promise h4 { letter-spacing: 0.22em; }
  .promise .quote {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.25;
    margin: 16px 0 18px;
  }
  .promise .quote em { font-style: italic; }
  .promise p { font-size: 15px; line-height: 1.55; }

  /* ===== VIBES GRID ===== */
  .vibes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 22px;
    margin-top: 30px;
    height: 480px;
  }
  .vibe {
    border-radius: 8px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(234,229,220,0.55);
    border: 1px solid var(--rule);
    position: relative;
  }
  .vibe.green { background: var(--green); color: var(--cream); border-color: var(--green); }
  .vibe .vibe-num {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 13px;
    opacity: 0.5;
  }
  .vibe h3 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.15;
  }
  .vibe .vibe-tag {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.7;
  }

  /* ===== PERSONALITY PAGE ===== */
  .personality {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 60px;
    height: 100%;
  }
  .personality .photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  .personality-right h2 { font-size: 44px; line-height: 1.1; }
  .personality-right .traits {
    list-style: none;
    margin-top: 24px;
  }
  .personality-right .traits li {
    padding: 12px 0 12px 36px;
    position: relative;
    border-bottom: 1px solid rgba(234,229,220,0.18);
    font-size: 15px;
  }
  .personality-right .traits li:last-child { border-bottom: none; }
  .personality-right .traits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 1px;
    background: var(--cream);
  }

  /* ===== VOICE PAGE ===== */
  .voice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 22px;
    margin-top: 30px;
  }
  .voice-card {
    background: rgba(234,229,220,0.4);
    border: 1px solid var(--rule);
    padding: 26px 24px;
    border-radius: 6px;
    height: 220px;
  }
  .voice-card .v-num {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .voice-card h3 {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  .voice-card p { font-size: 13px; line-height: 1.5; color: rgba(31,94,69,0.75); }

  .is-isnt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 24px;
  }
  .is-isnt-col h3 {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
  }
  .is-isnt-col h3.no { color: var(--pink); }
  .is-isnt-col ul { list-style: none; }
  .is-isnt-col li {
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.45;
    border-bottom: 1px solid var(--rule);
    display: flex;
    gap: 12px;
  }
  .is-isnt-col li::before {
    content: "—";
    color: var(--muted);
    flex-shrink: 0;
  }
  .is-isnt-col li:last-child { border-bottom: none; }

  /* ===== KEY MESSAGE ===== */
  .km-hero {
    background: rgba(31,94,69,0.04);
    border-left: 5px solid var(--green);
    padding: 36px 44px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 36px;
  }
  .km-hero h2 {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .km-hero p { font-size: 15px; line-height: 1.55; color: rgba(31,94,69,0.75); }
  .angle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .angle {
    background: var(--green);
    color: var(--cream);
    padding: 28px 26px;
    border-radius: 8px;
  }
  .angle:nth-child(2) { background: var(--pink); }
  .angle:nth-child(3) { background: var(--yellow); color: var(--green-deep); }
  .angle .angle-num {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 8px;
  }
  .angle h3 {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .angle .angle-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0.75;
  }
  .angle p { font-size: 13px; line-height: 1.5; }

  /* ===== CONTENT PILLAR ===== */
  .pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 22px;
    margin-top: 24px;
  }
  .pillar {
    border: 1px solid var(--rule);
    padding: 24px 22px;
    border-radius: 6px;
    background: rgba(234,229,220,0.4);
    height: 360px;
    display: flex;
    flex-direction: column;
  }
  .pillar .p-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--green);
    color: var(--cream);
    padding: 4px 10px;
    border-radius: 999px;
    align-self: flex-start;
    margin-bottom: 14px;
    font-weight: 600;
  }
  .pillar h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .pillar > p { font-size: 13px; line-height: 1.5; color: rgba(31,94,69,0.75); margin-bottom: 14px; }
  .pillar ul { list-style: none; flex: 1; }
  .pillar ul li {
    font-size: 12px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--rule);
    color: rgba(31,94,69,0.85);
  }
  .pillar ul li:last-child { border-bottom: none; }
  .pillar-cta {
    margin-top: 14px;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 13px;
    color: var(--green);
  }

  /* ===== LOGO PAGES ===== */
  .logo-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .logo-showcase img { width: 720px; }
  .logo-spec {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
  }
  .logo-spec-text h3 { margin-top: 20px; }
  .logo-spec-text p { font-size: 14px; line-height: 1.6; color: rgba(31,94,69,0.78); margin-bottom: 20px; }
  .logo-spec-text .construct-img { width: 100%; margin-top: 20px; }
  .logo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
  }
  .logo-pair > div { display: flex; align-items: center; justify-content: center; }
  .logo-pair .cream-bg { background: var(--cream); }
  .logo-pair .green-bg { background: var(--green); }
  .logo-pair img { width: 460px; }

  /* ===== COLOR PAGE ===== */
  .color-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
  .swatch {
    height: 210px;
    border-radius: 8px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  .swatch .s-label {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.85;
  }
  .swatch .s-codes { font-size: 12px; line-height: 1.6; font-family: 'Poppins', sans-serif; }
  .swatch .s-codes strong { font-weight: 600; }
  .swatch.cream { background: var(--cream-warm); color: var(--green); border: 1px solid var(--rule); }
  .swatch.green { background: var(--green); color: var(--cream); }
  .swatch.pink { background: var(--pink); color: #fff; }
  .swatch.yellow { background: var(--yellow); color: var(--green-deep); }
  .swatch.orange { background: var(--orange); color: #fff; }
  .swatch.brown { background: var(--brown); color: var(--cream); }
  .color-section + .color-section { margin-top: 24px; }
  .color-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .color-section-head h3 { font-size: 22px; }
  .color-section-head p { font-size: 13px; color: var(--muted); max-width: 480px; text-align: right; }

  /* ===== TYPOGRAPHY ===== */
  .type-stack { margin-top: 30px; }
  .type-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    padding: 36px 0;
    border-top: 1px solid var(--rule);
    align-items: center;
  }
  .type-row:last-child { border-bottom: 1px solid var(--rule); }
  .type-meta .level {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .type-meta .name {
    font-size: 22px;
    font-weight: 600;
  }
  .type-sample-headline {
    font-style: italic;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.05;
  }
  .type-sample-subhead {
    font-weight: 600;
    font-size: 32px;
    line-height: 1.15;
  }
  .type-sample-body {
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
    max-width: 700px;
  }

  /* ===== VISUAL IDENTITY ===== */
  .tagline-graphic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
    align-items: center;
    height: 460px;
  }
  .tagline-graphic > div {
    background: rgba(234,229,220,0.45);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .tagline-graphic .show {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tagline-graphic img { max-width: 100%; max-height: 100%; object-fit: contain; }

  .vg-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    margin-top: 24px;
  }
  .vg-grid img { width: 100%; border-radius: 6px; }
  .vg-principles { display: flex; flex-direction: column; gap: 18px; }
  .vg-principle {
    border-left: 3px solid var(--green);
    padding-left: 20px;
  }
  .vg-principle h4 {
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .vg-principle p { font-size: 13px; line-height: 1.5; color: rgba(31,94,69,0.7); }

  /* ===== APPLICATIONS ===== */
  .app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 24px;
    height: 580px;
  }
  .app-card {
    display: flex;
    flex-direction: column;
  }
  .app-card .app-img {
    flex: 1;
    background: rgba(31,94,69,0.05);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .app-card .app-img img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }
  .app-card h3 { font-size: 22px; margin-bottom: 4px; }
  .app-card p { font-size: 13px; color: var(--muted); }

  /* ===== ESSENCE / NARRATIVE PAGES ===== */
  .narrative-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
  }
  .narrative-inner {
    max-width: 1100px;
  }
  .narrative-inner h2 {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 56px;
    line-height: 1.12;
    margin-bottom: 30px;
  }
  .narrative-inner p {
    font-size: 18px;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 980px;
  }
  .narrative-inner p.lead { font-size: 22px; line-height: 1.5; font-style: italic; font-family: 'Lora', serif; margin-bottom: 24px; opacity: 0.9; }

  /* ===== POSITIONING ===== */
  .pos-hero {
    margin-bottom: 36px;
    text-align: center;
  }
  .pos-hero .pos-tag {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(234,229,220,0.7);
    margin-bottom: 16px;
  }
  .pos-hero h2 {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .pos-hero p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.85;
  }
  .pos-quad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .pos-cell {
    background: rgba(234,229,220,0.07);
    border: 1px solid rgba(234,229,220,0.18);
    padding: 24px 26px;
    border-radius: 8px;
  }
  .pos-cell h4 {
    color: var(--cream);
    margin-bottom: 10px;
  }
  .pos-cell p { font-size: 13px; line-height: 1.55; opacity: 0.85; }

  /* ===== EMOTIONAL GAP ===== */
  .gap-page { display: flex; flex-direction: column; justify-content: flex-start; height: 100%; }
  .gap-page .pull {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 54px;
    line-height: 1.15;
    color: var(--green);
    margin: 40px 0 32px;
    max-width: 1100px;
  }
  .gap-page .pull em { color: var(--pink); font-style: italic; }

  .fear-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: start;
    margin-top: 30px;
  }
  .fear-list { list-style: none; }
  .fear-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--rule);
    font-size: 16px;
    display: flex;
    gap: 16px;
    align-items: baseline;
  }
  .fear-list li::before {
    content: "✕";
    color: var(--pink);
    font-weight: 600;
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
  }
  .fear-side {
    background: var(--green);
    color: var(--cream);
    padding: 36px 36px;
    border-radius: 10px;
  }
  .fear-side h4 { color: var(--cream); margin-bottom: 16px; letter-spacing: 0.2em; }
  .fear-side ul { list-style: none; }
  .fear-side ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(234,229,220,0.2);
    font-size: 15px;
  }
  .fear-side ul li:last-child { border-bottom: none; }

  /* ===== STANDARD PAGE ===== */
  .standard-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 50px;
    margin-top: 30px;
  }
  .standard-item {
    display: flex;
    gap: 24px;
    padding: 18px 0;
    border-top: 1px solid var(--rule);
  }
  .standard-item .num {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 32px;
    font-weight: 600;
    color: var(--green);
    line-height: 1;
    width: 50px;
    flex-shrink: 0;
  }
  .standard-item h4 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .standard-item p { font-size: 13px; line-height: 1.55; color: rgba(31,94,69,0.7); }

  /* ===== CHARACTER ===== */
  .character-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-top: 28px;
  }
  .character-card {
    background: rgba(234,229,220,0.4);
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 28px 30px;
    position: relative;
  }
  .character-card .c-num {
    position: absolute;
    top: 22px;
    right: 28px;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 38px;
    color: rgba(31,94,69,0.15);
    font-weight: 600;
    line-height: 1;
  }
  .character-card h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    max-width: 80%;
  }
  .character-card p { font-size: 13px; line-height: 1.55; color: rgba(31,94,69,0.75); }

  /* ===== CLOSING / END ===== */
  .closing {
    background: var(--green);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .closing img { width: 320px; margin-bottom: 50px; }
  .closing h2 {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .closing .meta {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(234,229,220,0.6);
    margin-top: 40px;
  }
  .closing .tagline { width: 280px; margin: 40px auto 0; }

  /* Screen scaling — fit pages to viewport width while preserving 1600x900 internal layout */
  @media screen {
    body {
      background: #1a3d2e;
      padding: 24px 0;
      min-height: 100vh;
    }
    .page {
      margin: 0 auto 24px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.25);
      transform-origin: top center;
    }
    /* Use CSS transform to scale down on narrow screens */
    @media (max-width: 1648px) {
      .page { transform: scale(calc((100vw - 48px) / 1600)); margin-bottom: calc(24px - (1 - (100vw - 48px) / 1600) * 900px); }
    }
  }

  /* ===================================================
   RESPONSIVE OVERRIDES
   Append after all existing styles.
   Desktop (≥1024px): existing slide-scale behavior
   Tablet (600–1023px): fluid layout, 1–2 col grids
   Mobile (<600px): single column, linearized
   =================================================== */

@media screen and (max-width: 1023px) {

  /* --- Page shell --- */
  body { background: #f4f0e8; padding: 0; }

  .page {
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    transform: none !important;
    margin: 0 0 2px !important;
    box-shadow: none !important;
    overflow: visible !important;
    display: block !important;
    padding: 48px 32px 56px !important;
    position: relative !important;
  }

  /* Undo the JS/CSS scale trick entirely */
  @media (max-width: 1648px) {
    .page {
      transform: none !important;
      margin-bottom: 2px !important;
    }
  }

  /* --- Absolutely-positioned chrome → static --- */
  .page-header,
  .page-footer {
    position: static !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
  }
  .page-footer { margin-top: 32px; margin-bottom: 0 !important; }

  .page-content {
    position: static !important;
    top: unset !important;
    left: unset !important;
    right: unset !important;
    bottom: unset !important;
    width: 100% !important;
  }

  /* --- Typography scale --- */
  h1.title            { font-size: 48px !important; }
  h2.section-title    { font-size: 36px !important; }
  h3.subhead          { font-size: 22px !important; }
  .lead               { font-size: 17px !important; }
  .divider-title      { font-size: 52px !important; }
  .cover-title        { font-size: 38px !important; }
  .promise .quote     { font-size: 24px !important; }
  .km-hero h2         { font-size: 30px !important; }
  .narrative-inner h2 { font-size: 38px !important; }
  .narrative-inner p  { font-size: 16px !important; }
  .pos-hero h2        { font-size: 36px !important; }
  .gap-page .pull     { font-size: 36px !important; }
  .closing h2         { font-size: 34px !important; }

  /* --- Grids: collapse to 2-col or 1-col --- */
  .two-col,
  .personality,
  .logo-spec,
  .tagline-graphic    { grid-template-columns: 1fr !important; gap: 32px !important; height: auto !important; }

  .compare-grid       { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .value-grid         { grid-template-columns: 1fr 1fr !important; }
  .toc-grid           { grid-template-columns: 1fr !important; gap: 0 !important; }
  .promise-grid       { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .vibes-grid         { grid-template-columns: 1fr 1fr 1fr !important; height: auto !important; gap: 16px !important; }
  .voice-grid         { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .pillar-grid        { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .market-grid        { grid-template-columns: 1fr !important; }
  .angle-grid         { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .standard-list      { grid-template-columns: 1fr 1fr !important; }
  .character-grid     { grid-template-columns: 1fr 1fr !important; }
  .fear-grid          { grid-template-columns: 1fr !important; }
  .is-isnt            { grid-template-columns: 1fr 1fr !important; }
  .color-grid         { grid-template-columns: 1fr 1fr 1fr !important; }
  .logo-pair          { grid-template-columns: 1fr !important; height: auto !important; }
  .logo-pair > div    { padding: 40px !important; }
  .app-grid           { grid-template-columns: 1fr 1fr !important; height: auto !important; }
  .pos-quad           { grid-template-columns: 1fr 1fr !important; }
  .vg-grid            { grid-template-columns: 1fr !important; }
  .type-row           { grid-template-columns: 160px 1fr !important; gap: 28px !important; }

  /* --- Fixed heights → auto --- */
  .vibes-grid,
  .app-grid,
  .app-card,
  .pillar,
  .voice-card,
  .vibe { height: auto !important; min-height: unset !important; }

  .pillar             { height: auto !important; }
  .voice-card         { height: auto !important; }

  /* --- Cover page --- */
  .cover { min-height: 420px !important; }
  .cover-inner { padding: 40px 0 !important; }
  .cover-meta { flex-wrap: wrap !important; gap: 24px !important; }

  /* --- Divider page --- */
  .divider { min-height: 280px !important; padding: 48px 32px !important; }

  /* --- Swatch height --- */
  .swatch { height: auto !important; padding: 20px !important; min-height: 120px !important; }

  /* --- Personality image --- */
  .personality .photo { height: 300px !important; }

  /* --- Hibiscus corners: shrink --- */
  .hibiscus-bg,
  .cover-corner-top,
  .cover-corner-bottom { width: 140px !important; }
}

/* ===================================================
   MOBILE  < 600px — single column, max readability
   =================================================== */
@media screen and (max-width: 599px) {

  .page { padding: 32px 20px 44px !important; }

  /* Typography */
  h1.title            { font-size: 32px !important; }
  h2.section-title    { font-size: 26px !important; }
  h3.subhead          { font-size: 19px !important; }
  .lead               { font-size: 15px !important; }
  .divider-title      { font-size: 36px !important; }
  .cover-title        { font-size: 28px !important; }
  .promise .quote     { font-size: 20px !important; }
  .km-hero h2         { font-size: 22px !important; }
  .narrative-inner h2 { font-size: 28px !important; }
  .narrative-inner p  { font-size: 14px !important; }
  .gap-page .pull     { font-size: 26px !important; }
  .closing h2         { font-size: 26px !important; }
  .pos-hero h2        { font-size: 26px !important; }
  p, li               { font-size: 14px !important; }

  /* All multi-column grids → 1 col */
  .compare-grid,
  .value-grid,
  .promise-grid,
  .vibes-grid,
  .voice-grid,
  .pillar-grid,
  .angle-grid,
  .standard-list,
  .character-grid,
  .is-isnt,
  .color-grid,
  .pos-quad           { grid-template-columns: 1fr !important; }

  /* Explicitly 2-col things that should stay 2-col on mobile if content allows */
  .toc-grid           { grid-template-columns: 1fr !important; }
  .type-row,
  .three-col          { grid-template-columns: 1fr !important; gap: 12px !important; }

  /* Cover */
  .cover-meta         { flex-direction: column !important; gap: 16px !important; align-items: center !important; }
  .cover-logo         { width: 80% !important; }

  /* Logo */
  .logo-pair > div    { padding: 28px !important; }
  .logo-pair img,
  .logo-showcase img  { width: 90% !important; }

  /* Closing */
  .closing img        { width: 200px !important; }

  /* Hibiscus decorations: hide on tiny screens */
  .hibiscus-bg,
  .cover-corner-top,
  .cover-corner-bottom { display: none !important; }
}

/* ===================================================
   EXTRACTED INLINE STYLES — named component classes
   =================================================== */

/* ----- Utility: flex baseline row ----- */
.flex-baseline {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}
.flex-baseline--sm {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.flex-baseline--margin {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 22px 0 16px;
}

/* ----- Utility: spacing helpers ----- */
.mb-22 { margin-bottom: 22px; }
.mb-14 { margin-bottom: 14px; }
.mt-50 { margin-top: 50px; }
.mt-30 { margin-top: 30px; }

/* ----- minihead colour overrides ----- */
.minihead--pink { color: var(--pink) !important; }
.minihead--cream { color: var(--cream) !important; }
.minihead--cream-mb0 { color: var(--cream) !important; margin-bottom: 0 !important; }
.minihead--cream-mb4 { color: var(--cream) !important; margin-bottom: 4px !important; }
.minihead--cream-mt26 { color: var(--cream) !important; margin-top: 26px; margin-bottom: 0 !important; }
.minihead--pink-mb6 { color: var(--pink) !important; margin-bottom: 6px !important; }

/* ----- subhead: remove bottom margin ----- */
.subhead--no-mb { margin-bottom: 0 !important; }

/* ----- tag colour variants ----- */
.tag--green-border { border-color: var(--green); color: var(--green); }
.tag--muted-border { border-color: rgba(31,94,69,0.4); color: rgba(31,94,69,0.6); }

/* ----- Section title size variants ----- */
.section-title--50 { font-size: 50px; }
.section-title--48 { font-size: 48px; margin-bottom: 14px; }
.section-title--64 { font-size: 64px; }

/* ===== TOC PAGE ===== */
.toc-lead {
  max-width: 720px;
  color: rgba(31,94,69,0.75);
  margin-bottom: 10px;
}
.minihead--toc-first { margin-top: 30px; }
.minihead--toc-second { margin-top: 36px; }

/* ===== SEGMENTS PAGE ===== */
.segments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 36px;
}
.segment-p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(31,94,69,0.75);
}
.segment-p strong { color: var(--green); font-weight: 600; }
.segment-p--sm {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(31,94,69,0.7);
}
.not-segments-box {
  background: rgba(31,94,69,0.04);
  padding: 28px;
  border-radius: 8px;
}

/* ===== MARKET POTENTIAL PAGE ===== */
.market-info-card {
  background: var(--green);
  color: var(--cream);
  border-radius: 10px;
  padding: 36px 34px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.market-source-list {
  list-style: none;
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.85;
}
.market-method-p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.85;
  margin-bottom: 22px;
}
.market-quote {
  border-top: 1px solid rgba(234,229,220,0.2);
  padding-top: 20px;
  font-style: italic;
  font-size: 14px;
  opacity: 0.85;
  font-family: 'Lora', serif;
}

/* ===== DAILY MEAL — NEED EMERGES BANNER ===== */
.need-banner {
  margin-top: 50px;
  background: var(--green);
  color: var(--cream);
  padding: 28px 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.need-banner-icon {
  width: 70px;
  opacity: 0.5;
  flex-shrink: 0;
}
.need-banner-p {
  font-size: 17px;
  line-height: 1.5;
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 500;
}
.underline-offset {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== EMOTIONAL GAP PAGE ===== */
.gap-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 24px;
}
.gap-explanation {
  font-size: 18px;
  line-height: 1.55;
  max-width: 540px;
  color: var(--green);
}
.gap-compare-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.compare-cell {
  border-radius: 6px;
  padding: 18px 20px;
}
.compare-cell--pink { background: rgba(231,111,132,0.12); }
.compare-cell--green { background: var(--green); color: var(--cream); }
.compare-cell-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.compare-cell-label--pink { color: var(--pink); }
.compare-cell-label--cream { opacity: 0.75; }
.compare-cell-body { font-size: 14px; line-height: 1.4; }

/* ===== FEAR PAGE ===== */
.fear-italic-quote {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(234,229,220,0.2);
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.9;
}

/* ===== PURPOSE PAGE ===== */
.purpose-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  height: 80%;
  align-items: center;
}
.purpose-card {
  background: var(--green);
  color: var(--cream);
  padding: 60px;
  border-radius: 12px;
  position: relative;
}
.purpose-card-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 90px;
  opacity: 0.35;
}
.purpose-card-quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 30px;
  line-height: 1.35;
  font-weight: 500;
  margin-bottom: 30px;
}
.purpose-divider {
  height: 1px;
  background: rgba(234,229,220,0.25);
  margin: 28px 0;
}
.purpose-list-wrap {
  font-size: 15px;
  line-height: 1.55;
}
.purpose-list { list-style: none; }
.purpose-list-item {
  padding: 8px 0;
  border-bottom: 1px solid rgba(234,229,220,0.15);
  display: flex;
  gap: 12px;
}
.purpose-list-item--last {
  padding: 8px 0;
  display: flex;
  gap: 12px;
}
.purpose-bullet { color: var(--pink); opacity: 0.9; }
.purpose-p { margin-bottom: 12px; opacity: 0.85; }

/* ===== VALUES PAGE ===== */
.values-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 70px;
  align-items: start;
}
.value-grid--no-mt { margin-top: 0; }

/* ===== POSITIONING PAGE ===== */
.positioning-bg-icon {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 280px;
  opacity: 0.15;
}

/* ===== NARRATIVE PAGE ===== */
.narrative-body { color: rgba(31,94,69,0.8); }
.narrative-closing {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 22px;
  margin-top: 24px;
  color: var(--green);
  font-weight: 500;
}

/* ===== ESSENCE PAGE ===== */
.essence-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: start;
}
.essence-inspired-box {
  margin-top: 30px;
  padding: 24px;
  background: rgba(31,94,69,0.06);
  border-radius: 8px;
  border-left: 4px solid var(--pink);
}
.essence-inspired-p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(31,94,69,0.78);
}
.essence-p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 18px;
  color: rgba(31,94,69,0.82);
}
.essence-em { font-style: italic; color: var(--green); font-weight: 600; }
.essence-blockquote {
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
  font-family: 'Lora', serif;
  color: var(--green);
  padding: 16px 20px;
  border-left: 3px solid var(--green);
  background: rgba(31,94,69,0.04);
}

/* ===== PERSONALITY PAGE ===== */
.personality-intro {
  font-style: italic;
  font-family: 'Lora', serif;
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 10px;
}
.personality-headline {
  font-family: 'Lora', serif;
  font-weight: 500;
  font-style: italic;
}
.personality-headline em { font-style: italic; font-weight: 600; }
.personality-body {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-top: 24px;
}
.personality-italic-note {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 22px;
  opacity: 0.9;
  padding-top: 18px;
  border-top: 1px solid rgba(234,229,220,0.2);
}

/* ===== VOICE / HOW WE SPEAK PAGE ===== */
.voice-not-banner {
  margin-top: 40px;
  padding: 24px 30px;
  background: rgba(231,111,132,0.08);
  border-radius: 8px;
  border-left: 4px solid var(--pink);
}
.voice-not-p {
  font-size: 15px;
  color: rgba(31,94,69,0.8);
}
.minihead--pink-notbrand { color: var(--pink) !important; margin-bottom: 6px !important; }

/* ===== KEY MESSAGE / CONTENT PILLAR ===== */
.p-tag--pink { background: var(--pink); }
.p-tag--yellow { background: var(--yellow); color: var(--green-deep); }
.p-tag--brown { background: var(--brown); }
.cadence-bar {
  margin-top: 30px;
  padding: 18px 26px;
  background: var(--green);
  color: var(--cream);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cadence-bar p { font-size: 13px; opacity: 0.85; }
.cadence-number {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 600;
}

/* ===== LOGO CONSTRUCTION PAGE ===== */
.logo-construction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 30px;
  align-items: start;
}
.logo-anatomy-card {
  background: rgba(234,229,220,0.5);
  border: 1px solid var(--rule);
  padding: 36px 40px;
  border-radius: 10px;
}
.logo-anatomy-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 18px;
}
.logo-anatomy-img {
  width: 100%;
  margin: 10px 0 20px;
}
.logo-anatomy-p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(31,94,69,0.78);
}
.logo-hibiscus-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  margin: 10px 0 20px;
}
.logo-hibiscus-img { height: 200px; }
.logo-showcase--reduced { height: calc(100% - 130px); }

/* ===== LOGO BACKGROUNDS PAGE ===== */
.page--no-pad { padding: 0; }
.page-header--zi { z-index: 5; }
.page-footer--zi { z-index: 5; }
.logo-pair--absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.logo-bg-relative { position: relative; }
.logo-bg-label {
  position: absolute;
  bottom: 60px;
  left: 80px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
}
.logo-bg-label--green { color: var(--green); }
.logo-bg-label--cream { color: var(--cream); }
.page-footer-label--green { color: var(--green); }
.page-num--cream { color: var(--cream); }

/* ===== TYPOGRAPHY PAGE ===== */
.type-meta-note {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===== TAGLINE / GRAPHIC ELEMENT PAGE ===== */
.visual-element-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}
.visual-element-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  text-align: center;
}
.hibiscus-pattern-img { max-width: 80%; }
.vg-photo { width: 100%; border-radius: 8px; }

/* ===== POSTER PAGE ===== */
.poster-grid--mt { margin-top: 20px; }
.poster-img { width: 100%; }
.page-caption {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ===== PROMISE PAGE — paragraph overrides ===== */
.promise-p-light { color: rgba(31,94,69,0.75); }
.promise-p-dark  { opacity: 0.85; }

/* ===== STANDARD LIST full-width item ===== */
.standard-item--full { grid-column: span 2; }

/* ===== NARRATIVE non-italic span ===== */
.narrative-strong { font-style: normal; font-weight: 600; }

/* ===== PACKAGING PAGE ===== */
.packaging-grid { 
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 24px;
}
.packaging-container {
  background: rgba(31,94,69,0.04);
  border-radius: 8px;
  padding: 20px;
  height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.packaging-box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.packaging-img { width: 100%; }
.packaging-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

/* ===== CLOSING PAGE ===== */
.closing-tagline-img { margin-top: 30px; }

/* ===================================================
   RESPONSIVE ADDITIONS FOR EXTRACTED CLASSES
   =================================================== */

@media screen and (max-width: 1023px) {
  .segments-grid,
  .gap-split-grid,
  .purpose-grid,
  .values-grid,
  .essence-grid,
  .logo-construction-grid,
  .packaging-grid         { grid-template-columns: 1fr !important; gap: 28px !important; height: auto !important; }

  .gap-compare-mini       { grid-template-columns: 1fr 1fr !important; }

  .purpose-grid           { height: auto !important; }
  .purpose-card           { padding: 36px !important; }
  .purpose-card-quote     { font-size: 22px !important; }

  .logo-anatomy-card      { padding: 24px !important; }
  .logo-hibiscus-wrap     { height: 160px !important; }

  .market-info-card       { margin-top: 20px; }

  .need-banner            { flex-direction: column; gap: 20px; }

  .packaging-box          { height: auto !important; min-height: 200px; }

  .cadence-bar            { flex-direction: column; gap: 14px; text-align: center; }

  .logo-pair--absolute    { position: static !important; }
  .page--no-pad           { padding: 32px 20px 44px !important; }
  .logo-bg-label          { position: static !important; margin-top: 12px; padding: 0; }

  .logo-showcase--reduced { height: auto !important; }

  .section-title--50,
  .section-title--64      { font-size: 36px !important; }
  .section-title--48      { font-size: 32px !important; }

  .narrative-closing      { font-size: 18px !important; }
  .gap-explanation        { font-size: 16px !important; max-width: 100% !important; }
}

@media screen and (max-width: 599px) {
  .segments-grid,
  .gap-compare-mini,
  .gap-split-grid,
  .purpose-grid,
  .values-grid,
  .essence-grid,
  .logo-construction-grid,
  .packaging-grid         { grid-template-columns: 1fr !important; }

  .purpose-card           { padding: 24px !important; }
  .purpose-card-quote     { font-size: 18px !important; }
  .need-banner            { padding: 20px 16px !important; }
  .need-banner-p          { font-size: 15px !important; }

  .cadence-number         { font-size: 20px !important; }

  .section-title--50,
  .section-title--64      { font-size: 26px !important; }
  .section-title--48      { font-size: 24px !important; }

  .packaging-box          { height: auto !important; min-height: 160px; }
  .logo-hibiscus-wrap     { height: 120px !important; }
}