/* =========================
LEELA — STYLE.CSS
Palette, type and base components are derived from the Shhalaj family
design system (warm cream, deep ink, gold accent) so LEELA reads as
part of the same family while carrying its own terracotta accent and
a distinct literary display face (Fraunces) as its own identity.

TABLE OF CONTENTS
1. Variables
2. Reset & base
3. Layout helpers
4. Buttons
5. Header & navigation
6. Hero
7. Section header
8. Trust principles / pillars
9. Cards (general)
10. Plan selector & plan cards
11. Offer detail blocks (plans.php)
12. Comparison table
13. Royalty calculator
14. Book -> Business ladder
15. Timeline (publishing journey)
16. FAQ accordion
17. Forms
18. Policy banner
19. Interior page header
20. Footer
21. Utilities
========================= */

/* =========================
   1. VARIABLES
========================= */

:root {
    /* Colour — warm Shhalaj family base, LEELA's own terracotta accent */
    --primary: #241f1a;
    --primary-hover: #3d352c;
    --secondary: #9c4221;
    --secondary-hover: #7e3419;
    --accent-gold: #b7791f;

    --text: #2b2620;
    --text-muted: #5c5348;
    --text-on-dark: #f3ede3;

    --background: #f7f1e6;
    --background-alt: #f8f3ea;
    --surface: #ffffff;

    --border: #e6e0d4;
    --border-warm: #d8cdbc;

    --footer-bg: #241f1a;
    --footer-text: #f3ede3;
    --footer-muted: #d8cdbc;
    --footer-muted-2: #c2b6a3;

    --success-bg: #e7f3e6;
    --success-text: #2e5c2b;

    /* Type */
    --font-heading: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 40px;
    --space-xl: 64px;
    --space-2xl: 96px;

    /* Shape */
    --radius: 8px;
    --radius-lg: 14px;
    --container-width: 1200px;
    --shadow-sm: 0 8px 24px rgba(36, 31, 26, 0.08);
    --shadow-md: 0 12px 32px rgba(36, 31, 26, 0.14);
}

/* =========================
   2. RESET & BASE
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    margin: 0 0 var(--space-sm);
}

h1 { font-size: 48px; }
h2 { font-size: 34px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }

p {
    margin: 0 0 var(--space-sm);
}

a {
    color: var(--secondary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

svg {
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    background: var(--background-alt);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Visible keyboard focus everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
label:focus-visible,
details:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    z-index: 2000;
    border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
    left: 0;
}

/* =========================
   3. LAYOUT HELPERS
========================= */

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

section {
    padding: var(--space-2xl) 0;
}

.section-alt {
    background: var(--surface);
}

/* =========================
   4. BUTTONS
========================= */

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
}

.btn-accent {
    background: var(--secondary);
    color: #fff;
}

.btn-accent:hover {
    background: var(--secondary-hover);
}

.btn-outline-light {
    background: transparent;
    border-color: var(--footer-text);
    color: var(--footer-text);
}

.btn-outline-light:hover {
    background: var(--footer-text);
    color: var(--primary);
}

.btn-sm {
    padding: 9px 18px;
    font-size: 0.88rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* =========================
   5. HEADER & NAVIGATION
========================= */

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 14px 20px;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand:hover {
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    border-left: 1px solid var(--border-warm);
    padding-left: 14px;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* Mobile nav toggle (checkbox-driven, no JS required) */

.nav-toggle-input {
    display: none;
}

.nav-toggle-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.nav-toggle-btn span {
    display: block;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.site-nav ul a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.92rem;
}

.site-nav ul a:hover,
.site-nav ul a.active {
    color: var(--secondary);
    text-decoration: none;
}

.nav-cta {
    white-space: nowrap;
}

/* =========================
   6. HERO
========================= */

.hero {
    background: var(--background-alt);
    padding: var(--space-2xl) 0;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 480px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.hero h1 {
    font-size: 52px;
    margin-bottom: var(--space-sm);
}

.hero-tagline {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1 1 380px;
    display: flex;
    justify-content: center;
}

.hero-visual img,
.hero-visual svg {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* =========================
   7. SECTION HEADER
========================= */

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto var(--space-xl);
}

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-header-left {
    text-align: left;
    margin-left: 0;
    max-width: 820px;
}

/* =========================
   8. TRUST PRINCIPLES / PILLARS
========================= */

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.pillar-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.pillar-card:nth-child(1) { border-top-color: var(--primary); }
.pillar-card:nth-child(2) { border-top-color: var(--secondary); }
.pillar-card:nth-child(3) { border-top-color: var(--accent-gold); }
.pillar-card:nth-child(4) { border-top-color: var(--text-muted); }

.pillar-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* =========================
   9. CARDS (general)
========================= */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

/* =========================
   10. PLAN SELECTOR & PLAN CARDS
========================= */

.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    align-items: stretch;
}

.plan-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.plan-card-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.plan-card-tagline {
    color: var(--text-muted);
    font-size: 0.92rem;
    min-height: 42px;
}

.plan-card-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: var(--space-xs);
}

.plan-card-word-limit {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-card .btn {
    margin-top: auto;
}

.plan-card-bb {
    background: var(--primary);
    color: var(--text-on-dark);
}

.plan-card-bb .plan-card-name,
.plan-card-bb .plan-card-price {
    color: #fff;
}

.plan-card-bb .plan-card-tagline {
    color: var(--footer-muted);
}

/* =========================
   11. OFFER DETAIL BLOCKS (plans.php)
========================= */

.anchor-nav {
    position: sticky;
    top: 73px;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    z-index: 500;
    padding: var(--space-sm) 0;
}

.anchor-nav ul {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.anchor-nav a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.anchor-nav a:hover {
    color: var(--secondary);
}

.offer-block {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 140px;
}

.offer-block:last-of-type {
    border-bottom: none;
}

.offer-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.offer-head-price {
    text-align: right;
}

.offer-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.offer-tagline {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: var(--space-sm);
}

.offer-note {
    background: var(--background-alt);
    border-left: 3px solid var(--accent-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: var(--space-md) 0;
}

.offer-inherits {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--space-md);
}

.offer-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.offer-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
}

.offer-section h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
}

.offer-section ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.94rem;
    line-height: 1.6;
}

