/*
Theme Name: Rward Advisory
Theme URI: https://rward.uk
Author: Ryan Ward
Author URI: https://rward.uk
Description: A bespoke editorial theme for Rward Advisory Ltd. Single-page brochure with a typography-led, restrained design language: Fraunces variable serif, Inter sans, JetBrains Mono accents on a four-colour palette of bone, deep ink, warm copper and taupe.
Version: 1.4.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: All rights reserved
License URI: https://rward.uk
Text Domain: rward-advisory
Tags: one-page, editorial, brochure, custom-colors, custom-logo, threaded-comments
*/

/* ============================================================
       FOUNDATIONS
       Editorial-luxury palette: deep ink + warm bone + single copper accent.
       Typography: Fraunces (variable display serif w/ optical sizing,
       italic forms, soft + wonk axes) + Inter (clean grotesque body) +
       JetBrains Mono (small typographic accents).
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      /* The whole palette: 4 colours, used with discipline */
      --bone:        #F4EFE4;
      --bone-deep:   #ECE6D6;
      --ink:         #0F0F10;
      --ink-soft:    #2A2925;
      --copper:      #9C5C3C;
      --copper-deep: #7A4630;
      --taupe:       #847B6A;
      --rule:        rgba(15, 15, 16, 0.14);
      --rule-light:  rgba(15, 15, 16, 0.07);
      --rule-dark:   rgba(244, 239, 228, 0.14);
      --rule-dark-light: rgba(244, 239, 228, 0.07);

      --serif: "Fraunces", "Times New Roman", Georgia, serif;
      --sans:  "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
      --mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;

      --ease:      cubic-bezier(0.22, 1, 0.36, 1);
      --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

    body {
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.55;
      color: var(--ink);
      background: var(--bone);
      letter-spacing: -0.008em;
      font-feature-settings: "ss01", "cv11";
      /* Subtle paper grain across whole page */
      background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.06 0 0 0 0 0.06 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    }

    a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }

    ::selection { background: var(--copper); color: var(--bone); }

    /* ============================================================
       MICRO-TYPOGRAPHY HELPERS
       ============================================================ */
    .smallcaps {
      font-feature-settings: "smcp", "c2sc";
      letter-spacing: 0.18em;
      text-transform: lowercase;
    }
    .oldnums { font-variant-numeric: oldstyle-nums proportional-nums; }
    .tabnums { font-variant-numeric: tabular-nums; }

    /* ============================================================
       OPENING SPLASH — the slow reveal
       Full viewport, deep ink, dramatic typographic entrance.
       ============================================================ */
    .splash {
      min-height: 100vh;
      background: var(--ink);
      color: var(--bone);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    /* Subtle radial glow + grain for depth on dark background */
    .splash::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 20%, rgba(156, 92, 60, 0.10), transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(244, 239, 228, 0.05), transparent 60%);
      pointer-events: none;
    }
    .splash::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.5;
      mix-blend-mode: overlay;
      background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    }

    /* Splash nav — barely there */
    .splash-nav {
      position: relative;
      z-index: 3;
      max-width: 1320px;
      width: 100%;
      margin: 0 auto;
      padding: 32px 48px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--sans);
      font-size: 12px;
      font-weight: 500;
      color: var(--bone);
    }
    .splash-nav .wordmark {
      font-family: var(--serif);
      font-size: 19px;
      font-weight: 400;
      letter-spacing: -0.005em;
      color: var(--bone);
      font-variation-settings: "opsz" 32;
    }
    .splash-nav .wordmark em {
      font-style: italic;
      font-weight: 300;
      color: var(--copper);
      margin: 0 4px;
    }
    .splash-nav .meta {
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: rgba(244, 239, 228, 0.55);
    }

    /* Splash centre */
    .splash-body {
      position: relative;
      z-index: 3;
      flex: 1;
      max-width: 1320px;
      width: 100%;
      margin: 0 auto;
      padding: 0 48px 80px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .splash-eyebrow {
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 56px;
      display: flex;
      align-items: center;
      gap: 16px;
      opacity: 0;
      animation: fadeUp 1.2s var(--ease) 0.3s forwards;
    }
    .splash-eyebrow::before, .splash-eyebrow::after {
      content: "";
      width: 32px;
      height: 1px;
      background: var(--copper);
      opacity: 0.6;
    }
    .splash-eyebrow::after { flex: 1; max-width: 200px; }

    .splash-headline {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(56px, 11vw, 168px);
      line-height: 0.92;
      letter-spacing: -0.045em;
      color: var(--bone);
      font-variation-settings: "opsz" 144, "SOFT" 50;
      text-wrap: balance;
      max-width: 14ch;
      margin-bottom: 56px;
    }
    .splash-headline .line {
      display: block;
      opacity: 0;
      transform: translateY(40px);
      animation: revealLine 1.4s var(--ease) forwards;
    }
    .splash-headline .line:nth-child(1) { animation-delay: 0.5s; }
    .splash-headline .line:nth-child(2) { animation-delay: 0.7s; }
    .splash-headline .line:nth-child(3) { animation-delay: 0.9s; }
    .splash-headline em {
      font-style: italic;
      font-weight: 300;
      color: var(--copper);
      font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    }

    .splash-foot {
      max-width: 540px;
      opacity: 0;
      animation: fadeUp 1.4s var(--ease) 1.3s forwards;
    }
    .splash-foot p {
      font-family: var(--sans);
      font-size: 17px;
      line-height: 1.6;
      color: rgba(244, 239, 228, 0.78);
      font-weight: 300;
      letter-spacing: -0.005em;
    }

    /* Splash bottom indicator */
    .splash-scroll {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(244, 239, 228, 0.5);
      writing-mode: horizontal-tb;
      display: flex;
      align-items: center;
      gap: 10px;
      opacity: 0;
      animation: fadeUp 1.4s var(--ease) 1.6s forwards;
    }
    .splash-scroll::before {
      content: "";
      width: 1px;
      height: 32px;
      background: linear-gradient(to bottom, transparent, rgba(244, 239, 228, 0.6));
      display: inline-block;
      animation: scrollLine 2.4s var(--ease) infinite;
      transform-origin: top;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes revealLine {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollLine {
      0% { transform: scaleY(0); opacity: 0; }
      50% { transform: scaleY(1); opacity: 1; }
      100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }

    /* ============================================================
       PROSE OPENING — a sustained editorial paragraph
       Drop cap, generous measure, slow read
       ============================================================ */
    .prose-section {
      padding: 200px 0 160px;
      background: var(--bone);
      position: relative;
    }
    .prose-container {
      max-width: 760px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .section-mark {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--mono);
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 48px;
    }
    .section-mark::before {
      content: "";
      width: 32px;
      height: 1px;
      background: var(--copper);
    }
    .section-mark .roman {
      font-family: var(--serif);
      font-style: italic;
      font-size: 14px;
      text-transform: none;
      letter-spacing: 0;
      color: var(--ink);
      font-variation-settings: "opsz" 14;
    }
    .prose-headline {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--ink);
      font-variation-settings: "opsz" 80, "SOFT" 50;
      text-wrap: balance;
      margin-bottom: 64px;
    }
    .prose-headline em {
      font-style: italic;
      font-weight: 300;
      color: var(--copper);
      font-variation-settings: "opsz" 80, "SOFT" 100, "WONK" 1;
    }
    .prose-body {
      font-family: var(--serif);
      font-size: 22px;
      line-height: 1.55;
      color: var(--ink-soft);
      font-weight: 400;
      font-variation-settings: "opsz" 24;
      letter-spacing: -0.012em;
    }
    /* The drop cap */
    .prose-body p:first-child::first-letter {
      font-family: var(--serif);
      font-weight: 300;
      float: left;
      font-size: 92px;
      line-height: 0.88;
      padding: 4px 14px 0 0;
      color: var(--copper);
      font-variation-settings: "opsz" 144, "SOFT" 50;
    }
    .prose-body p + p { margin-top: 22px; }
    .prose-body em { font-style: italic; color: var(--ink); }

    /* ============================================================
       PRACTICE — four numbered chapters
       Editorial, two-column, with serif and italic detailing
       ============================================================ */
    .practice {
      padding: 160px 0;
      background: var(--bone);
      border-top: 1px solid var(--rule-light);
    }
    .practice-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .practice-head {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
      align-items: baseline;
      margin-bottom: 100px;
      padding-bottom: 80px;
      border-bottom: 1px solid var(--rule-light);
    }
    .practice-head h2 {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(40px, 5.5vw, 80px);
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--ink);
      font-variation-settings: "opsz" 144, "SOFT" 50;
    }
    .practice-head h2 em {
      font-style: italic;
      font-weight: 300;
      color: var(--copper);
      font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    }
    .practice-head .intro {
      font-family: var(--serif);
      font-size: 19px;
      line-height: 1.55;
      color: var(--ink-soft);
      font-variation-settings: "opsz" 24;
      letter-spacing: -0.008em;
    }
    .practice-head .intro em { font-style: italic; color: var(--copper); }

    .chapters {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--rule);
    }
    .chapter {
      background: var(--bone);
      padding: 72px 56px 80px;
      position: relative;
      transition: background 0.5s var(--ease);
    }
    .chapter:hover { background: var(--bone-deep); }
    .chapter-head {
      display: flex;
      align-items: baseline;
      gap: 20px;
      margin-bottom: 28px;
    }
    .chapter-numeral {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 300;
      font-size: 32px;
      line-height: 1;
      color: var(--copper);
      font-variation-settings: "opsz" 60, "SOFT" 100, "WONK" 1;
      min-width: 36px;
    }
    .chapter-category {
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--taupe);
    }
    .chapter h3 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: clamp(28px, 2.6vw, 38px);
      line-height: 1.08;
      letter-spacing: -0.022em;
      color: var(--ink);
      font-variation-settings: "opsz" 60, "SOFT" 30;
      margin-bottom: 20px;
      text-wrap: balance;
    }
    .chapter h3 em {
      font-style: italic;
      color: var(--copper-deep);
      font-variation-settings: "opsz" 60, "SOFT" 100, "WONK" 1;
    }
    .chapter p {
      font-family: var(--sans);
      font-size: 15.5px;
      line-height: 1.65;
      color: var(--ink-soft);
      font-weight: 400;
      letter-spacing: -0.005em;
      max-width: 38ch;
    }

    /* ============================================================
       PRINCIPLES — dark interlude
       A single sustained statement with attribution
       ============================================================ */
    .principles {
      background: var(--ink);
      color: var(--bone);
      padding: 200px 0;
      position: relative;
      overflow: hidden;
    }
    .principles::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 80% 30%, rgba(156, 92, 60, 0.08), transparent 60%);
      pointer-events: none;
    }
    .principles-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
      z-index: 2;
    }
    .principles .section-mark {
      color: var(--copper);
    }
    .principles .section-mark::before { background: var(--copper); }
    .principles .section-mark .roman { color: var(--bone); }

    .principles-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 56px;
      margin-top: 80px;
      border-top: 1px solid var(--rule-dark);
      padding-top: 80px;
    }
    .principle {
      position: relative;
    }
    .principle-num {
      font-family: var(--serif);
      font-style: italic;
      font-weight: 300;
      font-size: 36px;
      line-height: 1;
      color: var(--copper);
      margin-bottom: 24px;
      font-variation-settings: "opsz" 60, "SOFT" 100, "WONK" 1;
    }
    .principle h4 {
      font-family: var(--serif);
      font-weight: 400;
      font-size: 24px;
      line-height: 1.15;
      letter-spacing: -0.015em;
      color: var(--bone);
      font-variation-settings: "opsz" 32;
      margin-bottom: 14px;
      text-wrap: balance;
    }
    .principle p {
      font-family: var(--sans);
      font-size: 14px;
      line-height: 1.6;
      color: rgba(244, 239, 228, 0.66);
      font-weight: 300;
    }

    .manifesto {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(36px, 5.5vw, 72px);
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--bone);
      font-variation-settings: "opsz" 144, "SOFT" 50;
      text-wrap: balance;
      max-width: 17ch;
    }
    .manifesto em {
      font-style: italic;
      color: var(--copper);
      font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    }
    .manifesto-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: end;
    }
    .manifesto-side {
      padding-bottom: 12px;
      font-family: var(--serif);
      font-size: 19px;
      line-height: 1.55;
      color: rgba(244, 239, 228, 0.75);
      font-variation-settings: "opsz" 24;
      max-width: 38ch;
    }
    .manifesto-side em { font-style: italic; color: var(--bone); }
    .attrib {
      margin-top: 80px;
      padding-top: 32px;
      border-top: 1px solid var(--rule-dark);
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(244, 239, 228, 0.5);
    }
    .attrib .signature {
      font-family: var(--serif);
      font-style: italic;
      font-size: 22px;
      letter-spacing: -0.01em;
      text-transform: none;
      color: var(--bone);
      font-variation-settings: "opsz" 32, "SOFT" 100, "WONK" 1;
    }

    /* ============================================================
       ENGAGEMENT — pricing presented as fine-restaurant menu
       Extreme restraint, generous spacing, oldstyle figures
       ============================================================ */
    .engagement {
      padding: 200px 0;
      background: var(--bone);
    }
    .engagement-inner {
      max-width: 980px;
      margin: 0 auto;
      padding: 0 48px;
    }
    .engagement-head {
      text-align: center;
      margin-bottom: 120px;
    }
    .engagement-head h2 {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(40px, 6vw, 88px);
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--ink);
      font-variation-settings: "opsz" 144, "SOFT" 50;
      margin-bottom: 32px;
      text-wrap: balance;
    }
    .engagement-head h2 em {
      font-style: italic;
      color: var(--copper);
      font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    }
    .engagement-head .lede {
      font-family: var(--serif);
      font-size: 20px;
      line-height: 1.55;
      color: var(--ink-soft);
      max-width: 56ch;
      margin: 0 auto;
      font-variation-settings: "opsz" 24;
    }
    .engagement-head .lede em { font-style: italic; color: var(--copper); }

    .menu {
      max-width: 720px;
      margin: 0 auto;
    }
    .menu-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: baseline;
      padding: 28px 0;
      border-bottom: 1px solid var(--rule-light);
    }
    .menu-row:first-child { border-top: 1px solid var(--rule-light); }
    .menu-row .item {
      font-family: var(--serif);
      font-size: 21px;
      line-height: 1.3;
      color: var(--ink);
      font-variation-settings: "opsz" 24;
    }
    .menu-row .item .sub {
      display: block;
      font-family: var(--sans);
      font-size: 13px;
      color: var(--taupe);
      margin-top: 4px;
      font-weight: 400;
      letter-spacing: -0.005em;
    }
    .menu-row .price {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
      color: var(--ink);
      letter-spacing: -0.015em;
      font-variation-settings: "opsz" 32;
      white-space: nowrap;
      font-variant-numeric: oldstyle-nums proportional-nums;
    }
    .menu-row .price em {
      font-style: italic;
      color: var(--copper);
      font-variation-settings: "opsz" 32, "SOFT" 100, "WONK" 1;
    }
    .menu-row .price.gratis { color: var(--copper); font-style: italic; }
    .menu-note {
      margin-top: 64px;
      text-align: center;
      font-family: var(--serif);
      font-style: italic;
      font-size: 15px;
      color: var(--taupe);
      letter-spacing: -0.005em;
      font-variation-settings: "opsz" 24;
    }

    /* ============================================================
       CONTACT — the closing
       Deep ink, single statement, large italic email
       ============================================================ */
    .contact {
      background: var(--ink);
      color: var(--bone);
      padding: 220px 0 180px;
      position: relative;
      overflow: hidden;
    }
    .contact::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 0%, rgba(156, 92, 60, 0.1), transparent 50%),
        radial-gradient(ellipse at 20% 100%, rgba(244, 239, 228, 0.04), transparent 60%);
      pointer-events: none;
    }
    .contact-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .contact .section-mark {
      justify-content: center;
      color: var(--copper);
    }
    .contact .section-mark::before { background: var(--copper); }
    .contact .section-mark .roman { color: var(--bone); }

    .contact-headline {
      font-family: var(--serif);
      font-weight: 300;
      font-size: clamp(56px, 9vw, 140px);
      line-height: 0.98;
      letter-spacing: -0.045em;
      color: var(--bone);
      font-variation-settings: "opsz" 144, "SOFT" 50;
      margin-bottom: 80px;
      text-wrap: balance;
    }
    .contact-headline em {
      font-style: italic;
      color: var(--copper);
      font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    }
    .contact-email {
      display: inline-block;
      font-family: var(--serif);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(28px, 4vw, 52px);
      letter-spacing: -0.02em;
      color: var(--copper);
      padding: 4px 0;
      border-bottom: 1px solid var(--copper);
      transition: color 0.4s var(--ease), border-color 0.4s var(--ease);
      font-variation-settings: "opsz" 60, "SOFT" 100, "WONK" 1;
    }
    .contact-email:hover {
      color: var(--bone);
      border-bottom-color: var(--bone);
    }
    .contact-foot {
      margin-top: 64px;
      font-family: var(--mono);
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(244, 239, 228, 0.5);
    }
    .contact-foot .dot {
      display: inline-block;
      width: 4px;
      height: 4px;
      background: var(--copper);
      border-radius: 50%;
      margin: 0 12px;
      vertical-align: middle;
      transform: translateY(-2px);
    }

    /* ============================================================
       COLOPHON / FOOTER
       Small calling-card details, very restrained
       ============================================================ */
    footer {
      background: var(--ink);
      color: rgba(244, 239, 228, 0.55);
      padding: 60px 48px 48px;
      border-top: 1px solid var(--rule-dark);
    }
    .colophon {
      max-width: 1320px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .colophon-brand {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 400;
      color: var(--bone);
      letter-spacing: -0.005em;
      margin-bottom: 18px;
      font-variation-settings: "opsz" 32;
    }
    .colophon-brand em {
      font-style: italic;
      font-weight: 300;
      color: var(--copper);
      margin: 0 4px;
      font-variation-settings: "opsz" 32, "SOFT" 100, "WONK" 1;
    }
    .colophon-tag {
      font-family: var(--serif);
      font-style: italic;
      font-size: 14px;
      line-height: 1.55;
      color: rgba(244, 239, 228, 0.55);
      max-width: 32ch;
      font-variation-settings: "opsz" 18, "SOFT" 100, "WONK" 1;
    }
    .colophon-col h5 {
      font-family: var(--mono);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--copper);
      margin-bottom: 18px;
    }
    .colophon-col ul { list-style: none; }
    .colophon-col li {
      font-size: 13px;
      color: rgba(244, 239, 228, 0.55);
      line-height: 1.7;
      letter-spacing: -0.005em;
    }
    .colophon-col a:hover { color: var(--bone); }
    .colophon-legal {
      max-width: 1320px;
      margin: 56px auto 0;
      padding-top: 32px;
      border-top: 1px solid var(--rule-dark-light);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      font-family: var(--mono);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(244, 239, 228, 0.35);
    }

    /* ============================================================
       REVEAL ANIMATIONS
       Slow, considered, never bouncy
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
    }
    .reveal.in-view {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-stagger > * {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
    }
    .reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0ms; }
    .reveal-stagger.in-view > *:nth-child(2) { transition-delay: 120ms; }
    .reveal-stagger.in-view > *:nth-child(3) { transition-delay: 240ms; }
    .reveal-stagger.in-view > *:nth-child(4) { transition-delay: 360ms; }
    .reveal-stagger.in-view > * {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 880px) {
      .splash-nav, .splash-body { padding-left: 28px; padding-right: 28px; }
      .splash-headline { font-size: clamp(48px, 14vw, 88px); margin-bottom: 36px; }
      .splash-eyebrow { margin-bottom: 36px; }

      .prose-section, .practice, .engagement { padding: 100px 0; }
      .prose-container, .practice-inner, .engagement-inner { padding: 0 28px; }
      .prose-body { font-size: 18px; }
      .prose-body p:first-child::first-letter { font-size: 68px; }

      .practice-head {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 56px;
        padding-bottom: 56px;
      }
      .chapters { grid-template-columns: 1fr; }
      .chapter { padding: 48px 32px 56px; }

      .principles, .contact { padding: 120px 0; }
      .principles-inner, .contact-inner { padding: 0 28px; }
      .manifesto-grid { grid-template-columns: 1fr; gap: 36px; }
      .principles-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-top: 56px;
        margin-top: 56px;
      }
      .attrib { flex-direction: column; gap: 12px; align-items: flex-start; }

      .engagement-head { margin-bottom: 64px; }
      .menu-row { grid-template-columns: 1fr; gap: 6px; padding: 22px 0; }
      .menu-row .price { text-align: left; }

      footer { padding: 48px 28px; }
      .colophon { grid-template-columns: 1fr 1fr; gap: 36px; }
      .colophon > div:first-child { grid-column: 1 / -1; }
      .colophon-legal { flex-direction: column; }
    }
    @media (max-width: 480px) {
      .principles-grid { grid-template-columns: 1fr; gap: 40px; }
      .colophon { grid-template-columns: 1fr; }
    }