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

:root {
    --ink:          #0e1a1c;
    --ink-mid:      #17282b;
    --amber:        #b0532f;
    --amber-light:  #d97a4d;
    --amber-pale:   #fbece3;
    --amber-border: #f0cdb8;
    --white:        #ffffff;
    --cream:        #f6f4ee;
    --slate:        #e9e6dc;
    --text-1:       #12191a;
    --text-2:       #3f4849;
    --text-3:       #656f70;
    --text-4:       #98a19f;
    --border:       #e0ddd2;
    --border-mid:   #cbc7b8;
    --shadow-sm:    0 1px 4px rgba(14,26,28,0.06), 0 1px 2px rgba(14,26,28,0.04);
    --shadow-md:    0 4px 24px rgba(14,26,28,0.10), 0 2px 8px rgba(14,26,28,0.06);
    --shadow-lg:    0 24px 64px rgba(14,26,28,0.20), 0 6px 16px rgba(14,26,28,0.08);
    --radius:       4px;
    --radius-lg:    2px;
    --container:    1280px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-1);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
}

/* ============================================================
   EDITORIAL BAR — single-line masthead strip, all pages
   ============================================================ */
.editorial-bar {
    background: var(--ink);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.editorial-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
}

.editorial-bar-text {
    font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.52);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 700px) {
    .editorial-bar-text { font-size: 0.66rem; }
}

/* ============================================================
   HERO — full-bleed background image, editorial frame overlay
   No eyebrow badge, no stats bar.
   ============================================================ */
.hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
}

.hero-bg::before {
    content: '';
    position: absolute; inset: 0;
    background:
        linear-gradient(0deg, rgba(6,12,13,0.94) 0%, rgba(6,12,13,0.62) 32%, rgba(6,12,13,0.20) 58%, rgba(6,12,13,0.38) 100%);
    z-index: 1;
}

.hero-frame {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 96px 0 76px;
}

.hero-frame-inner {
    max-width: 760px;
}

.hero-rule {
    width: 56px; height: 3px;
    background: var(--amber);
    margin-bottom: 28px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4.6vw, 4rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -0.015em;
    color: #ffffff;
    margin-bottom: 26px;
}

.hero-title em {
    font-style: italic;
    color: var(--amber-light);
}

.hero-sub {
    font-size: 1.08rem; color: rgba(255,255,255,0.82);
    line-height: 1.85; font-weight: 300;
    max-width: 560px;
}

.hero-actions {
    display: flex; align-items: center;
    justify-content: flex-start;
    gap: 14px; flex-wrap: wrap;
    margin-top: 36px;
}

.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    background: var(--amber);
    color: #fff;
    font-size: 0.88rem; font-weight: 700; letter-spacing: 0.02em;
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--amber-light); transform: translateY(-2px); }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: rgba(255,255,255,0.78);
    font-size: 0.88rem; font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: var(--radius);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.09);
    color: #fff; border-color: rgba(255,255,255,0.55);
}

@media (max-width: 960px) {
    .hero { min-height: 72vh; }
    .hero-frame { padding: 64px 0 48px; }
    .hero-frame-inner { max-width: none; }
}

/* ============================================================
   OVERVIEW / INTRO SECTION
   ============================================================ */
.intro-section {
    padding: 128px 0;
    background: var(--white);
}

.intro-head {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: end;
    max-width: none;
    margin: 0 0 96px;
    padding-bottom: 40px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.intro-eyebrow {
    display: flex; align-items: center; justify-content: flex-start; gap: 14px;
    margin-bottom: 24px;
}

.eyebrow-line {
    width: 28px; height: 1px;
    background: var(--amber); flex-shrink: 0;
}

.eyebrow-label {
    font-size: 0.63rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--amber);
}

.intro-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700; line-height: 1.12;
    color: var(--text-1);
}

.intro-heading mark {
    background: none;
    color: var(--amber);
}

.intro-lead {
    font-size: 1.04rem; color: var(--text-3);
    line-height: 1.82; font-weight: 400;
    margin: 0 0 0 auto;
    padding-left: 32px;
    border-left: 2px solid var(--amber-border);
}