.offer-section ul li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

.offer-simple-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px var(--space-lg);
    margin: var(--space-md) 0;
}

.offer-simple-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
}

.offer-simple-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 700;
}

/* =========================
   12. COMPARISON TABLE
========================= */

.comparison-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.comparison-table caption {
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: var(--space-md) var(--space-md) var(--space-xs);
    color: var(--primary);
}

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.88rem;
}

.comparison-table thead th {
    background: var(--background-alt);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    position: sticky;
    top: 0;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text);
    min-width: 220px;
}

.comparison-table tbody tr:hover {
    background: var(--background-alt);
}

.comparison-table .category-row td {
    background: var(--primary);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: left;
    font-size: 0.95rem;
}

.tick-yes {
    color: #2e7d32;
    font-weight: 700;
    font-size: 1.1rem;
}

.tick-no {
    color: var(--border-warm);
    font-weight: 700;
}

/* =========================
   13. ROYALTY CALCULATOR
========================= */

.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

.calculator-form .form-field {
    margin-bottom: var(--space-md);
}

.calculator-result {
    background: var(--primary);
    color: var(--text-on-dark);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    position: sticky;
    top: 100px;
}

.calculator-result h3 {
    color: #fff;
    margin-bottom: var(--space-md);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.92rem;
}

.calc-row.calc-total {
    border-bottom: none;
    border-top: 2px solid var(--accent-gold);
    margin-top: var(--space-xs);
    padding-top: var(--space-sm);
    font-weight: 700;
    font-size: 1.15rem;
}

.calc-row.calc-total .calc-value {
    color: var(--accent-gold);
}

.calc-value {
    font-weight: 600;
}

.calc-disclaimer {
    margin-top: var(--space-md);
    font-size: 0.78rem;
    color: var(--footer-muted);
    line-height: 1.6;
}

/* =========================
   14. BOOK -> BUSINESS LADDER
========================= */

.ladder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    max-width: 420px;
    margin: 0 auto;
}

.ladder-step {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 24px;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.ladder-arrow {
    color: var(--accent-gold);
    font-size: 1.2rem;
    line-height: 1;
}

.service-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.service-tag {
    background: var(--background-alt);
    border: 1px solid var(--border-warm);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.88rem;
    color: var(--text);
}

/* =========================
   15. TIMELINE (publishing journey)
========================= */

.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 640px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    position: relative;
}

.timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 34px;
    bottom: 0;
    width: 2px;
    background: var(--border-warm);
}

.timeline-marker {
    flex: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.timeline-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

/* =========================
   16. FAQ ACCORDION
========================= */

.faq-category {
    margin-bottom: var(--space-xl);
}

.faq-category-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: var(--space-xs);
    display: inline-block;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--space-md) 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
}

.faq-question .faq-icon {
    flex: none;
    font-size: 1.3rem;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 var(--space-md);
    color: var(--text-muted);
    line-height: 1.8;
}

/* =========================
   17. FORMS
========================= */

label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: var(--text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--surface);
    color: var(--text);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--secondary);
    outline: none;
}

.form-field {
    margin-bottom: var(--space-md);
}

.form-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-message {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: var(--space-md);
    font-size: 0.92rem;
}

.form-message.success {
    background: var(--success-bg);
    color: var(--success-text);
}

.form-message.error {
    background: #fbe4e4;
    color: var(--secondary);
}

.form-honeypot {
    position: absolute;
    left: -9999px;
}

/* =========================
   18. POLICY BANNER
========================= */

.policy-banner {
    background: var(--background-alt);
    border: 1px solid var(--border-warm);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.policy-banner-icon {
    flex: none;
    font-size: 1.6rem;
}

.policy-banner h3 {
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.policy-banner p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.94rem;
}

/* =========================
   19. INTERIOR PAGE HEADER
========================= */

.page-header {
    background: var(--background-alt);
    padding: var(--space-xl) 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: var(--space-xs);
}

.page-header-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

/* =========================
   20. FOOTER
========================= */

.site-footer {
    margin-top: var(--space-2xl);
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: var(--space-lg);
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-tagline {
    color: var(--footer-muted);
    font-weight: 600;
    margin: var(--space-xs) 0;
}

.footer-col h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.footer-col p {
    color: var(--footer-muted);
    font-size: 0.9rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--footer-text);
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-bottom {
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 0.85rem;
    color: var(--footer-muted-2);
}

.footer-bottom nav a {
    color: var(--footer-muted-2);
    margin-left: var(--space-md);
}

.footer-bottom nav a:first-child {
    margin-left: 0;
}

.footer-bottom nav a:hover {
    color: var(--accent-gold);
}

/* =========================
   21. UTILITIES
========================= */

.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
.mt-sm { margin-top: var(--space-sm); }
.mb-0 { margin-bottom: 0; }
.justify-center { justify-content: center; }
.container-narrow { max-width: 820px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.mx-auto { margin-left: auto; margin-right: auto; }

.hero-mark {
    width: 132px;
    height: 132px;
    margin: 0 auto var(--space-md);
}