/* Pillars — stacked editorial rows with rule dividers, not a card grid */
.intro-pillars {
    display: flex;
    flex-direction: column;
    margin-bottom: 96px;
    border-top: 1px solid var(--border);
}

.pillar-row {
    display: grid;
    grid-template-columns: 90px 1.1fr 1fr;
    align-items: start;
    gap: 32px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    background: none;
    border-radius: 0;
    position: relative;
    transition: background 0.2s;
}

.pillar-row:hover { box-shadow: none; transform: none; background: var(--cream); }

.pillar-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem; font-weight: 700;
    color: var(--amber-border); line-height: 1;
    letter-spacing: 0;
    margin-bottom: 0;
}

.pillar-icon {
    font-size: 1.3rem; margin-bottom: 12px; display: block;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.14rem; font-weight: 700;
    color: var(--text-1); margin-bottom: 10px; line-height: 1.3;
}

.pillar-text {
    font-size: 0.9rem; color: var(--text-3); line-height: 1.78;
}

.pillar-row > div:last-child { margin-top: 0; padding-top: 0; border-top: none; padding-left: 24px; border-left: 1px solid var(--border); }
.pillar-row > div:last-child .pillar-text { padding-top: 0 !important; font-size: 0.86rem !important; }

/* Overview quote */
.intro-quote-block {
    padding: 72px 80px;
    background: var(--ink);
    border-radius: var(--radius-lg);
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.intro-quote-block::before {
    content: '\201C';
    position: absolute;
    top: -20px; left: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 16rem; line-height: 1;
    color: rgba(200,145,42,0.10);
    pointer-events: none; user-select: none;
    font-style: italic; font-weight: 900;
}

.intro-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    font-style: italic; line-height: 1.65;
    color: rgba(255,255,255,0.86);
    margin-bottom: 24px;
    position: relative; z-index: 1;
    max-width: 780px;
}

.intro-quote-cite {
    font-size: 0.70rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--amber); opacity: 0.80;
    position: relative; z-index: 1;
}

/* Insight grid */
.intro-insight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-insight-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    line-height: 0;
}

.intro-insight-image img { width: 100%; height: auto; display: block; }

.intro-insight-body p {
    font-size: 1.04rem; color: var(--text-2);
    line-height: 1.88; margin-bottom: 24px;
}

.intro-insight-body p:last-child { margin-bottom: 0; }

/* ============================================================
   CHAPTER LIST — replaces strategies-band
   ============================================================ */
.chapter-list-section {
    background: var(--ink);
    padding: 100px 0;
}

.chapter-list-header {
    display: block;
    margin-bottom: 56px;
    padding-bottom: 0;
    border-bottom: none;
}

.chapter-list-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700; color: var(--white);
    line-height: 1.2;
    max-width: 620px;
    margin-bottom: 16px;
}

.chapter-list-header p {
    font-size: 0.95rem; color: rgba(255,255,255,0.38);
    max-width: 560px; line-height: 1.75;
    text-align: left;
}

/* Vertical index list, not a tile grid */
.chapter-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.chapter-item {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 26px 4px;
    background: none;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    transition: padding-left 0.2s, background 0.2s;
}

.chapter-item:hover { background: rgba(255,255,255,0.03); padding-left: 16px; }

.chapter-item-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--amber); opacity: 0.85; line-height: 1;
    flex-shrink: 0;
    width: 44px;
}

.chapter-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: rgba(255,255,255,0.78); line-height: 1.35;
    flex: 1;
    transition: color 0.2s;
}

.chapter-item:hover .chapter-item-title { color: #fff; }

.chapter-item-arrow {
    font-size: 1.1rem; color: rgba(255,255,255,0.25);
    transition: color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.chapter-item:hover .chapter-item-arrow {
    color: var(--amber-light); transform: translateX(6px);
}

/* ============================================================
   STRATEGY CHAPTERS — full-width header, two-column card grid
   ============================================================ */
.strategy-chapter {
    padding: 110px 0;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.strategy-chapter.bg-white { background: var(--white); }
.strategy-chapter.bg-cream { background: var(--cream); }

.chapter-header {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 32px;
    max-width: 900px;
    margin-bottom: 60px;
}

.chapter-num-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 0;
}

.chapter-num-label {
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-4);
}

.chapter-num-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; font-weight: 900;
    color: var(--amber-border); line-height: 1;
}

.chapter-strategy-tag {
    display: inline-flex; align-items: center;
    padding: 4px 12px;
    background: var(--amber-pale);
    border: 1px solid var(--amber-border);
    border-radius: 100px;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 14px;
}

.chapter-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.2vw, 2.1rem);
    font-weight: 700; line-height: 1.16;
    color: var(--text-1); margin-bottom: 16px;
}

.chapter-desc {
    font-size: 0.98rem; color: var(--text-2);
    line-height: 1.85;
}

/* Content cards — asymmetric split, left border accent instead of boxed shadow */
.chapter-cards {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.chapter-card {
    border: none;
    border-radius: 0;
    padding: 36px 40px;
    box-shadow: none;
    background: var(--white);
}

.strategy-chapter.bg-cream .chapter-card { background: var(--cream); }

.chapter-card-label {
    font-size: 0.61rem; font-weight: 700;
    letter-spacing: 0.17em; text-transform: uppercase;
    color: var(--amber);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.chapter-card-blurb {
    font-size: 0.9rem; color: var(--text-3);
    line-height: 1.80; margin-bottom: 18px;
}

/* Items chips grid */
.chips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.chip {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.82rem; color: var(--text-2); font-weight: 500;
    line-height: 1.3; transition: border-color 0.18s;
}

.strategy-chapter.bg-white .chip { background: var(--white); }
.strategy-chapter.bg-cream .chip { background: var(--cream); }
.chip:hover { border-color: var(--amber-border); }

.chip::before {
    content: ''; width: 5px; height: 5px;
    border-radius: 50%; background: var(--amber); flex-shrink: 0;
}

/* Tools grid */
.tools-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tool-card {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    text-decoration: none;
}

.strategy-chapter.bg-white .tool-card { background: var(--white); }
.strategy-chapter.bg-cream .tool-card { background: var(--white); }

.tool-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--amber-border);
    transform: translateY(-2px);
}

.tool-logo {
    width: 34px; height: 34px;
    border-radius: 8px; object-fit: contain; flex-shrink: 0;
    background: var(--slate); border: 1px solid var(--border); padding: 4px;
}

.tool-info { flex: 1; min-width: 0; }

.tool-header {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: 6px; margin-bottom: 5px;
}

.tool-name {
    font-size: 0.875rem; font-weight: 700;
    color: var(--text-1); line-height: 1.2;
}

.tool-desc {
    font-size: 0.78rem; color: var(--text-3);
    line-height: 1.55; font-weight: 400;
}

.tool-visit {
    display: inline-flex; align-items: center;
    padding: 2px 10px;
    font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-4) !important; text-decoration: none;
    border: 1px solid var(--border); border-radius: 100px;
    white-space: nowrap; flex-shrink: 0;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
}

.tool-visit:hover {
    background: var(--amber);
    color: #fff !important; border-color: var(--amber);
}

/* ============================================================
   CONCLUSION / CODA — 3-col text + centered quote
   ============================================================ */
.coda-section {
    background: var(--ink);
    padding: 120px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.coda-header {
    text-align: center;
    margin-bottom: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.coda-eyebrow {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--amber); margin-bottom: 18px; opacity: 0.82;
}

.coda-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 700; line-height: 1.12;
    color: var(--white); margin-bottom: 18px;
}

.coda-subtitle {
    font-size: 1rem; color: rgba(255,255,255,0.36);
    max-width: 520px; margin: 0 auto; line-height: 1.78;
}

.coda-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 1120px;
    margin: 0 auto 80px;
    background: rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.coda-col {
    display: block;
    gap: 0;
    padding: 40px 32px;
    border-bottom: none;
    background: var(--ink);
}

.coda-col-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--amber-light); letter-spacing: 0.01em;
    line-height: 1.2;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.coda-col p {
    font-size: 0.94rem; color: rgba(255,255,255,0.68);
    line-height: 1.90;
}

.coda-quote {
    text-align: center;
    padding: 56px 80px;
    border: 1px solid rgba(200,145,42,0.18);
    border-top: 2px solid var(--amber);
    border-radius: var(--radius-lg);
    background: rgba(200,145,42,0.05);
}

.coda-quote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 1.7vw, 1.4rem);
    font-style: italic; line-height: 1.72;
    color: rgba(255,255,255,0.80);
}

/* ============================================================
   FOOTER — new layout
   ============================================================ */
.site-footer {
    background: #0c1017;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Editorial statement band above the nav columns — no logo/brand lockup */
.footer-main {
    padding: 72px 0 52px;
    border-bottom: 1px solid rgba(255,255,255,0.09);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-brand {
    max-width: 360px;
    grid-column: 1 / 2;
    padding-right: 24px;
    border-right: 1px solid rgba(255,255,255,0.10);
}

.footer-tagline {
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 16px; display: block;
}

.footer-intro {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.86);
    line-height: 1.95;
}

.footer-col {}

.footer-nav-label {
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.footer-nav-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 13px;
}

.footer-nav-list a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.90); text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-list a:hover { color: #ffffff; }

.footer-info-name {
    font-size: 0.92rem; font-weight: 600;
    color: rgba(255,255,255,0.95); margin-bottom: 8px;
}

.footer-info-address {
    font-style: normal;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.86); line-height: 1.9;
    display: block;
    margin-bottom: 10px;
}

.footer-info-reg {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.78); line-height: 1.75;
}

.footer-info-plain {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.82); line-height: 1.75;
    margin-top: 12px;
}

.footer-info-plain a { color: var(--amber-light); }

/* Footer base */
.footer-base {
    padding: 30px 0 26px;
}

.footer-disclaimer-box {
    text-align: left;
    max-width: none;
    margin: 0 0 24px;
    padding: 22px 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg);
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.95;
}

.footer-disclaimer strong { color: rgba(255,255,255,0.96); }

.footer-base-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-copyright { font-size: 0.78rem; color: rgba(255,255,255,0.72); }

.footer-base-links {
    display: flex; gap: 24px; list-style: none;
}

.footer-base-links a {
    font-size: 0.78rem; color: rgba(255,255,255,0.72);
    text-decoration: none; transition: color 0.2s;
}

.footer-base-links a:hover { color: #ffffff; }

/* ============================================================
   LEGAL PAGES — split hero + horizontal pill table of contents
   ============================================================ */
.legal-hero {
    background: var(--ink);
    padding: 72px 0;
    border-bottom: 3px solid var(--amber);
}

.legal-hero .container { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }

.legal-hero-inner { max-width: 640px; }

.legal-label {
    display: inline-block;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--amber-light); margin-bottom: 18px;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    font-weight: 700; color: #fff; line-height: 1.14; margin-bottom: 0;
}

.legal-meta {
    font-size: 0.82rem; color: rgba(255,255,255,0.55); font-weight: 400;
    text-align: right; white-space: nowrap;
}

.legal-section { padding: 64px 0 96px; background: var(--cream); }

/* Sidebar layout — fixed left nav rail + article column, replaces the old sticky pill bar */
.legal-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 64px;
    align-items: start;
}

.legal-toc {
    position: sticky; top: 32px; z-index: 5;
    background: none;
    border-bottom: none;
    box-shadow: none;
    padding: 0;
    margin-bottom: 0;
    border-left: 2px solid var(--border);
}

.legal-toc-label {
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--text-4); margin-bottom: 16px;
    padding-left: 20px;
}

.legal-toc-list {
    list-style: none; display: flex; flex-direction: column;
    counter-reset: toc;
    gap: 2px; margin: 0;
}

.legal-toc-list li { counter-increment: toc; }

.legal-toc-list a {
    display: flex; align-items: baseline; gap: 10px;
    font-size: 0.85rem; color: var(--text-3); text-decoration: none;
    padding: 9px 20px;
    border: none; border-radius: 0;
    border-left: 2px solid transparent; margin-left: -2px;
    line-height: 1.4;
    transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.legal-toc-list a::before {
    content: counter(toc, decimal-leading-zero);
    font-size: 0.62rem; font-weight: 700;
    color: var(--text-4); flex-shrink: 0;
}

.legal-toc-list a:hover, .legal-toc-list a:focus {
    color: var(--text-1); border-left-color: var(--amber);
    background: var(--white); outline: none;
}

.legal-toc-list a:hover::before, .legal-toc-list a:focus::before { color: var(--amber); }

.legal-intro-box {
    background: var(--amber-pale);
    border-left: 3px solid var(--amber);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 20px 24px; margin-bottom: 48px;
}

.legal-intro-box p {
    font-size: 0.975rem; color: var(--text-2); line-height: 1.8;
}

.legal-block {
    margin-bottom: 44px; padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
}

.legal-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

.legal-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-weight: 700;
    color: var(--text-1); margin-bottom: 16px; line-height: 1.2;
}

.legal-block p {
    font-size: 0.975rem; color: var(--text-2);
    line-height: 1.85; margin-bottom: 14px;
}

.legal-block p:last-child { margin-bottom: 0; }

.legal-block ul, .legal-block ol {
    margin: 12px 0 14px 20px;
    display: flex; flex-direction: column; gap: 8px;
}

.legal-block li { font-size: 0.975rem; color: var(--text-2); line-height: 1.75; }

.legal-block a { color: var(--amber); text-decoration: underline; }
.legal-block a:hover { color: var(--amber-light); }

.legal-contact-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 20px 24px;
    margin-top: 16px; box-shadow: var(--shadow-sm);
}

.legal-contact-card p { margin: 0; font-size: 0.9rem; line-height: 2; }

.legal-table {
    width: 100%; border-collapse: collapse;
    font-size: 0.855rem; margin: 20px 0;
}

.legal-table th, .legal-table td {
    padding: 10px 14px; text-align: left;
    border-bottom: 1px solid var(--border);
}

.legal-table th {
    background: var(--slate);
    font-weight: 600; font-size: 0.75rem;
    letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--text-3);
}

.legal-table td { color: var(--text-2); vertical-align: top; }
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table code {
    font-family: 'Courier New', monospace;
    background: var(--slate); border: 1px solid var(--border);
    border-radius: 4px; padding: 2px 6px; font-size: 0.82rem;
}

.legal-body h3 {
    font-size: 1rem; font-weight: 600;
    color: var(--text-1); margin: 24px 0 10px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 72px 0 96px; background: var(--cream); }

.contact-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 72px; align-items: start;
}

.contact-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--text-1); margin-bottom: 14px; line-height: 1.2;
}

.contact-info-text {
    font-size: 0.95rem; color: var(--text-2); line-height: 1.8; margin-bottom: 36px;
}

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 24px; }

.contact-details li { display: flex; align-items: flex-start; gap: 14px; }

.contact-detail-icon {
    width: 36px; height: 36px;
    background: var(--amber-pale);
    border: 1px solid var(--amber-border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--amber); flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.64rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-4); margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.9rem; color: var(--text-2);
    text-decoration: none; line-height: 1.6;
}

a.contact-detail-value:hover { color: var(--amber); }

.contact-form-wrap {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row { display: grid; gap: 20px; }
.form-row--half { grid-template-columns: 1fr 1fr; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--checkbox { flex-direction: row; align-items: flex-start; gap: 0; }

.form-label {
    font-size: 0.8rem; font-weight: 600;
    color: var(--text-1); letter-spacing: 0.01em;
}

.form-required { color: var(--amber); }
.form-optional { font-weight: 400; color: var(--text-4); }

.form-input {
    width: 100%; padding: 10px 14px;
    font-family: 'Inter', sans-serif; font-size: 0.9rem;
    color: var(--text-1); background: var(--cream);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none; line-height: 1.5;
}

.form-input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 3px rgba(200,145,42,0.12);
    background: var(--white);
}

.form-input--error { border-color: #dc2626; }
.form-input--error:focus { box-shadow: 0 0 0 3px rgba(220,38,38,0.12); }

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 140px; }

.form-error { font-size: 0.76rem; color: #dc2626; font-weight: 500; min-height: 16px; }

.form-checkbox-label {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.85rem; color: var(--text-2); line-height: 1.55; cursor: pointer;
}

.form-checkbox-label input[type="checkbox"] {
    margin-top: 2px; flex-shrink: 0;
    accent-color: var(--amber); width: 15px; height: 15px;
}

.form-checkbox-label a { color: var(--amber); }

.form-footer { display: flex; justify-content: flex-end; padding-top: 4px; }

.form-submit {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 32px; background: var(--amber); color: #fff;
    font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600;
    letter-spacing: 0.02em; border: none; border-radius: var(--radius);
    cursor: pointer; transition: background 0.2s;
}

.form-submit:hover:not(:disabled) { background: var(--amber-light); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; }

.form-submit-spinner {
    display: none; width: 14px; height: 14px;
    border: 2px solid rgba(255,255,255,0.4); border-top-color: #fff;
    border-radius: 50%; animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.contact-state {
    display: flex; flex-direction: column;
    align-items: center; text-align: center; padding: 56px 40px; gap: 16px;
}

.contact-state-icon {
    width: 64px; height: 64px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 700; flex-shrink: 0;
}

.contact-state--success .contact-state-icon { background: #dcfce7; color: #16a34a; }
.contact-state--error   .contact-state-icon { background: #fee2e2; color: #dc2626; }

.contact-state-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 700; color: var(--text-1);
}

.contact-state-text { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; max-width: 380px; }

.contact-state-btn {
    margin-top: 8px; padding: 10px 28px;
    background: transparent; color: var(--amber);
    border: 1.5px solid var(--amber-border); border-radius: var(--radius);
    font-size: 0.875rem; font-weight: 600; cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.contact-state-btn:hover { background: var(--amber); color: #fff; border-color: var(--amber); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .coda-body { grid-template-columns: 1fr; }
    .coda-col { padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-columns { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
    .footer-brand { grid-column: 1 / -1; max-width: none; padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.10); padding-bottom: 24px; }
}

@media (max-width: 960px) {
    .container { padding: 0 24px; }
    .intro-head { grid-template-columns: 1fr; gap: 24px; }
    .intro-lead { margin-left: 0; padding-left: 20px; }
    .pillar-row { grid-template-columns: 56px 1fr; }
    .pillar-row > *:last-child { display: none; }
    .intro-insight { grid-template-columns: 1fr; gap: 40px; }
    .intro-quote-block { padding: 48px 40px; }
    .chapter-header { grid-template-columns: 1fr; gap: 10px; }
    .chapter-cards { grid-template-columns: 1fr; }
    .chips-grid { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .footer-base-bar { flex-direction: column; gap: 12px; align-items: flex-start; }
    .legal-hero .container { flex-direction: column; align-items: flex-start; gap: 12px; }
    .legal-meta { text-align: left; }
    .legal-grid { grid-template-columns: 1fr; gap: 32px; }
    .legal-toc { position: static; border-left: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
    .legal-toc-list { flex-direction: row; flex-wrap: wrap; gap: 8px; }
    .legal-toc-list a { border-left: none; margin-left: 0; border: 1px solid var(--border); border-radius: 100px; padding: 7px 14px; }
    .legal-toc-list a:hover, .legal-toc-list a:focus { border-color: var(--amber); background: var(--amber-pale); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row--half { grid-template-columns: 1fr; }
    .coda-quote { padding: 40px 32px; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .chapter-cards { grid-template-columns: 1fr; }
    .intro-quote-block { padding: 36px 28px; }
    .intro-quote-block::before { font-size: 10rem; }
    .footer-columns { grid-template-columns: 1fr; }
    .footer-brand { grid-column: 1; }
    .coda-quote { padding: 32px 24px; }
    .intro-section { padding: 80px 0; }
    .strategy-chapter { padding: 72px 0; }
    .coda-section { padding: 80px 0; }
}
